禁用 etcd 键值存储中的历史记录
有什么办法可以禁用etcd中的历史记录保存吗?
我将使用 etcd 作为我的应用程序的 KV,并且不需要键值的历史记录。
当我搜索 etcd 时,我找不到有关禁用历史记录的信息。
我不想使用 etcd 中的压缩功能。
Is there any way to disable the history saving in etcd?
I am going to use etcd as KV for my app and I don't need history for the key values.
When I search etcd, I couldn't find about disabling the history.
I don't want to use the compacting feature in etcd.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事件历史记录是 etcd 的一部分。
早在 2015 年,issue 4432 就承认了这一点(“考虑将事件移出etcd”):
但目前,这仍然由 etcd 管理。
在您的情况下,还有其他键值引用可能比 etcd 更容易管理。我使用
prologic/bitcask
。Event history is part of etcd.
It was acknowledged, as far back as 2015 in issue 4432 ("Consider moving events out of etcd") that:
But for now, this is still managed by etcd.
There are other Key-Value referential which might prove simpler to manage than etcd in your case. I use
prologic/bitcask
.