Module: Amigo::DurableJob
- Extended by:
- Sidekiq::Component
- Includes:
- Appydays::Configurable
- Included in:
- Webhookdb::Jobs::Backfill, Webhookdb::Jobs::BackoffShouldBeRescheduled, Webhookdb::Jobs::DurableSleeper, Webhookdb::Jobs::OrganizationDatabaseMigrationRun, Webhookdb::Jobs::PrepareDatabaseConnections, Webhookdb::Jobs::ProcessWebhook, Webhookdb::Jobs::SendWebhook, Webhookdb::Jobs::WebhookSubscriptionDeliveryEvent
- Defined in:
- lib/amigo/durable_job.rb
Overview
Durable jobs keep track of the job in a database, similar to DelayedJob, so that if Sidekiq loses the job (because Redis crashes, or the worker crashes), it will be sent to the Dead Set from the database.
We send ‘missing’ jobs to the Dead Set, rather than re-enqueue them, because jobs may be deleted out of Redis manually, so any re-enqueues of a missing job must also be done manually.
An alternative to durable jobs is super_fetch using something like Redis’ LMOVE; however the only off-the-shelf package we could find (from Gitlab) did not work well. We could implement our own LMOVE based fetch strategy, but using PG was a lot simpler to get going (selection is easier, for example, than managing Redis sorted sets). Additionally, using PG gives us redundancy against Redis outages- it allows us to enqueue jobs even if Redis is down, for example.
The way Durable Jobs works at a high level is:
-
Connections to a series of database servers are held. These servers act as the ‘durable stores’ for Redis.
-
In client middleware, a row is written into the first available durable store database. Every row records when it should be considered “dead”; that is, after this time, DurableJob moves this job to the Dead Set, as explained below. This is known as the “assume dead at” time; the difference between when a job is enqueued/runs, and when it can be assumed dead, is known as the “heartbeat extension”.
-
Whenever the job runs, server middleware takes a lock on the durable store row, and updates assume_dead_at to be “now plus heartbeat_extension”. This is true when the job runs the first time, but also during any retry.
-
Any long-running jobs should be sure to call DurableJob.heartbeat to extend the assume_dead_at, so we don’t attempt to enqueue another instance of the job (actually we probably won’t end up with duplicate jobs, but it’s a good optimization).
-
If the job succeeds, the row is deleted from the durable store.
-
If the job errors, assume_dead_at is updated, and the row remains in the durable store.
That is the behavior of the durable jobs themselves. The other key piece here is a poller. The poller must use a separate periodic mechanism, like sidekiq-cron or whatever. Some number of minutes, ‘Amigo::DurableJob.poll_jobs` must be called. `poll_jobs` does the following at a high level (see the source for more details):
-
Look through each durable store database.
-
For each job with an assume_dead_at in the past, we need to check whether we should kill it.
-
If the job is currently processing in a queue, we no-op. We can’t do anything about backed-up queues.
-
If the job is currently in the retry set, we update the assume_dead_at of the row so it’s after the time the job will be retried. That way we won’t try and process the job again until after it’s been retried.
-
If the job is in the DeadSet, we delete the row since it’s already dead.
-
If the job cannot be found in any of these places, we mark it ‘missing’. It may be missing because it’s processing; we’ll find out on the next run.
-
If the job still cannot be found, it’s added to the DeadSet.
Note that DurableJob is subject to race conditions, and a job can be enqueued and then run multiple times. This is an expected part of Sidekiq- your jobs should already be idempotent so this race should not be an issue. There are (hopefully) no situations where the race condition will result in jobs being lost, just processed multiple times.
Defined Under Namespace
Modules: ClassMethods Classes: ClientMiddleware, ServerMiddleware
Class Attribute Summary collapse
-
.failure_notifier ⇒ Object
Returns the value of attribute failure_notifier.
-
.storage_database_urls ⇒ Object
Returns the value of attribute storage_database_urls.
-
.storage_databases ⇒ Object
Returns the value of attribute storage_databases.
-
.table_fqn ⇒ Object
Returns the value of attribute table_fqn.
Class Method Summary collapse
- .enabled? ⇒ Boolean
- .ensure_jobs_tables(drop: false) ⇒ Object
- .heartbeat(now: nil) ⇒ Object
- .heartbeat!(now: nil) ⇒ Object
- .included(cls) ⇒ Object
- .insert_job(job_class, job_id, item, queue: "default", more: {}) ⇒ Object
- .lock_job(job_id, heartbeat_extension) ⇒ Object
- .poll_jobs(joblike, now: Time.now, skip_queue_size: 500, max_page_size: 2000) ⇒ Object
- .reconnect ⇒ Object
-
.replace_database_settings(new_settings) ⇒ Object
Reconnect to all databases using the given settings.
-
.set_database_setting(key, value) ⇒ Object
Set a field on the underlying storage databases, such as :logger or :sql_log_level.
- .storage_datasets ⇒ Object
- .unlock_job(dataset, job_id, heartbeat_extension, **fields) ⇒ Object
Class Attribute Details
.failure_notifier ⇒ Object
Returns the value of attribute failure_notifier.
82 83 84 |
# File 'lib/amigo/durable_job.rb', line 82 def failure_notifier @failure_notifier end |
.storage_database_urls ⇒ Object
Returns the value of attribute storage_database_urls.
82 83 84 |
# File 'lib/amigo/durable_job.rb', line 82 def storage_database_urls @storage_database_urls end |
.storage_databases ⇒ Object
Returns the value of attribute storage_databases.
82 83 84 |
# File 'lib/amigo/durable_job.rb', line 82 def storage_databases @storage_databases end |
.table_fqn ⇒ Object
Returns the value of attribute table_fqn.
82 83 84 |
# File 'lib/amigo/durable_job.rb', line 82 def table_fqn @table_fqn end |
Class Method Details
.enabled? ⇒ Boolean
338 339 340 |
# File 'lib/amigo/durable_job.rb', line 338 def enabled? return self.enabled end |
.ensure_jobs_tables(drop: false) ⇒ Object
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/amigo/durable_job.rb', line 116 def ensure_jobs_tables(drop: false) self.storage_databases.map do |db| db.drop_table?(self.table_fqn) if drop db.create_table(self.table_fqn, if_not_exists: true) do # Acts as primary key text :job_id, null: false, unique: true # Class name, pulled out of the item json for convenience text :job_class, null: false # Smaller footprint than jsonb, and we don't need to use json operators text :job_item_json, null: false # We must store this so we know where to look for the job # NOTE: If a job were to change queues, this *may* cause an issue. # But it is hard to test, and we're unlikely to see it, AND in the worst case # it'd be a duplicate job, none of which seem critical to solve for now. text :queue, null: false :inserted_at, null: false, default: Sequel.function(:now) # Set this so we know when we should check for a dead worker # This must always be set, since if the worker to get the job segfaults # after taking the job, but before locking it, it will sit empty. :assume_dead_at, null: false # We may need to index this, but since it's a write-heavy table, # that should not get so big, let's leave it out for now. # index :assume_dead_at # Worker performing the job text :locked_by # Set when a worker takes a job :locked_at # The first time we cannot find the job, we report it missing rather than treating it as gone. :missing_at end end end |
.heartbeat(now: nil) ⇒ Object
221 222 223 224 225 226 227 228 229 |
# File 'lib/amigo/durable_job.rb', line 221 def heartbeat(now: nil) return unless self.enabled? now ||= Time.now active_worker, ds = Thread.current[:durable_job_active_job] return nil if active_worker.nil? assume_dead_at = now + active_worker.class.heartbeat_extension ds.where(job_id: active_worker.jid).update(assume_dead_at:) return assume_dead_at end |
.heartbeat!(now: nil) ⇒ Object
231 232 233 234 235 236 |
# File 'lib/amigo/durable_job.rb', line 231 def heartbeat!(now: nil) return unless self.enabled? assume_dead_at = self.heartbeat(now:) return assume_dead_at if assume_dead_at raise "DurableJob.heartbeat called but no durable job is in TLS" end |
.included(cls) ⇒ Object
77 78 79 |
# File 'lib/amigo/durable_job.rb', line 77 def self.included(cls) cls.extend ClassMethods end |
.insert_job(job_class, job_id, item, queue: "default", more: {}) ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/amigo/durable_job.rb', line 154 def insert_job(job_class, job_id, item, queue: "default", more: {}) raise Webhookdb::InvalidPrecondition, "not enabled" unless self.enabled? item = item.dup item["class"] = job_class.to_s job_run_at = item.key?("at") ? Time.at(item["at"]) : Time.now assume_dead_at = job_run_at + job_class.heartbeat_extension inserted = self.storage_datasets.any? do |ds| job_item_json = item.to_json begin ds. insert_conflict( target: :job_id, # Update the job item JSON with the latest details. # This is helpful if the job goes away. update: {assume_dead_at:, job_item_json:}, ).insert( job_id:, job_class: job_class.to_s, job_item_json:, assume_dead_at:, # We cannot use get_sidekiq_options, since that is static. We need to pass in the queue, # which can be set dynamically. queue:, **more, ) rescue Sequel::DatabaseConnectionError => e # Once this is in Amigo, use its logging system Sidekiq.logger.warn "DurableJob: #{job_class}: insert failed: #{e}" next end true end return if inserted Sidekiq.logger.error "DurableJob: #{job_class}: no database available to insert" end |
.lock_job(job_id, heartbeat_extension) ⇒ Object
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/amigo/durable_job.rb', line 190 def lock_job(job_id, heartbeat_extension) raise Webhookdb::InvalidPrecondition, "not enabled" unless self.enabled? self.storage_datasets.each do |ds| begin row = ds[job_id:] rescue Sequel::DatabaseConnectionError next nil end next nil if row.nil? now = Time.now new_fields = { locked_by: self.identity, locked_at: now, assume_dead_at: now + heartbeat_extension, } row.merge!(new_fields) ds.where(job_id:).update(**new_fields) return [ds, row] end return nil end |
.poll_jobs(joblike, now: Time.now, skip_queue_size: 500, max_page_size: 2000) ⇒ Object
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/amigo/durable_job.rb', line 238 def poll_jobs(joblike, now: Time.now, skip_queue_size: 500, max_page_size: 2000) return unless self.enabled? # There is a global retry set we can use across all queues. # If it's too big, don't bother polling jobs. # Note, this requires we don't let our retry set grow too large... retryset = Sidekiq::RetrySet.new if (rssize = retryset.size) >= skip_queue_size Amigo.log(joblike, :warn, "poll_jobs_retry_set_too_large", {size: rssize}) return end deadset = Sidekiq::DeadSet.new if (dssize = deadset.size) >= skip_queue_size Amigo.log(joblike, :warn, "poll_jobs_dead_set_too_large", {size: dssize}) return end retries_by_jid = retryset.to_h { |r| [r.jid, r] } deadset_jids = Set.new(deadset.map(&:jid)) class_cache = {} self.storage_datasets.each do |ds| # To avoid big memory usage, process a limited number of items. all_rows_to_check = ds.where { assume_dead_at <= now }. select(:job_id, :job_class, :queue, :job_item_json, :missing_at). order(:assume_dead_at). limit(max_page_size). all if all_rows_to_check.size == max_page_size # If we're super backed up, don't bother polling. Amigo.log(joblike, :warn, "poll_jobs_max_page_size_reached", {}) end # All our expired rows belong to one of any number of queues. # We should process grouped by queue so we only need to look through each queue once. by_queues = all_rows_to_check.group_by { |r| r[:queue] } by_queues.each do |queue, rows_to_check| q = Sidekiq::Queue.new(queue) if (qsize = q.size) >= skip_queue_size Amigo.log(joblike, :warn, "poll_jobs_queue_size_too_large", {size: qsize}) next end all_jids_in_queue = Set.new(q.map(&:jid)) rows_to_check.each do |row| job_class = row[:job_class] job_id = row[:job_id] cls = class_cache[job_class] ||= const_get(job_class) # We may want to switch this to bulk operations, # but it can get pretty challenging to reason about. dswhere = ds.where(job_id:) if all_jids_in_queue.include?(job_id) # If a job is in the queue, it means it's waiting to be processed. # Bump the deadline and keep going. Amigo.log(joblike, :debug, "poll_jobs_extending_heartbeat", {job_id:, job_class:}) dswhere.update(missing_at: nil, assume_dead_at: now + cls.heartbeat_extension) elsif (retry_record = retries_by_jid[job_id]) # If a job is in the retry set, we don't need to bother checking # until the retry is ready. If we retry ahead of time, that's fine- # if the job succeeds, it'll delete the durable job row, if it fails, # it'll overwrite assume_dead_at and we'll get back here. Amigo.log(joblike, :debug, "poll_jobs_found_in_retry_set", {job_id:, job_class:}) dswhere.update(missing_at: nil, assume_dead_at: retry_record.at + cls.heartbeat_extension) elsif deadset_jids.include?(job_id) # If a job moved to the dead set, we can delete the PG row. # When we do the retry from the dead set, it'll push a new job to PG. Amigo.log(joblike, :info, "poll_jobs_found_in_dead_set", {job_id:, job_class:}) dswhere.delete else # The job was not found for one of the following reasons: # - The job is actively processing (is not in Redis while this happens). # - There's an inherent race condition if we try to check workers; # so instead, if this is the first time the job is missing, # we assume it's because it's processing, # and only treat the job as lost the next time we cannot find it. # - The job was manually deleted (web UI or console). # - We can't know this happened, so have to treat it like a lost job, # and send it to the dead set. We can get around this by only deleting jobs from the dead set, # rather than the retry set. # - The job was never sent to Sidekiq. # - We need to handle it. # - The job was lost while processing, like due to a segfault. # - We need to handle it. # item = JSON.parse(row[:job_item_json]) item["jid"] ||= job_id if row[:missing_at] item["durable_killed_at"] = now Amigo.log(joblike, :warn, "poll_jobs_handling_failed_job", {job_id:, job_class:}) Amigo::DurableJob.failure_notifier&.call(item) deadset.kill(item.to_json, notify_failure: Amigo::DurableJob.failure_notifier.nil?) dswhere.delete else Amigo.log(joblike, :debug, "poll_jobs_setting_job_missing", {job_id:, job_class:}) # We want to look again at the next scheduled heartbeat, since this may just be a slow job # that didn't check in frequently enough. In the future, we could warn about it if # we end up finding a row with missing_at set, but for now it's unlikely so not worth it. dswhere.update(missing_at: now, assume_dead_at: now + cls.heartbeat_extension) end end end end end end |
.reconnect ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/amigo/durable_job.rb', line 103 def reconnect self.storage_databases&.each(&:disconnect) settings = @database_settings || {} self.storage_databases = self.storage_database_urls.map do |url| Sequel.connect( url, keep_reference: false, test: false, **settings, ) end end |
.replace_database_settings(new_settings) ⇒ Object
Reconnect to all databases using the given settings. Settings persist across resets.
98 99 100 101 |
# File 'lib/amigo/durable_job.rb', line 98 def replace_database_settings(new_settings) @database_settings = new_settings self.reconnect end |
.set_database_setting(key, value) ⇒ Object
Set a field on the underlying storage databases, such as :logger or :sql_log_level. This value is set immediately on all storage databases, and persists across resets. NOTE: Some fields, like max_connections, can only be set on connect. Use replace_database_settings for this instead.
90 91 92 93 94 |
# File 'lib/amigo/durable_job.rb', line 90 def set_database_setting(key, value) @database_settings ||= {} @database_settings[key] = value self.storage_databases.each { |db| db.send(:"#{key}=", value) } end |
.storage_datasets ⇒ Object
150 151 152 |
# File 'lib/amigo/durable_job.rb', line 150 def storage_datasets return self.storage_databases.map { |db| db[self.table_fqn] } end |
.unlock_job(dataset, job_id, heartbeat_extension, **fields) ⇒ Object
212 213 214 215 216 217 218 219 |
# File 'lib/amigo/durable_job.rb', line 212 def unlock_job(dataset, job_id, heartbeat_extension, **fields) dataset.where(job_id:).update( locked_by: nil, locked_at: nil, assume_dead_at: Time.now + heartbeat_extension, **fields, ) end |