We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7496e6a commit 1add01bCopy full SHA for 1add01b
qa/vector/src/main/java/org/elasticsearch/test/knn/KnnIndexTester.java
@@ -74,6 +74,9 @@ private static String formatIndexPath(CmdLineArgs args) {
74
List<String> suffix = new ArrayList<>();
75
if (args.indexType() == IndexType.FLAT) {
76
suffix.add("flat");
77
+ if (args.useNewFlatVectorsFormat()) {
78
+ suffix.add(Integer.toString(args.quantizeBits()));
79
+ }
80
} else if (args.indexType() == IndexType.IVF) {
81
suffix.add("ivf");
82
suffix.add(Integer.toString(args.ivfClusterSize()));
0 commit comments