delayed 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +9 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ab35af5acde370d84971fff4e2aad4a6903a790fc42787917c0ee018a227077
4
- data.tar.gz: 792234868782d73f6960127f06293020cd11ad32680074b6bcabee2db7a8a383
3
+ metadata.gz: 233aee5d70dc333c1f8b92b2121122347acb3f990160defcf26177bd43c0fec3
4
+ data.tar.gz: 2c8de733b29a13cdce8366553ab7ded8c1c7f35ec61379383fd7fd6ab7b74bd0
5
5
  SHA512:
6
- metadata.gz: 9af114801499f370343a41cffe87151509882d62973c61a0c7d82ecc4395ffbad35d15b1715309813dfacfb543d14b11e8d8ac829003fbf5892e1639dff7b387
7
- data.tar.gz: c4e80bd8917d15eb9b4c67736571d349002945f9d8f621b5e7a2da5db179f6a7cbc18da09fa831af21cccbfacf1beec56bda3914d1d44c133d2fdb4858834c09
6
+ metadata.gz: 352c435b138f4f5b0959dd3100bd31ef72bbe723f54439cfd100ac0b083cab5991cafabeaa4ffd6b50165b425200d552033040e305fd1bd0e4e1ad9b11ce14da
7
+ data.tar.gz: 3646bb64ad953c3c6433b8415ad1d47092acfc12bfded294b4d56d8bedbf44277835ae64f3c26b90a875430f6d1e517176d8afd566ca4a99b3994977e98f55ba
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: delayed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Griffith
@@ -19,7 +19,7 @@ authors:
19
19
  autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
- date: 2021-08-17 00:00:00.000000000 Z
22
+ date: 2021-08-19 00:00:00.000000000 Z
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: activerecord
@@ -204,18 +204,12 @@ dependencies:
204
204
  - !ruby/object:Gem::Version
205
205
  version: '0'
206
206
  description: |
207
- ===== +Delayed+ is a multi-threaded, SQL-driven ActiveJob backend used at {Betterment}[https://betterment.com] to process millions of background jobs per day.
208
-
209
- It supports *postgres*, *mysql*, and *sqlite*, and is designed to be:
210
-
211
- - *Reliable*, with co-transactional job enqueues and guaranteed, at-least-once execution
212
- - *Scalable*, with an optimized pickup query and concurrent job execution
213
- - *Resilient*, with built-in retry mechanisms, exponential backoff, and failed job preservation
214
- - *Maintainable*, with robust instrumentation, continuous monitoring, and priority-based alerting
215
-
216
- For an overview of how Betterment uses +delayed+ to build resilience into distributed systems, check
217
- out the talk ✨{Can I break this?}[https://www.youtube.com/watch?v=TuhS13rBoVY]✨ given at RailsConf
218
- 2021!
207
+ Delayed is a multi-threaded, SQL-driven ActiveJob backend used at Betterment to process millions
208
+ of background jobs per day. It supports postgres, mysql, and sqlite, and is designed to be
209
+ Reliable (with co-transactional job enqueues and guaranteed, at-least-once execution), Scalable
210
+ (with an optimized pickup query and concurrent job execution), Resilient (with built-in retry
211
+ mechanisms, exponential backoff, and failed job preservation), and Maintainable (with robust
212
+ instrumentation, continuous monitoring, and priority-based alerting).
219
213
  email:
220
214
  - nathan@betterment.com
221
215
  executables: []
@@ -297,7 +291,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
297
291
  - !ruby/object:Gem::Version
298
292
  version: '0'
299
293
  requirements: []
300
- rubygems_version: 3.2.25
294
+ rubygems_version: 3.2.26
301
295
  signing_key:
302
296
  specification_version: 4
303
297
  summary: a multi-threaded, SQL-driven ActiveJob backend used at Betterment to process