|
|
9 years ago | |
|---|---|---|
| .. | ||
| command | 9 years ago | |
| doc | 9 years ago | |
| README.md | 9 years ago | |
| help.go | 10 years ago | |
| main.go | 9 years ago | |
PUT assigns the specified value with the specified key. If key already holds a value, it is overwritten.
Simple reply
OK if PUT executed correctly. Exit code is zero.
Error string if PUT failed. Exit code is non-zero.
TODO: probably json and binary encoded proto
./etcdctl PUT foo bar --lease=0x1234abcd
OK
./etcdctl range foo
bar
If <value> isn't given as command line argument, this command tries to read the value from standard input.
When <value> begins with '-', <value> is interpreted as a flag. Insert '--' for workaround:
./etcdctl put <key> -- <value>
./etcdctl put -- <key> <value>
GET gets the key or a range of keys [key, range_end) if range-end is given.
hex -- print out key and value as hex encode string
limit -- maximum number of results
order -- order of results; ASCEND or DESCEND
sort-by -- sort target; CREATE, KEY, MODIFY, VALUE, or VERSION
TODO: add consistency, from, prefix
Simple reply
<key>\r\n<value>\r\n<next_key>\r\n<next_value>...
Error string if GET failed. Exit code is non-zero.
TODO: probably json and binary encoded proto
./etcdctl get foo
foo
bar
If any key or value contains non-printable characters or control characters, the output in text format (e.g. simple reply or JSON reply) might be ambiguous.
Adding --hex to print key or value as hex encode string in text format can resolve this issue.
Removes the specified key or range of keys [key, range_end) if range-end is given.
TODO: --prefix, --from
Simple reply
The number of keys that were removed in decimal if DEL executed correctly. Exit code is zero.
Error string if DEL failed. Exit code is non-zero.
TODO: probably json and binary encoded proto
./etcdctl put foo bar
OK
./etcdctl del foo
1
./etcdctl range foo
TXN applies multiple etcd requests as a single atomic transaction. A transaction consists of list of conditions, a list of requests to apply if all the conditions are true, and a list of requests to apply if any condition is false.
hex -- print out keys and values as hex encoded string
interactive -- input transaction with interactive mode
Interactive mode:
<Txn> ::= <CMP>* "\n" <THEN> "\n" <ELSE> "\n"
<CMP> ::= (<CMPCREATE>|<CMPMOD>|<CMPVAL>|<CMPVER>) "\n"
<CMPOP> ::= "<" | "=" | ">"
<CMPCREATE> := ("c"|"create")"("<KEY>")" <REVISION>
<CMPMOD> ::= ("m"|"mod")"("<KEY>")" <CMPOP> <REVISION>
<CMPVAL> ::= ("val"|"value")"("<KEY>")" <CMPOP> <VALUE>
<CMPVER> ::= ("ver"|"version")"("<KEY>")" <CMPOP> <VERSION>
<THEN> ::= <OP>*
<ELSE> ::= <OP>*
<OP> ::= ((see put, get, del etcdctl command syntax)) "\n"
<KEY> ::= (%q formatted string)
<VALUE> ::= (%q formatted string)
<REVISION> ::= "\""[0-9]+"\""
<VERSION> ::= "\""[0-9]+"\""
TODO: non-interactive mode
Simple reply
SUCCESS if etcd processed the transaction success list, FAILURE if etcd processed the transaction failure list.
Simple reply for each command executed request list, each separated by a blank line.
Additional error string if TXN failed. Exit code is non-zero.
TODO: probably json and binary encoded proto
./etcdctl txn -i
mod("key1") > "0"
put key1 "overwrote-key1"
put key1 "created-key1"
put key2 "some extra key"
FAILURE
OK
OK
TODO: non-interactive mode
Watch watches events stream on keys or prefixes. The watch command runs until it encounters an error or is terminated by the user.
hex -- print out key and value as hex encode string
interactive -- begins an interactive watch session
prefix -- watch on a prefix if prefix is set.
rev -- the revision to start watching. Specifying a revision is useful for observing past events.
Simple reply
<event><key>\r\n<value>\r\n<event><next_key>\r\n<next_value>...
Additional error string if WATCH failed. Exit code is non-zero.
TODO: probably json and binary encoded proto
./etcdctl watch foo
PUT
foo
bar
TODO: doc interactive mode
make-mirror mirrors a key prefix in an etcd cluster to a destination etcd cluster.
dest-cacert -- TLS certificate authority file for destination cluster
dest-cert -- TLS certificate file for destination cluster
dest-key -- TLS key file for destination cluster
prefix -- The key-value prefix to mirror
Simple reply
The approximate total number of keys transferred to the destination cluster, updated every 30 seconds.
Error string if mirroring failed. Exit code is non-zero.
./etcdctl make-mirror mirror.example.com:2379
10
18