Brandon Philips
3ee7a265f6
README: remove doozer and zookeeper mentions
...
doozer in particular is rather confusing to mention since the project
hasn't been worked on in years. While we are at it it might simplify
people's understanding if we remove zookeeper too.
2015-01-30 14:13:47 -08:00
Brandon Philips
d1f9f2f1b7
scripts: remove 2.0 Documentation from build-release
...
2.0 docs have been merged into the Documentation folder now.
2015-01-30 14:13:25 -08:00
Xiang Li
894f1aadce
Merge pull request #2199 from xiang90/coreos
...
mian: detects coreos
2015-01-30 12:10:23 -08:00
Xiang Li
fce80136e3
main: detects coreos
2015-01-30 12:10:05 -08:00
Yicheng Qin
ebf9daff74
Merge pull request #2190 from yichengq/308
...
migrate: support start desired version
2015-01-30 11:47:22 -08:00
Yicheng Qin
ec5a6e8beb
migrate: support start desired version
2015-01-30 00:35:53 -08:00
Rob Szumski
0945e487e7
docs: fix static clustering example
...
When using very similar flags to our examples, the cluster doesn't bootstrap due to mismatched protocols (`http` vs `https`) in the `-initial-advertise-peer-urls` and `initial-cluster` list:
```
./etcd -name infra0 -initial-advertise-peer-urls https://127.0.0.1:2380 \
> -listen-peer-urls https://127.0.0.1:2380 \
> -initial-cluster-token etcd-cluster-1 \
> -initial-cluster infra0=http://127.0.0.1:2380,infra1=http://127.0.0.1:2381,infra2=http://127.0.0.1:2382 \
> -initial-cluster-state new
2015/01/29 10:32:16 no data-dir provided, using default data-dir ./infra0.etcd
2015/01/29 10:32:16 etcd: listening for peers on https://127.0.0.1:2380
2015/01/29 10:32:16 etcd: listening for client requests on http://localhost:2379
2015/01/29 10:32:16 etcd: listening for client requests on http://localhost:4001
2015/01/29 10:32:16 etcd: stopping listening for client requests on http://localhost:4001
2015/01/29 10:32:16 etcd: stopping listening for client requests on http://localhost:2379
2015/01/29 10:32:16 etcd: stopping listening for peers on https://127.0.0.1:2380
2015/01/29 10:32:16 etcd: infra0 has different advertised URLs in the cluster and advertised peer URLs list
```
2015-01-29 13:44:13 -08:00
Yicheng Qin
a65556abe2
Merge pull request #2189 from yichengq/314
...
support disaster recovery from rc1 data dir
2015-01-29 13:38:00 -08:00
Yicheng Qin
e966e565c4
etcdctl/backup_command: handle datadir with missed snapshot mark
...
This helps to recover from the data dir created in v2.0.0-rc1.
2015-01-29 13:32:59 -08:00
Yicheng Qin
7840d49ae0
etcdserver: not add self to transporter based on local ID
...
If this is decided by local name, it comes to trouble if the name is
duplicate in the cluster.
2015-01-29 12:35:47 -08:00
Yicheng Qin
d0af96d558
etcdctl/backup_command: save snapshot mark in new wal
2015-01-29 12:35:39 -08:00
Xiang Li
fd0c0c9263
Merge pull request #2185 from xiang90/fix_tls_keepalive
...
Fix tls keepalive
2015-01-29 10:36:11 -08:00
Xiang Li
4960324876
pkg/transport: fix tlskeepalive
2015-01-29 09:42:48 -08:00
Brandon Philips
b606078e93
version: bump to 2.0.0
v2.0.0
2015-01-27 23:08:58 -08:00
Brandon Philips
127fe322a4
Merge pull request #2172 from philips/README-updates
...
README: remove the etcd release candidate disclaimer
2015-01-27 23:04:09 -08:00
Brandon Philips
b377110c11
README: remove the etcd release candidate disclaimer
...
Remove the information about the v1 API since it has been removed.
Remove the disclaimer since we are no longer in release candidate mode.
2015-01-27 22:54:10 -08:00
Brandon Philips
7167cd6ccd
Merge pull request #2149 from vdemedes/patch-1
...
Update README.md
2015-01-27 16:09:20 -08:00
Xiang Li
bff2ccaa22
Merge pull request #2170 from xiang90/remove_log
...
raft: remove default verbose logging
2015-01-27 15:58:53 -08:00
Xiang Li
553379e82b
raft: remove default verbose logging
2015-01-27 15:57:44 -08:00
Xiang Li
67d141a0af
Merge pull request #2167 from bdarnell/send-after-response
...
raft: Send any waiting appends after receiving MsgAppResp.
2015-01-27 15:31:50 -08:00
Brandon Philips
0b2fde38d0
Merge pull request #2169 from philips/remove-CHANGELOG
...
CHANGELOG: remove unupdated changelog file
2015-01-27 15:03:47 -08:00
Brandon Philips
0c1329ace2
CHANGELOG: remove unupdated changelog file
...
We have been putting the changelog in the tags. Nuke this file.
2015-01-27 15:01:23 -08:00
Yicheng Qin
43f1ccc88c
version: bump to v2.0.0-rc.2
2015-01-27 14:48:30 -08:00
Ben Darnell
33d2400063
raft: Send any waiting appends after receiving MsgAppResp.
...
This addresses a problem that comes up in the cockroach tests,
in which the order of messages may lead to deadlocks (due to
the fact that we don't have regular heartbeat timers in most
of our tests).
2015-01-27 17:43:29 -05:00
Xiang Li
4c33d12bf8
Merge pull request #2132 from xiang90/ctl
...
etcdctl: support upgrade
2015-01-27 14:18:16 -08:00
Yicheng Qin
0f2582e0be
Merge pull request #2042 from yichengq/279
...
docs: improve doc for server timeout
2015-01-27 14:12:42 -08:00
Yicheng Qin
a03c906e9d
docs: improve doc for server timeout
2015-01-27 14:12:27 -08:00
Yicheng Qin
c530e6fc55
Merge pull request #2165 from yichengq/312
...
docs: fix details about 2.0
2015-01-27 13:53:20 -08:00
Yicheng Qin
c5adff4988
docs: fix details about 2.0
2015-01-27 13:52:37 -08:00
Barak Michener
91bd02dce1
Merge pull request #2161 from yichengq/311
...
migrate: set HardState.Term in migration
2015-01-27 13:59:26 -05:00
Barak Michener
62b0fe50eb
Merge pull request #2164 from barakmich/2160redux
...
migrate: convert 0.4 terms to start at 1
2015-01-27 13:59:20 -05:00
Yicheng Qin
9eaa79a12a
Merge pull request #2137 from jurmous/patch-2
...
Update libraries-and-tools.md
2015-01-27 10:54:49 -08:00
Barak Michener
55c1635cee
comment
2015-01-27 13:54:23 -05:00
Barak Michener
7f91a35313
migrate: convert 0.4 terms to start at 1
2015-01-27 13:10:13 -05:00
Yicheng Qin
517eb340dd
migrate: set HardState.Term in migration
2015-01-26 23:41:21 -08:00
Xiang Li
915c22292f
Merge pull request #2140 from xiang90/raft_stats
...
etcdserver: support raft.status
2015-01-26 16:44:58 -08:00
Xiang Li
276c9540b4
etcdserver: support raft.status
2015-01-26 16:39:33 -08:00
Xiang Li
825107629a
Merge pull request #2157 from yichengq/309
...
pkg/metrics: protect global vars in reset func
2015-01-26 16:24:00 -08:00
Yicheng Qin
8c932ff719
pkg/metrics: protect global vars in reset func
2015-01-26 16:23:35 -08:00
Yicheng Qin
f0c9a54edb
Merge pull request #2156 from yichengq/309
...
pkg/metrics: self-manage global expvar map
2015-01-26 16:20:31 -08:00
Yicheng Qin
08b34a3f5b
pkg/metrics: self-manage global expvar map
...
This helps the embedded tests.
2015-01-26 16:20:09 -08:00
Xiang Li
78f70137ea
Merge pull request #2155 from yichengq/310
...
README: add doc about easy etcd cluster bootstrap
2015-01-26 15:47:21 -08:00
Yicheng Qin
4c55e8a7c0
README: add doc about easy etcd cluster bootstrap
2015-01-26 15:41:56 -08:00
Xiang Li
4427b889df
Merge pull request #2151 from efrecon/tcl-binding-reference
...
Update libraries-and-tools.md
2015-01-26 14:33:02 -08:00
Xiang Li
37f8e2d5e0
Merge pull request #2150 from sorah/master
...
Treat URLs have same IP address as same
2015-01-26 12:08:26 -08:00
Shota Fukumori (sora_h)
f8ce5996b0
Treat URLs have same IP address as same
...
- To solve validation error problem using URLs in hostname #2123
2015-01-27 04:36:41 +09:00
Xiang Li
9c7f66c5d9
Merge pull request #2119 from sorah/peer-ca-on-fetching-members
...
etcdserver: User peerTLSInfo to get cluster member
2015-01-26 10:50:44 -08:00
Shota Fukumori (sora_h)
033e7d1db9
etcdserver: User peerTLSInfo to get cluster member
2015-01-27 03:43:21 +09:00
Jonathan Boulle
a6661201c5
Merge pull request #2148 from jonboulle/copyright
...
*: switch to line comments for copyright
2015-01-26 09:58:57 -08:00
Jonathan Boulle
f1ed69e883
*: switch to line comments for copyright
...
Build tags are not compatible with block comments.
Also adds copyright header to a few places it was missing.
2015-01-26 09:53:30 -08:00