Results 290 comments of groot

You got the error "this version of sdk is incompatible with server, please downgrade your sdk or upgrade your server" at this line? ``` client = MilvusClient( ...... ```

Seems you have several milvus addresses: uri='http://124.71.208.220:19530' uri='http://192.168.0.150:19530' uri='http://192.168.1.105:19530' uri='http://223.247.150.167:19530' Are these milvus servers different versions? Maybe you wrongly choose an old version? **The error "this version of sdk is...

So far, Java SDK doesn't support Session level.

Java SDK没有那个Session相应的Enum定义,而这张表的默认consistence level是Session,所以在describeCollection的时候就会报错。下个版本我加一下对Session的支持吧。目前的话你只能使用python sdk去查询这张表。

Session patch: https://github.com/milvus-io/milvus-sdk-java/pull/1130

Session level is supported from v2.4.7, close this issue.

For each milvus cluster, there is a proxy node to receive requests from client. You can add more proxy nodes to a cluster. Each proxy node has its address. If...

@ahern88 目前没有计划做

"INTERNAL: Panic! This is a bug!" is an error thrown from gRPC lib. There might be dependencies confliction in your project. Use "mvn dependency:tree -Dverbose" to print the dependency tree.

python也有类似的问题,处理varchar中带有 双引号,单引号,转义符 的情况都有些问题。目前queryIterator无法处理。在setupNextExpr方法中使用String.replace的方式把双引号和单引号转义,可以部分修复这个问题。但是包含转义符的字符串我觉得似乎无解。 而query()/search()处理这些特殊符号需要特别的写法。比如某个Varchar字段,插入如下字符串: ``` "\Q1234" 如果想用query过滤,得这么写 collection.query(expr="\\\\Q1234") ""Q1234" 如果想用query过滤,得这么写 collection.query(expr="\\"Q1234") "'Q1234" 如果想用query过滤,得这么写 collection.query(expr="\'Q1234") ```