845cb61213
storage: add kv and event proto
2015-05-18 14:35:10 -07:00
00ed4fe778
Merge pull request #2764 from barakmich/2755
...
security: Lazily create the security directories. Fixes #2755 .
2015-05-18 17:34:13 -04:00
a88a53274f
security: Lazily create the security directories. Fixes #2755 , may find new instances for #2741
...
revert the kv integration test
fix nits
amend security mention of GUEST
2015-05-18 17:28:04 -04:00
6ee5cd9105
Merge pull request #2675 from xiang90/v3rfc
...
doc: v3api rfc
2015-05-18 13:52:54 -07:00
7c879ee576
doc: v3api rfc
2015-05-18 13:48:16 -07:00
3153e635d5
Revert "Treat URLs have same IP address as same"
...
This reverts commit f8ce5996b0
.
etcd no longer resolves TCP addresses passed in through flags,
so there is no need to compare hostname and IP slices anymore.
(for more details: a3892221ee
)
Conflicts:
etcdserver/cluster.go
etcdserver/config.go
pkg/netutil/netutil.go
pkg/netutil/netutil_test.go
2015-05-16 03:21:10 -07:00
b3e6ad136a
docs: add node-etcd-config to libs and tools doc
2015-05-16 02:02:44 -07:00
9575cc4258
storage: add delete example
2015-05-15 19:33:59 -07:00
2e43ac8463
rafthttp: add test for streamReader.updateMsgAppTerm
2015-05-15 11:21:54 -07:00
8637a4bf69
rafthttp: only close streamMsgApp when updating term
...
In all stream types, streamMsgApp needs to be closed when
updating term because its stream connection can only be used under
a certain term. But there is no need to close other streams, which
may waste time and reduce performance.
2015-05-15 11:21:54 -07:00
9699a501f3
Merge pull request #2833 from yichengq/rename-closer
...
rafthttp: resetCloser -> close
2015-05-15 11:18:58 -07:00
8e0992a28b
rafthttp: resetCloser -> close
...
name 'close' is shorter and more straightforward.
2015-05-14 22:24:05 -07:00
fc4543a3fd
Merge pull request #2628 from yichengq/improve-msgappv2
...
rafthttp: reduce allocs in msgappv2
2015-05-14 21:18:16 -07:00
4b0d9f69c7
storage: add a simple backend and kv example
2015-05-14 20:43:32 -07:00
d611904a41
Merge pull request #2828 from yichengq/cluster-health-log
...
etcdctl/cluster_health: improve output if failed to get leader stats
2015-05-14 19:01:48 -07:00
3d8fe3b3ca
etcdctl/cluster_health: improve output if failed to get leader stats
...
When failing to get leader stats, it said 'cluster is unhealthy' before.
This is confusing when it cannot get stats because advertised client urls
are set wrong and the cluster is healthy.
2015-05-14 18:52:10 -07:00
9d831e3075
*: godep btree
2015-05-14 17:59:55 -07:00
660fd5e3e1
storage: add comment around compact
2015-05-14 17:55:54 -07:00
ee47973199
storage: initial index
2015-05-14 17:53:41 -07:00
32d44aa3b2
storage: initial key index
2015-05-14 17:35:12 -07:00
556713739c
Merge pull request #2823 from alexwlchan/master
...
docs: small fixes to spelling and similar
2015-05-14 15:41:14 -07:00
9f8342dba4
etcdserver: do not get local version via HTTP
2015-05-13 17:19:32 -07:00
988c30bfba
etcdserver: getVersion returns both server and cluster version
2015-05-13 17:04:46 -07:00
1a9dcd2f72
Merge pull request #2826 from yichengq/fix-wait-test
...
pkg/wait: fix TestWaitTestStress
2015-05-13 15:56:26 -07:00
132b12f8db
Merge pull request #2827 from xiang90/cluster_v
...
etcdhttp: version endpoint also returns cluster version.
2015-05-13 15:54:54 -07:00
6296054ff6
etcdhttp: version endpoint also returns cluster version.
2015-05-13 15:48:10 -07:00
256a7cfe8c
pkg/wait: fix TestWaitTestStress
...
The test may fail if two consequent time.Now() returns the same value.
Sleep 1ns to avoid this situation.
2015-05-13 13:41:34 -07:00
75ee7f4aa1
Merge pull request #2821 from yichengq/private-cluster
...
etcdserver: stop exposing Cluster struct
2015-05-13 10:26:48 -07:00
2690535f8a
Merge pull request #2820 from xiang90/cap
...
version capability checking
2015-05-13 10:16:49 -07:00
d3b1d5c008
etcdhttp: support capability checking
...
etcdhttp will check the cluster version and update its
capability version periodically.
Any new handler's after 2.0 needs to wrap by capability handler
to ensure it is not accessable until rolling upgrade finished.
2015-05-13 10:11:35 -07:00
a6a649f1c3
etcdserver: stop exposing Cluster struct
...
After this PR, only cluster's interface Cluster is exposed, which makes
code much cleaner. And it avoids external packages to rely on cluster
struct in the future.
2015-05-13 10:01:25 -07:00
19ab1cb2a9
Merge pull request #2822 from xiang90/rm_log
...
etcdserver: remove unnecessary around detect datadir
2015-05-13 09:27:21 -07:00
0c63e16ae0
docs: small fixes to spelling and similar
...
This commit is a collection of fixes to spelling, capitalisation
and spacing. No substantial changes.
2015-05-13 11:45:00 +01:00
f2905f2828
etcdserver: remove unnecessary around detect datadir
...
The log is super unhelpful. When I have a 2.1.0 etcd, it prints out
`2.0.1 vaild dir`. I have no idea why the data dir of a 2.1.0 etcd is
2.0.1.
2015-05-12 22:06:42 -07:00
f4c51cb5a1
Merge pull request #2766 from yichengq/345
...
*: extract types.Cluster from etcdserver.Cluster
2015-05-12 15:52:24 -07:00
032db5e396
*: extract types.Cluster from etcdserver.Cluster
...
The PR extracts types.Cluster from etcdserver.Cluster. types.Cluster
is used for flag parsing and etcdserver config.
There is no need to expose etcdserver.Cluster public, which contains
lots of etcdserver internal details and methods. This is the first step
for it.
2015-05-12 14:53:11 -07:00
197437316f
Merge pull request #2804 from xiang90/vv
...
etcdserver: support update cluster version through raft
2015-05-12 14:31:27 -07:00
e866314b94
etcdserver: support update cluster version through raft
...
1. Persist the cluster version change through raft. When the member is restarted, it can recover
the previous known decided cluster version.
2. When there is a new leader, it is forced to do a version checking immediately. This helps to
update the first cluster version fast.
2015-05-12 11:44:34 -07:00
f1502e970a
Merge pull request #2813 from sckott/r-library
...
Documentation: add the R client etseed to libraries-and-tools.md
2015-05-12 10:43:59 -07:00
93b610ac8d
Merge pull request #2809 from xiang90/fix_discovery_err
...
discovery: do not return raw error from etcd store
2015-05-12 09:59:56 -07:00
b764f07e34
Merge pull request #2811 from mischief/plan9-lock
...
pkg/fileutil: add plan9 lockfile support
2015-05-11 17:42:40 -07:00
91cbf47a2a
etcdmain: better error msg when detected duplicate id in discovery
2015-05-11 17:34:44 -07:00
5203de5566
Documentation: add the R client etseed to libraries-and-tools.md
...
etseed is an R client for etcd.
2015-05-11 15:43:31 -07:00
2e8c932ab0
pkg/fileutil: add plan9 lockfile support
2015-05-11 13:24:01 -07:00
e9931fb8b1
discovery: do not return error from etcd
...
We used to return `key not found` directly to the
user due to a bug. We fixed the bug and added a test
case in this commit.
2015-05-11 10:49:57 -07:00
3d242695b3
Merge pull request #2775 from yichengq/proxy-doc
...
docs: proxy needs accessible advertise client urls
2015-05-10 10:18:40 -07:00
42783c1faa
Merge pull request #2805 from MSamman/more_version_info
...
version: added more version information
2015-05-08 20:28:10 -07:00
3914defd8a
version: added more version information
...
added more version information output to aid debugging
print etcd Version, Git SHA, Go runtime version, OS
and architecture
Fixes #2560
2015-05-09 03:21:10 +00:00
1abf2636b5
docs: proxy needs accessible advertise client urls
...
Users cannot use proxy if -advertise-client-urls is set correctly.
Especially mention this in the doc to help them bypass the wrong
settings.
2015-05-07 22:53:42 -07:00
b24dd8e4e6
Merge pull request #2792 from ecnahc515/client_create_dir
...
client: Support creating directory through KeysAPI
2015-05-07 11:13:49 -07:00