소스 검색

Merge pull request #3097 from philips/tls-churn-faq

Documentation/security: add FAQ about peer TLS and etcd 2.0.x
Brandon Philips 11 년 전
부모
커밋
121ff4684c
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      Documentation/security.md

+ 7 - 0
Documentation/security.md

@@ -147,6 +147,13 @@ The etcd members will form a cluster and all communication between members in th
 
 
 ## Frequently Asked Questions
 ## Frequently Asked Questions
 
 
+### My cluster is not working with peer tls configuration?
+
+The internal protocol of etcd v2.0.x uses a lot of short-lived HTTP connections.
+So, when enabling TLS you may need to increase the heartbeat interval and election timeouts to reduce internal cluster connection churn.
+A reasonable place to start are these values: ` --heartbeat-interval 500 --election-timeout 2500`.
+This issues is resolved in the etcd v2.1.x series of releases which uses fewer connections.
+
 ### I'm seeing a SSLv3 alert handshake failure when using SSL client authentication?
 ### I'm seeing a SSLv3 alert handshake failure when using SSL client authentication?
 
 
 The `crypto/tls` package of `golang` checks the key usage of the certificate public key before using it.
 The `crypto/tls` package of `golang` checks the key usage of the certificate public key before using it.