Class: Google::Cloud::Eventarc::V1::Pipeline::RetryPolicy

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/eventarc/v1/pipeline.rb

Overview

The retry policy configuration for the Pipeline. The pipeline exponentially backs off in case the destination is non responsive or returns a retryable error code. The default semantics are as follows: The backoff starts with a 5 second delay and doubles the delay after each failed attempt (10 seconds, 20 seconds, 40 seconds, etc.). The delay is capped at 60 seconds by default. Please note that if you set the min_retry_delay and max_retry_delay fields to the same value this will make the duration between retries constant.

Instance Attribute Summary collapse

Instance Attribute Details

#max_attempts::Integer

Returns Optional. The maximum number of delivery attempts for any message. The value must be between 1 and 100. The default value for this field is 5.

Returns:

  • (::Integer)

    Optional. The maximum number of delivery attempts for any message. The value must be between 1 and 100. The default value for this field is 5.



557
558
559
560
# File 'proto_docs/google/cloud/eventarc/v1/pipeline.rb', line 557

class RetryPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#max_retry_delay::Google::Protobuf::Duration

Returns Optional. The maximum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 60.

Returns:

  • (::Google::Protobuf::Duration)

    Optional. The maximum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 60.



557
558
559
560
# File 'proto_docs/google/cloud/eventarc/v1/pipeline.rb', line 557

class RetryPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end

#min_retry_delay::Google::Protobuf::Duration

Returns Optional. The minimum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 5.

Returns:

  • (::Google::Protobuf::Duration)

    Optional. The minimum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 5.



557
558
559
560
# File 'proto_docs/google/cloud/eventarc/v1/pipeline.rb', line 557

class RetryPolicy
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end