Google's RuntimeConfig API responds with 'Our systems have detected unusual traffic from your computer...












1














Since today (november 20 2018) we get error responses from Google's RuntimeConfig API:

Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot...

(check this link for complete HTML error)



We retrieve variables from Google's RuntimeConfig using the API in our code. We do quite a few request, but not more than before:



A developer starts his server locally, which retrieves all the needed variables (+- 30 everytime you start).



Requesting RuntimeConfig variables via GCloud results in the same HTML error:
gcloud beta runtime-config configs variables get-value databaseHost --config-name database --project=your-test-environment



Other gcloud api requests work (projects describe, gsutil, etc).



How can I verify if I violated any terms? I can only find a usage limit in GCloud Console of 6000 calls per minute.










share|improve this question



























    1














    Since today (november 20 2018) we get error responses from Google's RuntimeConfig API:

    Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot...

    (check this link for complete HTML error)



    We retrieve variables from Google's RuntimeConfig using the API in our code. We do quite a few request, but not more than before:



    A developer starts his server locally, which retrieves all the needed variables (+- 30 everytime you start).



    Requesting RuntimeConfig variables via GCloud results in the same HTML error:
    gcloud beta runtime-config configs variables get-value databaseHost --config-name database --project=your-test-environment



    Other gcloud api requests work (projects describe, gsutil, etc).



    How can I verify if I violated any terms? I can only find a usage limit in GCloud Console of 6000 calls per minute.










    share|improve this question

























      1












      1








      1







      Since today (november 20 2018) we get error responses from Google's RuntimeConfig API:

      Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot...

      (check this link for complete HTML error)



      We retrieve variables from Google's RuntimeConfig using the API in our code. We do quite a few request, but not more than before:



      A developer starts his server locally, which retrieves all the needed variables (+- 30 everytime you start).



      Requesting RuntimeConfig variables via GCloud results in the same HTML error:
      gcloud beta runtime-config configs variables get-value databaseHost --config-name database --project=your-test-environment



      Other gcloud api requests work (projects describe, gsutil, etc).



      How can I verify if I violated any terms? I can only find a usage limit in GCloud Console of 6000 calls per minute.










      share|improve this question













      Since today (november 20 2018) we get error responses from Google's RuntimeConfig API:

      Our systems have detected unusual traffic from your computer network. This page checks to see if it's really you sending the requests, and not a robot...

      (check this link for complete HTML error)



      We retrieve variables from Google's RuntimeConfig using the API in our code. We do quite a few request, but not more than before:



      A developer starts his server locally, which retrieves all the needed variables (+- 30 everytime you start).



      Requesting RuntimeConfig variables via GCloud results in the same HTML error:
      gcloud beta runtime-config configs variables get-value databaseHost --config-name database --project=your-test-environment



      Other gcloud api requests work (projects describe, gsutil, etc).



      How can I verify if I violated any terms? I can only find a usage limit in GCloud Console of 6000 calls per minute.







      recaptcha captcha gcloud runtime-configuration






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 15:24









      mvdbmvdb

      12118




      12118
























          2 Answers
          2






          active

          oldest

          votes


















          3














          You can find the quotas for Runtime Configurator and how much of those you are using in the Cloud Console under IAM & Admin. In the Quotas section you can filter on Service = Cloud Runtime Configuration API and you should see all the quotas and how close to those you are for this API. There are 4 quotas that may affect you (docs here):




          • 1200 Queries Per Minute (QPM) for delete, create, and update requests

          • 600 QPM for watch requests

          • 6000 QPM for get and list requests.

          • 4MB of data per project, which consists of all data written to the Runtime Configurator service and accompanying metadata.


          enter image description here






          share|improve this answer





























            0














            We had the exact same issue on November 20th when a large amount of our preemptibles were reallocated at the same time.



            Our startup-scripts make use of the gcloud beta runtime-config...-commands and they all responded with 503.
            These commands responded correctly again after a few hours.



            We have had a support-ticket with Google and there was a problem with their internal quota mechanisms at the time which since is fixed so the issue is resolved.






            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%2f53396229%2fgoogles-runtimeconfig-api-responds-with-our-systems-have-detected-unusual-traf%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              3














              You can find the quotas for Runtime Configurator and how much of those you are using in the Cloud Console under IAM & Admin. In the Quotas section you can filter on Service = Cloud Runtime Configuration API and you should see all the quotas and how close to those you are for this API. There are 4 quotas that may affect you (docs here):




              • 1200 Queries Per Minute (QPM) for delete, create, and update requests

              • 600 QPM for watch requests

              • 6000 QPM for get and list requests.

              • 4MB of data per project, which consists of all data written to the Runtime Configurator service and accompanying metadata.


              enter image description here






              share|improve this answer


























                3














                You can find the quotas for Runtime Configurator and how much of those you are using in the Cloud Console under IAM & Admin. In the Quotas section you can filter on Service = Cloud Runtime Configuration API and you should see all the quotas and how close to those you are for this API. There are 4 quotas that may affect you (docs here):




                • 1200 Queries Per Minute (QPM) for delete, create, and update requests

                • 600 QPM for watch requests

                • 6000 QPM for get and list requests.

                • 4MB of data per project, which consists of all data written to the Runtime Configurator service and accompanying metadata.


                enter image description here






                share|improve this answer
























                  3












                  3








                  3






                  You can find the quotas for Runtime Configurator and how much of those you are using in the Cloud Console under IAM & Admin. In the Quotas section you can filter on Service = Cloud Runtime Configuration API and you should see all the quotas and how close to those you are for this API. There are 4 quotas that may affect you (docs here):




                  • 1200 Queries Per Minute (QPM) for delete, create, and update requests

                  • 600 QPM for watch requests

                  • 6000 QPM for get and list requests.

                  • 4MB of data per project, which consists of all data written to the Runtime Configurator service and accompanying metadata.


                  enter image description here






                  share|improve this answer












                  You can find the quotas for Runtime Configurator and how much of those you are using in the Cloud Console under IAM & Admin. In the Quotas section you can filter on Service = Cloud Runtime Configuration API and you should see all the quotas and how close to those you are for this API. There are 4 quotas that may affect you (docs here):




                  • 1200 Queries Per Minute (QPM) for delete, create, and update requests

                  • 600 QPM for watch requests

                  • 6000 QPM for get and list requests.

                  • 4MB of data per project, which consists of all data written to the Runtime Configurator service and accompanying metadata.


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 27 '18 at 9:10









                  yoapeyoape

                  2,84011025




                  2,84011025

























                      0














                      We had the exact same issue on November 20th when a large amount of our preemptibles were reallocated at the same time.



                      Our startup-scripts make use of the gcloud beta runtime-config...-commands and they all responded with 503.
                      These commands responded correctly again after a few hours.



                      We have had a support-ticket with Google and there was a problem with their internal quota mechanisms at the time which since is fixed so the issue is resolved.






                      share|improve this answer


























                        0














                        We had the exact same issue on November 20th when a large amount of our preemptibles were reallocated at the same time.



                        Our startup-scripts make use of the gcloud beta runtime-config...-commands and they all responded with 503.
                        These commands responded correctly again after a few hours.



                        We have had a support-ticket with Google and there was a problem with their internal quota mechanisms at the time which since is fixed so the issue is resolved.






                        share|improve this answer
























                          0












                          0








                          0






                          We had the exact same issue on November 20th when a large amount of our preemptibles were reallocated at the same time.



                          Our startup-scripts make use of the gcloud beta runtime-config...-commands and they all responded with 503.
                          These commands responded correctly again after a few hours.



                          We have had a support-ticket with Google and there was a problem with their internal quota mechanisms at the time which since is fixed so the issue is resolved.






                          share|improve this answer












                          We had the exact same issue on November 20th when a large amount of our preemptibles were reallocated at the same time.



                          Our startup-scripts make use of the gcloud beta runtime-config...-commands and they all responded with 503.
                          These commands responded correctly again after a few hours.



                          We have had a support-ticket with Google and there was a problem with their internal quota mechanisms at the time which since is fixed so the issue is resolved.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 28 '18 at 7:33









                          AntelAntel

                          1




                          1






























                              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.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • 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%2f53396229%2fgoogles-runtimeconfig-api-responds-with-our-systems-have-detected-unusual-traf%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

                              If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                              Alcedinidae

                              Can an atomic nucleus contain both particles and antiparticles? [duplicate]