groot
groot
/ci-rerun-ut-integration
/ci-rerun-ut-integration
/ci-rerun-ut-go
Create a new database in milvus, then create a collection in this new database. Click the name of the collection 
The page shows empty info. The http request shows the WebUI always queries the collection in the default database, but the collection doesn't exist in the default database. 
In Java SDK, the "topk" and "limit" is for different purpose. "topk" is the count of items to be returned for search() "limit" takes effect for "offset" The document is...
> .topK(size) > .offset(offset) This works: ``` SearchReq.builder() .topK(size) .offset(offset) ```
The pr will deprecate topK parameter for SearchReq/HybridSearchReq/SearchIteratorReq, replaced with limit https://github.com/milvus-io/milvus-sdk-java/pull/1439 https://github.com/milvus-io/milvus-sdk-java/pull/1438 The topK parameter still works, limit parameter is recommended. Usage before this pr: ``` SearchReq.builder() .topK(size) .offset(offset)...