how can i backup multi database use milvus-backup #38257
Replies: 1 comment 2 replies
-
The "--databases" is the database to backup, which means if you didn't set "--colls", this command will backup all the collections inside the database. The "--database_collections" is what you want, it is a JSON format string to specify the target collection and which database it belongs. From the source code of milvus-backup, the major logic is:
So, if you want to backup collections from different databases, just use the "--database_collections" like {"db1":["c1", "c2"],"db2":[]} |
Beta Was this translation helpful? Give feedback.
-
how can i backup multi database use milvus-backup?
-d, --databases string databases to backup
the -d just only set a database name?
Beta Was this translation helpful? Give feedback.
All reactions