Class: Aws::Rails::SqsActiveJob::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/aws/rails/sqs_active_job/configuration.rb

Overview

Configuration for AWS SQS ActiveJob. Use Aws::Rails::SqsActiveJob.config to access the singleton config instance.

Constant Summary collapse

DEFAULTS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Default configuration options

{
  max_messages:  10,
  visibility_timeout: 120,
  shutdown_timeout: 15,
  queues: {},
  logger: ::Rails.logger
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Configuration

Don’t use this method directly: Confugration is a singleton class, use Aws::Rails::SqsActiveJob.config to access the singleton config.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :queues (Hash[Symbol, String])

    A mapping between the active job queue name and the SQS Queue URL. Note: multiple active job queues can map to the same SQS Queue URL.

  • :max_messages (Integer)

    The max number of messages to poll for in a batch.

  • :visibility_timeout (Integer)

    The visibility timeout is the number of seconds that a message will not be processable by any other consumers. You should set this value to be longer than your expected job runtime to prevent other processes from picking up an running job. See the (SQS Visibility Timeout Documentation)

  • :shutdown_timeout (Integer)

    the amount of time to wait for a clean shutdown. Jobs that are unable to complete in this time will not be deleted from the SQS queue and will be retryable after the visibility timeout.

  • :logger (ActiveSupport::Logger)

    Logger to use for the poller.

  • :config_file (String)

    Override file to load configuration from. If not specified will attempt to load from config/aws_sqs_active_job.yml.

  • :async_queue_error_handler (Callable)

    An error handler to be called when the async active job adapter experiances an error queueing a job. Only applies when active_job.queue_adapter = :amazon_sqs_async. Called with:

    error, job, job_options
  • :client (SQS::Client)

    SQS Client to use. A default client will be created if none is provided.



74
75
76
77
78
79
80
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 74

def initialize(options = {})
  options[:config_file] ||= config_file if config_file.exist?
  options = DEFAULTS
     .merge(file_options(options))
     .merge(options)
  set_attributes(options)
end

Instance Attribute Details

#async_queue_error_handlerObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def async_queue_error_handler
  @async_queue_error_handler
end

#clientObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def client
  @client
end

#loggerObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def logger
  @logger
end

#max_messagesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def max_messages
  @max_messages
end

#queuesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def queues
  @queues
end

#shutdown_timeoutObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def shutdown_timeout
  @shutdown_timeout
end

#visibility_timeoutObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



32
33
34
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 32

def visibility_timeout
  @visibility_timeout
end

Instance Method Details

#queue_url_for(job_queue) ⇒ Object

Return the queue_url for a given job_queue name

Raises:

  • (ArgumentError)


87
88
89
90
91
92
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 87

def queue_url_for(job_queue)
  job_queue = job_queue.to_sym
  raise ArgumentError, "No queue defined for #{job_queue}" unless queues.key? job_queue

  queues[job_queue.to_sym]
end

#to_hObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



100
101
102
103
104
105
106
107
108
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 100

def to_h
  h = {}
  self.instance_variables.each do |v|
    v_sym = v.to_s.gsub('@', '').to_sym
    val = self.instance_variable_get(v)
    h[v_sym] = val
  end
  h
end

#to_sObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



95
96
97
# File 'lib/aws/rails/sqs_active_job/configuration.rb', line 95

def to_s
  to_h.to_s
end