Release v0.5.0-alpha.0 created by Brandon Philips on 25 October 2014, 00:26:10 UTC
v0.5.0-alpha.0
- etcd now listens on its IANA assigned ports along with its temporary ports (4001/7001) by default - 2379 for client communication - 2380 for peer communication - Members can listen on and advertise multiple ports. This enables a single member to listen on a public interface and a container bridge at the same time. - etcd peers proxy requests to the leader so clients no longer need to follow HTTP 307 redirects. This means if you can reach a single etcd member you can successfully read from/write to the cluster without regard to the network topology. - An etcd cluster now has a “cluster id” and each member has a unique “member id”. etcd will reject requests from members with mismatched cluster ids or unknown member ids. This protects the cluster from many common misconfigurations (like the dreaded duplicate ETCD_NAME) - etcd cluster bootstrap configuration has changed to be fully static. The team found that users attempting to bootstrap a cluster often had trouble configuring the cluster correctly and using a static configuration makes it easier to tell users when something has gone wrong. Full details can be found in the clustering documentation: https://github.com/coreos/etcd/blob/master/Documentation/0.5/clustering.md - Runtime cluster reconfiguration is done explicitly through an HTTP API (/v2/admin/members. Full details can be found in the API documentation: https://github.com/coreos/etcd/blob/master/Documentation/0.5/admin_api.md - The Raft implementation (github.com/coreos/etcd/raft) has been re-designed to enable faster and more thorough testing. The central raft state machine code is succinct (>600 LOC) and easy to understand when read alongside the Raft whitepaper. - The Raft log is now a strict append-only write-ahead log and includes a rolling CRC to each of the records in the log. - The key store starts up completely clean. The internal _etcd/* keys are no longer exposed to the user from the /v2/keys API. - etcd can operate in a pure proxy mode not participating in Raft consensus and also includes a readonly proxy. - ETCD_NAME is now advisory only and is not used internally by etcd to identify a member. This means that it is safe to change the name. Also, the client URL list that each member publishes can be changed from the flags and updated on restart. - The peers flags has been deprecated, in order to support the ability to specify machines with multiple addresses - Cluster auto adjustment (also known as standby-mode) has been deprecated. This feature was meant to help people manage their etcd cluster but it was a difficult to understand feature which lead to a lot of support burden. Instead, we have introduced an explicit proxy mode for etcd, and explicit cluster configuration operations (joining and removing nodes). - The TOML configuration file has been deprecated. The recommended replacement is to use environment variables (e.g. in a systemd unit file). - Discovery services now must provide a target cluster size. This is due to our experience helping users debug cluster bootstrap with the discovery service. We found that users could become confused when they thought that they had launched three machines (for a fault tolerance of one), but that only two had successfully started, and so etcd was accepting writes. Then when the inevitable happened and a single machine failed, etcd became unavailable. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJUSu7YAAoJEBVDQyYFQt80OXcP/3wgHIF0GI2P5FeDJaPzzptA 1sZhGPybMiI+iEJCyREcofb/8wiC6Wca/19f/gzo/QWkELduOHAQi7Syonu+vBVn cedHQJD56Qk+oeQj9Y2pLr6F4I7M+UuT0cREUWZVvQ6YCuvYS/kh0+BVTIp9Xm0r +Drh98W0LR6NQRLlgWC0Lc6h3IqgF4XAM3O3mntWIucToeuKI223M7hfQPwpfVUY QLnqgyoTesGGxQtCMUhZpSc9QbMjOpi5a6f+Am3cP3gcn2ngmyOWZMbG/dLqb9WN JnGqFVB9EqNOrrSnzMDpqnyFoDjuwfqkPO6lQrInb8diEd3L5aUy/j+1eSzif4b8 29qTz0rnMVQcUwJsZfy/SutTZVs4hCzCyQFc8pI5Q0Ck8uNdRGf8ImpmlmKQhfoD VRDaSqzEu9qI3eQvFrCAgyLZj5M5GQFYh9yitgFl/VnCpAVkDGjZCYXg2vgkSf2P psUj3oIG/rKJP+9/ImHaIPbTo8ZN4SK4VNxlc/m0hinP+fXOs7gJp2dzRBdTyGyo 0Wti9+GnT0z9mvVi+U8DcwdaBUJII1dHE8odgvb6F9gepoxSNrwNuEFikBPhlgpq qsOjwSG4roD3DignydfqJ2mz656e6d9f/GoeiPapaNDFKqZhZVVTffvG2k2xn5nR uj0kINXVaw75KyQRII5a =4YgC -----END PGP SIGNATURE-----
Target: 2b9cabcbcd4c6b3e15c3bcec29bd1a323387f970
Directory: ccd5a115fa006781fa1e28a266747d2b9c2cbea5
back to top