pythondatabasemilvus

How to export all data from a Milvus collection?(~3 million records)


As Milvus does not support adding fields by default, I need to export all data, move it to the new collection, and set it in the collection of dynamic fields. My plan is to export all data and then insert it, but how do I export it? I use query, but I keep encountering the 16384 limit. My primary key is in string format, so I cannot use the interval method.


Solution

    1. on 2.6 add field is exported

    2. you can use iterator to export your data out

    3. you can also use VTS tool help you to do this