Class: Gcloud::Backoff
- Inherits:
-
Object
- Object
- Gcloud::Backoff
- Defined in:
- lib/gcloud/backoff.rb
Overview
Backoff allows users to control how Google API calls are retried. If an API call fails the response will be checked to see if the call can be retried. If the response matches the criteria, then it will be retried with an incremental backoff. This means that an increasing delay will be added between each retried call. The first retry will be delayed one second, the second retry will be delayed two seconds, and so on.
Class Attribute Summary collapse
-
.backoff ⇒ Object
The code to run when a backoff is handled.
-
.grpc_codes ⇒ Object
The GRPC Status Codes that should be retried.
-
.http_codes ⇒ Object
The HTTP Status Codes that should be retried.
-
.reasons ⇒ Object
The Google API error reasons that should be retried.
-
.retries ⇒ Object
The number of times a retriable API call should be retried.
Instance Method Summary collapse
- #execute_gapi ⇒ Object
- #execute_grpc ⇒ Object
-
#initialize(options = {}) ⇒ Backoff
constructor
Creates a new Backoff object to catch common errors when calling the Google API and handle the error by retrying the call.
Constructor Details
#initialize(options = {}) ⇒ Backoff
83 84 85 86 87 88 89 |
# File 'lib/gcloud/backoff.rb', line 83 def initialize = {} @retries = ([:retries] || Backoff.retries).to_i @grpc_codes = ([:grpc_codes] || Backoff.grpc_codes).to_a @http_codes = ([:http_codes] || Backoff.http_codes).to_a @reasons = ([:reasons] || Backoff.reasons).to_a @backoff = [:backoff] || Backoff.backoff end |
Class Attribute Details
.backoff ⇒ Object
The code to run when a backoff is handled. This must be a Proc and must take the number of retries as an argument.
Note: This method is undocumented and may change.
64 65 66 |
# File 'lib/gcloud/backoff.rb', line 64 def backoff @backoff end |
.grpc_codes ⇒ Object
The GRPC Status Codes that should be retried.
The default values are 14.
43 44 45 |
# File 'lib/gcloud/backoff.rb', line 43 def grpc_codes @grpc_codes end |
.http_codes ⇒ Object
The HTTP Status Codes that should be retried.
The default values are 500 and 503.
49 50 51 |
# File 'lib/gcloud/backoff.rb', line 49 def http_codes @http_codes end |
.reasons ⇒ Object
The Google API error reasons that should be retried.
The default values are rateLimitExceeded and userRateLimitExceeded.
56 57 58 |
# File 'lib/gcloud/backoff.rb', line 56 def reasons @reasons end |
.retries ⇒ Object
The number of times a retriable API call should be retried.
The default value is 3.
37 38 39 |
# File 'lib/gcloud/backoff.rb', line 37 def retries @retries end |
Instance Method Details
#execute_gapi ⇒ Object
92 93 94 95 96 97 98 99 100 101 |
# File 'lib/gcloud/backoff.rb', line 92 def execute_gapi current_retries = 0 loop do result = yield return result unless result.is_a? Google::APIClient::Result break result if result.success? || !retry?(result, current_retries) current_retries += 1 @backoff.call current_retries end end |
#execute_grpc ⇒ Object
104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/gcloud/backoff.rb', line 104 def execute_grpc current_retries = 0 loop do begin return yield rescue GRPC::BadStatus => e raise e unless @grpc_codes.include?(e.code) && (current_retries < @retries) current_retries += 1 @backoff.call current_retries end end end |