API to find a key in a etcd clusterhow do I get with confd the key string value generate with etcdIs there a fast way to reinitialize or clear etcd keyspace for testing?Unable to setup kubernetes against tls secured etcdEtcd cluster setup failureHow to pass etcd credentials to kubernetes api-server?kube-apiserver unable to communicate with TLS enabled etcdPrivate etcd cluster using tokensduplicate key given in txn request while trying to remove all keys by prefix and put them againFailure when bootstrapping etcd cluster using DNS discovery + Consul
Why did the Japanese attack the Aleutians at the same time as Midway?
Is killing off one of my queer characters homophobic?
QGIS Linestring rendering curves between vertex
What are some symbols representing peasants/oppressed persons fighting back?
Back to the nineties!
Help with understanding nuances of extremely popular Kyoto-ben (?) tweet
Too many spies!
As a DM, how to avoid unconscious metagaming when dealing with a high AC character?
What does "Fotze" really mean?
Are lithium batteries allowed in the International Space Station?
Is purchasing foreign currency before going abroad a losing proposition?
What's the point of this scene involving Flash Thompson at the airport?
Metric version of "footage"?
Interpreting the word "randomly"
Missing Contours in ContourPlot
nmcheck.gnome.org facilitating ads?
Ways to express "The reader may wish to..." / "The reader may want to..."
Dropping outliers based on "2.5 times the RMSE"
Filtering fine silt/mud from water (not necessarily bacteria etc.)
Why would an Inquisitive rogue choose to use Insightful Fighting as opposed to using their Cunning Action to Hide?
How to convert 1k to 1000 and 1m to 1000000 in Excel
Why would guns not work in the dungeon?
wavelength of seismic wave with a gaussian source
Why do they not say "The Baby"
API to find a key in a etcd cluster
how do I get with confd the key string value generate with etcdIs there a fast way to reinitialize or clear etcd keyspace for testing?Unable to setup kubernetes against tls secured etcdEtcd cluster setup failureHow to pass etcd credentials to kubernetes api-server?kube-apiserver unable to communicate with TLS enabled etcdPrivate etcd cluster using tokensduplicate key given in txn request while trying to remove all keys by prefix and put them againFailure when bootstrapping etcd cluster using DNS discovery + Consul
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to write a code where I need to find if a key exists in etcd or not. I tried this:
_, err = kapi.Get(context.Background(), key, nil)
if err != nil
return err
else { ...
But even if the key is not in the cluster, the error is always nil
.
Any idea what am I doing wrong here? Or is there any other API call to make?
go etcd
add a comment |
I am trying to write a code where I need to find if a key exists in etcd or not. I tried this:
_, err = kapi.Get(context.Background(), key, nil)
if err != nil
return err
else { ...
But even if the key is not in the cluster, the error is always nil
.
Any idea what am I doing wrong here? Or is there any other API call to make?
go etcd
add a comment |
I am trying to write a code where I need to find if a key exists in etcd or not. I tried this:
_, err = kapi.Get(context.Background(), key, nil)
if err != nil
return err
else { ...
But even if the key is not in the cluster, the error is always nil
.
Any idea what am I doing wrong here? Or is there any other API call to make?
go etcd
I am trying to write a code where I need to find if a key exists in etcd or not. I tried this:
_, err = kapi.Get(context.Background(), key, nil)
if err != nil
return err
else { ...
But even if the key is not in the cluster, the error is always nil
.
Any idea what am I doing wrong here? Or is there any other API call to make?
go etcd
go etcd
edited Mar 26 at 14:56
François P.
2,1457 silver badges16 bronze badges
2,1457 silver badges16 bronze badges
asked Mar 26 at 5:39
PensuPensu
8977 gold badges21 silver badges51 bronze badges
8977 gold badges21 silver badges51 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you use the go client v3 KV client here: https://godoc.org/go.etcd.io/etcd/clientv3#KV
It returns the following type:
https://godoc.org/go.etcd.io/etcd/etcdserver/etcdserverpb#RangeResponse
type RangeResponse struct
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// kvs is the list of key-value pairs matched by the range request.
// kvs is empty when count is requested.
Kvs []*mvccpb.KeyValue `protobuf:"bytes,2,rep,name=kvs" json:"kvs,omitempty"`
// more indicates if there are more keys to return in the requested range.
More bool `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
// count is set to the number of keys within the range when requested.
Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
So as you see, there is a Count
property and a Kvs
property, if you want to check that your response contains keys you can just check that Count > 0
or len(res.Kvs) > 0
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350494%2fapi-to-find-a-key-in-a-etcd-cluster%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you use the go client v3 KV client here: https://godoc.org/go.etcd.io/etcd/clientv3#KV
It returns the following type:
https://godoc.org/go.etcd.io/etcd/etcdserver/etcdserverpb#RangeResponse
type RangeResponse struct
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// kvs is the list of key-value pairs matched by the range request.
// kvs is empty when count is requested.
Kvs []*mvccpb.KeyValue `protobuf:"bytes,2,rep,name=kvs" json:"kvs,omitempty"`
// more indicates if there are more keys to return in the requested range.
More bool `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
// count is set to the number of keys within the range when requested.
Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
So as you see, there is a Count
property and a Kvs
property, if you want to check that your response contains keys you can just check that Count > 0
or len(res.Kvs) > 0
add a comment |
If you use the go client v3 KV client here: https://godoc.org/go.etcd.io/etcd/clientv3#KV
It returns the following type:
https://godoc.org/go.etcd.io/etcd/etcdserver/etcdserverpb#RangeResponse
type RangeResponse struct
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// kvs is the list of key-value pairs matched by the range request.
// kvs is empty when count is requested.
Kvs []*mvccpb.KeyValue `protobuf:"bytes,2,rep,name=kvs" json:"kvs,omitempty"`
// more indicates if there are more keys to return in the requested range.
More bool `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
// count is set to the number of keys within the range when requested.
Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
So as you see, there is a Count
property and a Kvs
property, if you want to check that your response contains keys you can just check that Count > 0
or len(res.Kvs) > 0
add a comment |
If you use the go client v3 KV client here: https://godoc.org/go.etcd.io/etcd/clientv3#KV
It returns the following type:
https://godoc.org/go.etcd.io/etcd/etcdserver/etcdserverpb#RangeResponse
type RangeResponse struct
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// kvs is the list of key-value pairs matched by the range request.
// kvs is empty when count is requested.
Kvs []*mvccpb.KeyValue `protobuf:"bytes,2,rep,name=kvs" json:"kvs,omitempty"`
// more indicates if there are more keys to return in the requested range.
More bool `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
// count is set to the number of keys within the range when requested.
Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
So as you see, there is a Count
property and a Kvs
property, if you want to check that your response contains keys you can just check that Count > 0
or len(res.Kvs) > 0
If you use the go client v3 KV client here: https://godoc.org/go.etcd.io/etcd/clientv3#KV
It returns the following type:
https://godoc.org/go.etcd.io/etcd/etcdserver/etcdserverpb#RangeResponse
type RangeResponse struct
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// kvs is the list of key-value pairs matched by the range request.
// kvs is empty when count is requested.
Kvs []*mvccpb.KeyValue `protobuf:"bytes,2,rep,name=kvs" json:"kvs,omitempty"`
// more indicates if there are more keys to return in the requested range.
More bool `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
// count is set to the number of keys within the range when requested.
Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
So as you see, there is a Count
property and a Kvs
property, if you want to check that your response contains keys you can just check that Count > 0
or len(res.Kvs) > 0
answered Mar 26 at 14:56
François P.François P.
2,1457 silver badges16 bronze badges
2,1457 silver badges16 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350494%2fapi-to-find-a-key-in-a-etcd-cluster%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown