groot
groot
Typically, you can use one key for all collections in one database, no need to use different keys for different collections. ``` MilvusClientV2Pool pool_A = new MilvusClientV2Pool(poolConfig, connectConfig); Thread t1...
> > For each pool, the max number of MilvusClient objects are defined by the PoolConfig.maxTotalPerKey. If all the client objects are used by getClient(), and the number of MilvusClient...
- minIdlePerKey ---------------------- the pool will reserve at least "minIdlePerKey" of idle clients for per key, even if no one calls getClient(). If you set minIdlePerKey = 1, the pool...
Search request is blocking rpc call. If you call client.search(), the search() will be blocked until it receives results from milvus server. So, the answer is yes: if two search...
@pipi-olo I just submitted a pr: https://github.com/milvus-io/milvus-sdk-java/pull/1595 In this pr, the ClientPool will support different connect configurations for different keys. And this pr increases the default maxIdlePerKey from 5 to...
This pr https://github.com/milvus-io/milvus-sdk-java/pull/1604 changed the maxTotalPerKey default value to 50.
This pr added a parameter "db_name" to the list_import_jobs() interface. **Note: the "db_name" is used when "collection_name" is not None/empty, milvus server finds the collection_name in a specified database. If...
The fix pr is mergerd.
内部做连接的时候需要host和port,如果没有port,默认视为19530. 比如Zilliz cloud上的服务地址一般是这么写,带了端口号:https://in01-xxxxxxxxxx..vectordb.zillizcloud.com:19535