--- v17/errors/quota_error.proto 2024-10-17 03:48:50.000000000 +0000 +++ v18/errors/quota_error.proto 2024-10-17 03:48:55.000000000 +0000 @@ -45,5 +45,13 @@ // Too many requests in a short amount of time. RESOURCE_TEMPORARILY_EXHAUSTED = 4; + + // Too many expensive requests from query pattern over a short amount of + // time. + EXCESSIVE_SHORT_TERM_QUERY_RESOURCE_CONSUMPTION = 5; + + // Too many expensive requests from query pattern over an extended duration + // of time. + EXCESSIVE_LONG_TERM_QUERY_RESOURCE_CONSUMPTION = 6; } }
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-17 UTC.
[null,null,["Last updated 2024-10-17 UTC."],[[["The update introduces two new quota error codes: `EXCESSIVE_SHORT_TERM_QUERY_RESOURCE_CONSUMPTION` and `EXCESSIVE_LONG_TERM_QUERY_RESOURCE_CONSUMPTION`."],["These new codes address scenarios where query patterns consume excessive resources over short or extended periods."],["`RESOURCE_TEMPORARILY_EXHAUSTED` remains for scenarios involving too many requests in a short time, unchanged by this update."]]],[]]