Results 290 comments of groot

Which version of your java sdk and milvus? I just use Java SDK 2.3.3 and Milvus 2.3.3 to run the SimpleExample.java, it works well.

> i had to set grpc version to io.grpc:grpc-netty:1.60.1 > > here is a reproducible test case [alexanderankin/how-to-itest@32ddec4](https://github.com/alexanderankin/how-to-itest/commit/32ddec402e25064f854c116839359f5408e61832) - remove the line and it fails The java.lang.UnsupportedOperationException caused by io.grpc.netty.AbstractHttp2Headers.isEmpty...

Similar to other open-source projects, this project doesn't allow creating branches on it. Contributors can fork this project and create branches on their forked projects, and submit a pull request...

对内部的双引号转义即可,示例: ``` import random import time from pymilvus import ( MilvusClient, DataType, ) client = MilvusClient(uri="http://localhost:19530") print(client.get_server_version()) collection_name = "AAA" dim = 128 def gen_embedding(): return [random.random() for _ in...

The PoolConfig defines the behavior of the pool: ``` PoolConfig poolConfig = PoolConfig.builder() .maxIdlePerKey(10) // max idle clients per key .maxTotalPerKey(20) // max total(idle + active) clients per key .maxTotal(100)...

I just tested with the following steps: 1. start a milvus server 2. pool.getClient() to new a client to do something 3. shutdown the milvus server 4. pool.getClient() to get...

delete by complex expression is supported from milvus v2.3.2. In older versions before v2.3.2, delete interface only supports delete by primary key value.

确实是个V2 client.createCollection()的bug。V1 client是好的。 后续版本会修复这个bug。