Module: Roundhouse
- Defined in:
- lib/roundhouse.rb,
lib/roundhouse/api.rb,
lib/roundhouse/cli.rb,
lib/roundhouse/web.rb,
lib/roundhouse/util.rb,
lib/roundhouse/actor.rb,
lib/roundhouse/fetch.rb,
lib/roundhouse/rails.rb,
lib/roundhouse/client.rb,
lib/roundhouse/worker.rb,
lib/roundhouse/logging.rb,
lib/roundhouse/manager.rb,
lib/roundhouse/monitor.rb,
lib/roundhouse/testing.rb,
lib/roundhouse/version.rb,
lib/roundhouse/launcher.rb,
lib/roundhouse/paginator.rb,
lib/roundhouse/processor.rb,
lib/roundhouse/scheduled.rb,
lib/roundhouse/web_helpers.rb,
lib/roundhouse/middleware/chain.rb,
lib/roundhouse/redis_connection.rb,
lib/roundhouse/exception_handler.rb,
lib/roundhouse/middleware/server/logging.rb,
lib/generators/roundhouse/worker_generator.rb,
lib/roundhouse/middleware/server/retry_jobs.rb,
lib/roundhouse/middleware/server/active_record.rb
Defined Under Namespace
Modules: Actor, ExceptionHandler, Generators, Logging, Middleware, Paginator, Scheduled, Util, WebHelpers, Worker
Classes: CLI, Client, DeadSet, EmptyQueueError, Fetcher, Job, JobSet, Launcher, Manager, Monitor, Process, ProcessSet, Processor, Queue, RedisConnection, RetrySet, RoundRobinFetch, ScheduledSet, Shutdown, SortedEntry, SortedSet, Stats, Testing, Web, Workers
Constant Summary
collapse
- NAME =
'Roundhouse'
- LICENSE =
'See LICENSE and the LGPL-3.0 for licensing details.'
- DEFAULTS =
{
queues: [],
labels: [],
concurrency: 25,
require: '.',
environment: nil,
timeout: 8,
poll_interval_average: nil,
average_scheduled_poll_interval: 15,
error_handlers: [],
lifecycle_events: {
startup: [],
quiet: [],
shutdown: [],
},
dead_max_jobs: 10_000,
dead_timeout_in_seconds: 180 * 24 * 60 * 60
}
- DEFAULT_WORKER_OPTIONS =
{
'retry' => true,
'queue' => 'default'
}
- VERSION =
"0.1.0"
Class Method Summary
collapse
Class Method Details
.average_scheduled_poll_interval=(interval) ⇒ Object
How frequently Redis should be checked by a random Roundhouse process for scheduled and retriable jobs. Each individual process will take turns by waiting some multiple of this value.
See roundhouse/scheduled.rb for an in-depth explanation of this value
147
148
149
|
# File 'lib/roundhouse.rb', line 147
def self.average_scheduled_poll_interval=(interval)
self.options[:average_scheduled_poll_interval] = interval
end
|
.client_middleware {|@client_chain| ... } ⇒ Object
96
97
98
99
100
|
# File 'lib/roundhouse.rb', line 96
def self.client_middleware
@client_chain ||= Middleware::Chain.new
yield @client_chain if block_given?
@client_chain
end
|
Configuration for Roundhouse client, use like:
Roundhouse.configure_client do |config|
config.redis = { :namespace => 'myapp', :size => 1, :url => 'redis://myhost:8877/0' }
end
71
72
73
|
# File 'lib/roundhouse.rb', line 71
def self.configure_client
yield self unless server?
end
|
Configuration for Roundhouse server, use like:
Roundhouse.configure_server do |config|
config.redis = { :namespace => 'myapp', :size => 25, :url => 'redis://myhost:8877/0' }
config.server_middleware do |chain|
chain.add MyServerHook
end
end
61
62
63
|
# File 'lib/roundhouse.rb', line 61
def self.configure_server
yield self if server?
end
|
.default_worker_options ⇒ Object
112
113
114
|
# File 'lib/roundhouse.rb', line 112
def self.default_worker_options
defined?(@default_worker_options) ? @default_worker_options : DEFAULT_WORKER_OPTIONS
end
|
.default_worker_options=(hash) ⇒ Object
108
109
110
|
# File 'lib/roundhouse.rb', line 108
def self.default_worker_options=(hash)
@default_worker_options = default_worker_options.merge(hash.stringify_keys)
end
|
.dump_json(object) ⇒ Object
120
121
122
|
# File 'lib/roundhouse.rb', line 120
def self.dump_json(object)
JSON.generate(object)
end
|
.error_handlers ⇒ Object
Register a proc to handle any error which occurs within the Roundhouse process.
Roundhouse.configure_server do |config|
config.error_handlers << proc {|ex,ctx_hash| MyErrorService.notify(ex, ctx_hash) }
end
The default error handler logs errors to Roundhouse.logger.
158
159
160
|
# File 'lib/roundhouse.rb', line 158
def self.error_handlers
self.options[:error_handlers]
end
|
.hook_rails! ⇒ Object
2
3
4
5
6
7
|
# File 'lib/roundhouse/rails.rb', line 2
def self.hook_rails!
end
|
.load_json(string) ⇒ Object
116
117
118
|
# File 'lib/roundhouse.rb', line 116
def self.load_json(string)
JSON.parse(string)
end
|
.logger ⇒ Object
124
125
126
|
# File 'lib/roundhouse.rb', line 124
def self.logger
Roundhouse::Logging.logger
end
|
.logger=(log) ⇒ Object
128
129
130
|
# File 'lib/roundhouse.rb', line 128
def self.logger=(log)
Roundhouse::Logging.logger = log
end
|
.on(event, &block) ⇒ Object
Register a block to run at a point in the Roundhouse lifecycle. :startup, :quiet or :shutdown are valid events.
Roundhouse.configure_server do |config|
config.on(:shutdown) do
puts "Goodbye cruel world!"
end
end
170
171
172
173
174
|
# File 'lib/roundhouse.rb', line 170
def self.on(event, &block)
raise ArgumentError, "Symbols only please: #{event}" unless event.is_a?(Symbol)
raise ArgumentError, "Invalid event name: #{event}" unless options[:lifecycle_events].key?(event)
options[:lifecycle_events][event] << block
end
|
.options ⇒ Object
44
45
46
|
# File 'lib/roundhouse.rb', line 44
def self.options
@options ||= DEFAULTS.dup
end
|
.options=(opts) ⇒ Object
48
49
50
|
# File 'lib/roundhouse.rb', line 48
def self.options=(opts)
@options = opts
end
|
.poll_interval=(interval) ⇒ Object
When set, overrides Roundhouse.options and sets the average interval that this process will delay before checking for scheduled jobs or job retries that are ready to run.
See roundhouse/scheduled.rb for an in-depth explanation of this value
137
138
139
140
|
# File 'lib/roundhouse.rb', line 137
def self.poll_interval=(interval)
$stderr.puts "DEPRECATION: `config.poll_interval = #{interval}` will be removed in Roundhouse 4. Please update to `config.average_scheduled_poll_interval = #{interval}`."
self.options[:poll_interval_average] = interval
end
|
.redis(&block) ⇒ Object
79
80
81
82
|
# File 'lib/roundhouse.rb', line 79
def self.redis(&block)
raise ArgumentError, "requires a block" unless block
redis_pool.with(&block)
end
|
.redis=(hash) ⇒ Object
88
89
90
91
92
93
94
|
# File 'lib/roundhouse.rb', line 88
def self.redis=(hash)
@redis = if hash.is_a?(ConnectionPool)
hash
else
Roundhouse::RedisConnection.create(hash)
end
end
|
.redis_pool ⇒ Object
84
85
86
|
# File 'lib/roundhouse.rb', line 84
def self.redis_pool
@redis ||= Roundhouse::RedisConnection.create
end
|
.remove_delay! ⇒ Object
Removes the generic aliases which MAY clash with names of already
created methods by other applications. The methods `roundhouse_delay`,
`roundhouse_delay_for` and `roundhouse_delay_until` can be used instead.
12
13
14
15
16
17
|
# File 'lib/roundhouse/rails.rb', line 12
def self.remove_delay!
end
|
.server? ⇒ Boolean
75
76
77
|
# File 'lib/roundhouse.rb', line 75
def self.server?
defined?(Roundhouse::CLI)
end
|
.server_middleware {|@server_chain| ... } ⇒ Object
102
103
104
105
106
|
# File 'lib/roundhouse.rb', line 102
def self.server_middleware
@server_chain ||= Processor.default_middleware
yield @server_chain if block_given?
@server_chain
end
|
.❨╯°□°❩╯︵┻━┻ ⇒ Object
40
41
42
|
# File 'lib/roundhouse.rb', line 40
def self.
|