内容简介:etcd 3.3.9 已发布,etcd 是一个高可用的 Key/Value 存储系统,主要用于分享配置和服务发现,灵感来自于 ZooKeeper 和 Doozer。更新内容如下: Improved Improve Raft Read Index timeout warning messages. Sec...
etcd 3.3.9 已发布,etcd 是一个高可用的 Key/Value 存储系统,主要用于分享配置和服务发现,灵感来自于 ZooKeeper 和 Doozer。更新内容如下:
Improved
Security, Authentication
Compile with Go 1.10.3 to support crypto/x509 "Name Constraints".
Metrics, Monitoring
Note that any etcd_debugging_* metrics are experimental and subject to change.
Add
etcd_server_go_versionPrometheus metric.Add
etcd_server_heartbeat_send_failures_totalPrometheus metric.Add
etcd_server_slow_apply_totalPrometheus metric.Add
etcd_disk_backend_defrag_duration_secondsPrometheus metric.Add
etcd_mvcc_hash_duration_secondsPrometheus metric.Add
etcd_mvcc_hash_rev_duration_secondsPrometheus metric.Add
etcd_server_slow_read_indexes_totalPrometheus metric.Add
etcd_server_quota_backend_bytesPrometheus metric.Use it with
etcd_mvcc_db_total_size_in_bytesandetcd_mvcc_db_total_size_in_use_in_bytes.etcd_server_quota_backend_bytes 2.147483648e+09means current quota size is 2 GB.etcd_mvcc_db_total_size_in_bytes 20480means current physically allocated DB size is 20 KB.etcd_mvcc_db_total_size_in_use_in_bytes 16384means future DB size if defragment operation is complete.etcd_mvcc_db_total_size_in_bytes - etcd_mvcc_db_total_size_in_use_in_bytesis the number of bytes that can be saved on disk with defragment operation.Add
etcd_mvcc_db_total_size_in_bytesPrometheus metric.In addition to
etcd_debugging_mvcc_db_total_size_in_bytes.Add
etcd_mvcc_db_total_size_in_use_in_bytesPrometheus metric.Use it with
etcd_mvcc_db_total_size_in_bytesandetcd_mvcc_db_total_size_in_use_in_bytes.etcd_server_quota_backend_bytes 2.147483648e+09means current quota size is 2 GB.etcd_mvcc_db_total_size_in_bytes 20480means current physically allocated DB size is 20 KB.etcd_mvcc_db_total_size_in_use_in_bytes 16384means future DB size if defragment operation is complete.etcd_mvcc_db_total_size_in_bytes - etcd_mvcc_db_total_size_in_use_in_bytesis the number of bytes that can be saved on disk with defragment operation.
client v3
Fix lease keepalive interval updates when response queue is full.
If
<-chan *clientv3LeaseKeepAliveResponsefromclientv3.Lease.KeepAlivewas never consumed or channel is full, client was sending keepalive request every 500ms instead of expected rate of every "TTL / 3" duration.
Go
Compile with Go 1.10.3.
各平台下载地址请查看发行列表:
https://github.com/coreos/etcd/releases/tag/v3.3.9
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上所述就是小编给大家介绍的《etcd 3.3.9 发布,高可用 Key/Value 存储系统》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 海量事件数据存储与计算:高可用建设
- GlusterFS分布式存储搭建双机复制卷结合Keepalived实现存储高可用
- 高可用分布式存储 etcd 的实现原理
- 高可用分布式键值存储 etcd 的原理
- etcd 3.4.0 发布,高可用 Key/Value 存储系统
- Proxmox VE搭配Ceph存储组建高可用虚拟化平台
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Haskell函数式编程基础
Simon Thompson / 科学出版社 / 2013-7-1 / 129.00
《Haskell函数式编程基础(第3版)》是一本非常优秀的Haskell函数式程序设计的入门书,各章依次介绍函数式程序设计的基本概念、编译器和解释器、函数的各种定义方式、简单程序的构造、多态和高阶函数、诸如数组和列表的结构化数据、列表上的原始递归和推理、输入输出的控制处理、类型分类与检测方法、代数数据类型、抽象数据类型、惰性计算等内容。书中包含大量的实例和习题,注重程序测试、程序证明和问题求解,易......一起来看看 《Haskell函数式编程基础》 这本书的介绍吧!