-
|
Is there an easy way to migrate from MinIO? I have terabytes worth of data, and only 2GB of RAM on my Synology NAS, plus HDDs are very slow and get bottlenecked. All the data exists in the MinIO directory, but if I point rustfs to minio directory I doubt it will work currently. Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
You have a solid migration option, especially given your hardware constraints (2GB RAM, slow HDDs): Using MinIO Client (
|
Beta Was this translation helpful? Give feedback.
You have a solid migration option, especially given your hardware constraints (2GB RAM, slow HDDs):
Using MinIO Client (
mc)The MinIO
mcclient has a built-inmirrorcommand that's designed for exactly this scenario:This approach is:
The
mirrorcommand supports incremental synchronization, so if it gets interrupted due to resource constraints, you can simply re-run it and it will pick up where it left off.Migration Workflow Recommendation
Given your terabyte…