File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
core/src/test/java/org/apache/accumulo/core/file/rfile Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 2828import org .apache .accumulo .core .data .Key ;
2929import org .apache .accumulo .core .data .Value ;
3030
31+ import edu .umd .cs .findbugs .annotations .SuppressFBWarnings ;
32+
3133/**
3234 * Comprehensive example demonstrating production-ready vector store features including: - Metadata
3335 * integration for per-vector categories - Compression for storage efficiency - Batching/staging for
3436 * performance - Advanced indexing for scalability - Vector chunking for large embeddings
3537 */
38+ @ SuppressFBWarnings (value = "PREDICTABLE_RANDOM" ,
39+ justification = "This class is an example/demo, not security-sensitive production code." )
3640public class ProductionVectorStoreExampleTest {
3741
3842 static Random rand = new Random (1234 );
You can’t perform that action at this time.
0 commit comments