Arctickey automatically backs up your data. Never lose your cache, sessions, or queue data.
Backups run automatically every day at 3:00 AM UTC. Each backup captures a complete snapshot of your data.
You'll see a list of available backups with:
Warning: Restoring replaces ALL current data with the backup. This cannot be undone.
During restore:
Backups are stored in Cloudflare R2 (S3-compatible) in European data centers:
Your backup data never leaves the EU.
Currently, backups are automatic only. If you need an immediate backup before a risky operation:
redis-cli
redis-cli --tls -h YOUR_INSTANCE.eu.arctickey.com -p 6379 -a YOUR_PASSWORD \ --rdb /path/to/backup.rdb
redis-cli --tls -h YOUR_INSTANCE.eu.arctickey.com -p 6379 -a YOUR_PASSWORD \ --scan --pattern 'user:*' | xargs redis-cli GET > users.txt
In the unlikely event of a data center failure:
For higher durability requirements, consider:
Q: Can I download my backups? A: Not directly from the dashboard. Use redis-cli --rdb to create a local backup.
redis-cli --rdb
Q: What if a backup fails? A: We retry automatically. If backups fail repeatedly, we'll alert you.
Q: Can I restore to a different instance? A: Not currently. Contact support if you need this.
Q: Are backups encrypted? A: Yes, backups are encrypted at rest using AES-256.
Backups & Recovery
Arctickey automatically backs up your data. Never lose your cache, sessions, or queue data.
Automatic Backups#
Backups run automatically every day at 3:00 AM UTC. Each backup captures a complete snapshot of your data.
Retention by Plan#
Viewing Backups#
You'll see a list of available backups with:
Restoring from Backup#
Steps to Restore#
During restore:
What Gets Restored#
What Doesn't Get Restored#
Backup Storage#
Backups are stored in Cloudflare R2 (S3-compatible) in European data centers:
Your backup data never leaves the EU.
Manual Backups#
Currently, backups are automatic only. If you need an immediate backup before a risky operation:
redis-clito export your data:redis-cli --tls -h YOUR_INSTANCE.eu.arctickey.com -p 6379 -a YOUR_PASSWORD \ --rdb /path/to/backup.rdbredis-cli --tls -h YOUR_INSTANCE.eu.arctickey.com -p 6379 -a YOUR_PASSWORD \ --scan --pattern 'user:*' | xargs redis-cli GET > users.txtBest Practices#
Disaster Recovery#
In the unlikely event of a data center failure:
For higher durability requirements, consider:
FAQ#
Q: Can I download my backups? A: Not directly from the dashboard. Use
redis-cli --rdbto create a local backup.Q: What if a backup fails? A: We retry automatically. If backups fail repeatedly, we'll alert you.
Q: Can I restore to a different instance? A: Not currently. Contact support if you need this.
Q: Are backups encrypted? A: Yes, backups are encrypted at rest using AES-256.