Is there a way to print all the data stored in Milvus DB

148 Views Asked by At

I want to print all the data that is stored in Milvus without any filters in java.

I tried going through the Milvus official documentation but couldn't find anything that works without filters. I am not looking for hacky that build filters such that all the data is returned.

1

There are 1 best solutions below

0
On

Do either of these approaches work?

  1. dump a collection as-is with https://github.com/zilliztech/milvus-backup
  • or -
  1. We have example Python code to create an iterator over the collection to read out all the rows https://milvus.io/docs/with_iterators.md