Results 290 comments of groot

Create a new database in milvus, then create a collection in this new database. Click the name of the collection ![Image](https://github.com/user-attachments/assets/98cefc7e-7efa-40c6-a7ad-9ec72329cc66)

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. ![Image](https://github.com/user-attachments/assets/72553d0c-eed9-4e3d-90eb-3db49079d304)

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)...