Basically, my question is: what are the best ways to keep my Google Cloud Storage bucket data safe?
I understand that using Object Versioning is a first measure you can take to protect yourself against accidentally deleting data. However, I would also like to keep offsite backups (either locally, or on another provider like S3). Are there any recommended ways to do this?
One direction I was looking was to keep incremental, rsync
-like local copies of my buckets. I was hoping gsutil
would be able to have a sync
command (like s3cmd
does), but it doesn't seem it does.
Backing up to another cloud provider like S3 would also be handy, but as I understand the only way to do this is to download all the data to an instance (either in the Google or Amazon datacenter), and then upload it to the target bucket. But this would again require an incremental sync.