Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将 AOF 文件保存在 Amazon S3 上而不是本地存储?
这将避免大型数据集的磁盘空间不足。
您可以将 S3 挂载为驱动器号(例如:TntDrive)并将 Redis 设置为写入该驱动器,但这是非常错误的;延迟会杀死你。请参阅“由于 AOF 和磁盘 I/O 导致的延迟”下的http://redis.io/topics/latency。
不,你不能这样做,只需BGREWRITEAOF定期压缩 AOF 的大小。或者使用转储文件而不是 AOF 文件。
BGREWRITEAOF