groot
groot
The index type is FLAT, so no index node is involved. The interim index is built on query node. I add a line to flush each collection after insertion. And...
> maybe you can disable interim index and check? Seems is not caused by the interim index. I just re-tested with disabled/enabled interim index. The memory usage is 5.xGB after...
@roji @verdie-g Feel free to let me know if you have any questions about the features. Once I finish the CPP SDK work, I will join you to upgrade the...
是不是这样的warning? ``` SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/home/yhmo/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.17.1/log4j-slf4j-impl-2.17.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/home/yhmo/.m2/repository/org/slf4j/slf4j-reload4j/1.7.36/slf4j-reload4j-1.7.36.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. SLF4J: Actual binding is of...
https://github.com/milvus-io/milvus-sdk-java/pull/937 这个pr应该能解决这个问题
You are using metric_type="BM25", it is for full-text-match. The example for full-text-match is here: https://github.com/milvus-io/milvus-sdk-java/blob/master/examples/src/main/java/io/milvus/v2/FullTextSearchExample.java The doc for full-text-match is here: https://milvus.io/docs/full-text-search.md The following example is a demo for full-text-match...
How to enable full-text-match? Just set enableAnalyzer to be true for a text field, and configure a Function for the collection schema: ``` schema.addField(AddFieldReq.builder() .fieldName("text") .dataType(DataType.VarChar) .maxLength(65535) .enableAnalyzer(true) // must...
Which version of your milvus and Java SDK?
Right, "HybridSearch supports full text search" is supported from Java SDK v2.5.4. https://github.com/milvus-io/milvus-sdk-java/releases/tag/v2.5.4
Do you have a full log of the milvus server? You can use the command "docker logs [milvus container id] > 1.log" to output its log. Do you mean it...