在 etcd 键值存储中禁用历史记录
Disable history in etcd key value store
有什么方法可以禁用etcd中的历史保存吗?
我将使用 etcd 作为我的应用程序的 KV,我不需要键值的历史记录。
搜索etcd时,没有找到禁用历史的相关信息。
我不想使用 etcd 中的压缩功能。
事件历史记录是 etcd 的一部分。
早在 2015 年就在 issue 4432(“考虑将事件移出 etcd”)中承认:
Events account for the overwhelming majority of our etcd write volume, which is causing a variety of performance and stability problems.
We could consider a different delivery mechanism for the events.
但目前,这仍然由 etcd 管理。
还有其他 Key-Value 参考,在您的情况下可能比 etcd 更易于管理。我用 prologic/bitcask
.
有什么方法可以禁用etcd中的历史保存吗?
我将使用 etcd 作为我的应用程序的 KV,我不需要键值的历史记录。
搜索etcd时,没有找到禁用历史的相关信息。
我不想使用 etcd 中的压缩功能。
事件历史记录是 etcd 的一部分。
早在 2015 年就在 issue 4432(“考虑将事件移出 etcd”)中承认:
Events account for the overwhelming majority of our etcd write volume, which is causing a variety of performance and stability problems.
We could consider a different delivery mechanism for the events.
但目前,这仍然由 etcd 管理。
还有其他 Key-Value 参考,在您的情况下可能比 etcd 更易于管理。我用 prologic/bitcask
.