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;








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?










share|improve this question






























    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?










    share|improve this question


























      0












      0








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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






          share|improve this answer






















            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
            );



            );













            draft saved

            draft discarded


















            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









            1














            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






            share|improve this answer



























              1














              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






              share|improve this answer

























                1












                1








                1







                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






                share|improve this answer













                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







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 26 at 14:56









                François P.François P.

                2,1457 silver badges16 bronze badges




                2,1457 silver badges16 bronze badges


















                    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.



















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript