看了下文档,类似 zk 和 etcd 这类分布式一致性系统,它的写过程像是个二段提交过程,然后一次只能处理一个写请求,那岂不是写性能比较差,我理解写的 qps 最多等于 1000/网络往返时延(毫秒),我这样理解对吗? 但我看过网上一些性能测试,etcd 能达到每秒上万次写,有点不太懂是怎么做到的,有大佬线上用过吗
1
kneo 224 天前
https://etcd.io/docs/v3.5/op-guide/performance/
To increase throughput, etcd batches multiple requests together and submits them to Raft. This batching policy lets etcd attain high throughput despite heavy load. |
2
cloudzhou 224 天前
在使用上,就不要把 etcd 作为存储使用,而是作为关键的版本号,或者仲裁者,敏感原子性操作,而把写操作放到其他地方
|