denixtry
denixtry

Reputation: 3098

Backing up multi-node crate cluster

I have seen docs on how to import data but how do I do backups?

Is there tooling, is there an API, or is it safe to copy the files on the file system?

Upvotes: 0

Views: 126

Answers (1)

mwahl
mwahl

Reputation: 61

exporting data is done via COPY TO. Exports can go to the local filesystem or amazon s3.

every node containing data will export in parallel. you can export to a network attached storage or s3 or simply copy the exported files to another host using scp.

Upvotes: 2

Related Questions