sidekiq-unique-jobs 4.0.18 → 7.1.28

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq-unique-jobs might be problematic. Click here for more details.

Files changed (296) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1889 -94
  3. data/LICENSE.txt +21 -0
  4. data/README.md +927 -119
  5. data/bin/uniquejobs +7 -0
  6. data/lib/sidekiq-unique-jobs.rb +2 -78
  7. data/lib/sidekiq_unique_jobs/batch_delete.rb +124 -0
  8. data/lib/sidekiq_unique_jobs/changelog.rb +78 -0
  9. data/lib/sidekiq_unique_jobs/cli.rb +79 -21
  10. data/lib/sidekiq_unique_jobs/config.rb +310 -14
  11. data/lib/sidekiq_unique_jobs/connection.rb +23 -0
  12. data/lib/sidekiq_unique_jobs/constants.rb +52 -16
  13. data/lib/sidekiq_unique_jobs/core_ext.rb +114 -33
  14. data/lib/sidekiq_unique_jobs/deprecation.rb +65 -0
  15. data/lib/sidekiq_unique_jobs/digests.rb +111 -0
  16. data/lib/sidekiq_unique_jobs/exceptions.rb +105 -0
  17. data/lib/sidekiq_unique_jobs/expiring_digests.rb +14 -0
  18. data/lib/sidekiq_unique_jobs/job.rb +58 -0
  19. data/lib/sidekiq_unique_jobs/json.rb +47 -0
  20. data/lib/sidekiq_unique_jobs/key.rb +98 -0
  21. data/lib/sidekiq_unique_jobs/lock/base_lock.rb +165 -0
  22. data/lib/sidekiq_unique_jobs/lock/client_validator.rb +28 -0
  23. data/lib/sidekiq_unique_jobs/lock/server_validator.rb +27 -0
  24. data/lib/sidekiq_unique_jobs/lock/until_and_while_executing.rb +65 -7
  25. data/lib/sidekiq_unique_jobs/lock/until_executed.rb +34 -64
  26. data/lib/sidekiq_unique_jobs/lock/until_executing.rb +37 -4
  27. data/lib/sidekiq_unique_jobs/lock/until_expired.rb +42 -0
  28. data/lib/sidekiq_unique_jobs/lock/validator.rb +96 -0
  29. data/lib/sidekiq_unique_jobs/lock/while_executing.rb +53 -35
  30. data/lib/sidekiq_unique_jobs/lock/while_executing_reject.rb +21 -0
  31. data/lib/sidekiq_unique_jobs/lock.rb +338 -6
  32. data/lib/sidekiq_unique_jobs/lock_args.rb +127 -0
  33. data/lib/sidekiq_unique_jobs/lock_config.rb +126 -0
  34. data/lib/sidekiq_unique_jobs/lock_digest.rb +79 -0
  35. data/lib/sidekiq_unique_jobs/lock_info.rb +68 -0
  36. data/lib/sidekiq_unique_jobs/lock_timeout.rb +62 -0
  37. data/lib/sidekiq_unique_jobs/lock_ttl.rb +77 -0
  38. data/lib/sidekiq_unique_jobs/locksmith.rb +383 -0
  39. data/lib/sidekiq_unique_jobs/logging/middleware_context.rb +44 -0
  40. data/lib/sidekiq_unique_jobs/logging.rb +236 -0
  41. data/lib/sidekiq_unique_jobs/lua/delete.lua +51 -0
  42. data/lib/sidekiq_unique_jobs/lua/delete_by_digest.lua +42 -0
  43. data/lib/sidekiq_unique_jobs/lua/delete_job_by_digest.lua +38 -0
  44. data/lib/sidekiq_unique_jobs/lua/find_digest_in_queues.lua +26 -0
  45. data/lib/sidekiq_unique_jobs/lua/lock.lua +99 -0
  46. data/lib/sidekiq_unique_jobs/lua/lock_until_expired.lua +92 -0
  47. data/lib/sidekiq_unique_jobs/lua/locked.lua +35 -0
  48. data/lib/sidekiq_unique_jobs/lua/queue.lua +87 -0
  49. data/lib/sidekiq_unique_jobs/lua/reap_orphans.lua +122 -0
  50. data/lib/sidekiq_unique_jobs/lua/shared/_common.lua +40 -0
  51. data/lib/sidekiq_unique_jobs/lua/shared/_current_time.lua +8 -0
  52. data/lib/sidekiq_unique_jobs/lua/shared/_delete_from_queue.lua +22 -0
  53. data/lib/sidekiq_unique_jobs/lua/shared/_delete_from_sorted_set.lua +18 -0
  54. data/lib/sidekiq_unique_jobs/lua/shared/_find_digest_in_process_set.lua +53 -0
  55. data/lib/sidekiq_unique_jobs/lua/shared/_find_digest_in_queues.lua +43 -0
  56. data/lib/sidekiq_unique_jobs/lua/shared/_find_digest_in_sorted_set.lua +24 -0
  57. data/lib/sidekiq_unique_jobs/lua/shared/_hgetall.lua +13 -0
  58. data/lib/sidekiq_unique_jobs/lua/shared/_upgrades.lua +3 -0
  59. data/lib/sidekiq_unique_jobs/lua/unlock.lua +107 -0
  60. data/lib/sidekiq_unique_jobs/lua/update_version.lua +40 -0
  61. data/lib/sidekiq_unique_jobs/lua/upgrade.lua +68 -0
  62. data/lib/sidekiq_unique_jobs/middleware/client.rb +42 -0
  63. data/lib/sidekiq_unique_jobs/middleware/server.rb +31 -0
  64. data/lib/sidekiq_unique_jobs/middleware.rb +34 -29
  65. data/lib/sidekiq_unique_jobs/normalizer.rb +11 -1
  66. data/lib/sidekiq_unique_jobs/on_conflict/log.rb +24 -0
  67. data/lib/sidekiq_unique_jobs/on_conflict/null_strategy.rb +16 -0
  68. data/lib/sidekiq_unique_jobs/on_conflict/raise.rb +17 -0
  69. data/lib/sidekiq_unique_jobs/on_conflict/reject.rb +118 -0
  70. data/lib/sidekiq_unique_jobs/on_conflict/replace.rb +82 -0
  71. data/lib/sidekiq_unique_jobs/on_conflict/reschedule.rb +35 -0
  72. data/lib/sidekiq_unique_jobs/on_conflict/strategy.rb +51 -0
  73. data/lib/sidekiq_unique_jobs/on_conflict.rb +44 -0
  74. data/lib/sidekiq_unique_jobs/options_with_fallback.rb +54 -31
  75. data/lib/sidekiq_unique_jobs/orphans/lua_reaper.rb +29 -0
  76. data/lib/sidekiq_unique_jobs/orphans/manager.rb +241 -0
  77. data/lib/sidekiq_unique_jobs/orphans/null_reaper.rb +24 -0
  78. data/lib/sidekiq_unique_jobs/orphans/observer.rb +42 -0
  79. data/lib/sidekiq_unique_jobs/orphans/reaper.rb +114 -0
  80. data/lib/sidekiq_unique_jobs/orphans/reaper_resurrector.rb +170 -0
  81. data/lib/sidekiq_unique_jobs/orphans/ruby_reaper.rb +298 -0
  82. data/lib/sidekiq_unique_jobs/redis/entity.rb +112 -0
  83. data/lib/sidekiq_unique_jobs/redis/hash.rb +56 -0
  84. data/lib/sidekiq_unique_jobs/redis/list.rb +32 -0
  85. data/lib/sidekiq_unique_jobs/redis/set.rb +32 -0
  86. data/lib/sidekiq_unique_jobs/redis/sorted_set.rb +86 -0
  87. data/lib/sidekiq_unique_jobs/redis/string.rb +51 -0
  88. data/lib/sidekiq_unique_jobs/redis.rb +11 -0
  89. data/lib/sidekiq_unique_jobs/reflectable.rb +26 -0
  90. data/lib/sidekiq_unique_jobs/reflections.rb +79 -0
  91. data/lib/sidekiq_unique_jobs/rspec/matchers/have_valid_sidekiq_options.rb +51 -0
  92. data/lib/sidekiq_unique_jobs/rspec/matchers.rb +26 -0
  93. data/lib/sidekiq_unique_jobs/script/caller.rb +127 -0
  94. data/lib/sidekiq_unique_jobs/script.rb +15 -0
  95. data/lib/sidekiq_unique_jobs/server.rb +61 -0
  96. data/lib/sidekiq_unique_jobs/sidekiq_unique_ext.rb +116 -104
  97. data/lib/sidekiq_unique_jobs/sidekiq_unique_jobs.rb +304 -0
  98. data/lib/sidekiq_unique_jobs/sidekiq_worker_methods.rb +84 -0
  99. data/lib/sidekiq_unique_jobs/testing.rb +115 -50
  100. data/lib/sidekiq_unique_jobs/timer_task.rb +299 -0
  101. data/lib/sidekiq_unique_jobs/timing.rb +58 -0
  102. data/lib/sidekiq_unique_jobs/unlockable.rb +29 -33
  103. data/lib/sidekiq_unique_jobs/update_version.rb +25 -0
  104. data/lib/sidekiq_unique_jobs/upgrade_locks.rb +155 -0
  105. data/lib/sidekiq_unique_jobs/version.rb +5 -1
  106. data/lib/sidekiq_unique_jobs/version_check.rb +114 -0
  107. data/lib/sidekiq_unique_jobs/web/helpers.rb +173 -0
  108. data/lib/sidekiq_unique_jobs/web/views/_paging.erb +10 -0
  109. data/lib/sidekiq_unique_jobs/web/views/changelogs.erb +54 -0
  110. data/lib/sidekiq_unique_jobs/web/views/lock.erb +108 -0
  111. data/lib/sidekiq_unique_jobs/web/views/locks.erb +54 -0
  112. data/lib/sidekiq_unique_jobs/web.rb +109 -0
  113. data/lib/sidekiq_unique_jobs.rb +81 -0
  114. data/lib/tasks/changelog.rake +23 -0
  115. metadata +173 -251
  116. data/.codeclimate.yml +0 -22
  117. data/.dockerignore +0 -4
  118. data/.editorconfig +0 -14
  119. data/.fasterer.yml +0 -23
  120. data/.gitignore +0 -14
  121. data/.rspec +0 -3
  122. data/.rubocop.yml +0 -45
  123. data/.simplecov +0 -12
  124. data/.travis.yml +0 -43
  125. data/Appraisals +0 -31
  126. data/Gemfile +0 -16
  127. data/LICENSE +0 -13
  128. data/Rakefile +0 -12
  129. data/bin/bench +0 -19
  130. data/bin/jobs +0 -6
  131. data/circle.yml +0 -38
  132. data/gemfiles/sidekiq_2.15.gemfile +0 -9
  133. data/gemfiles/sidekiq_2.16.gemfile +0 -9
  134. data/gemfiles/sidekiq_2.17.gemfile +0 -19
  135. data/gemfiles/sidekiq_3.0.gemfile +0 -19
  136. data/gemfiles/sidekiq_3.1.gemfile +0 -19
  137. data/gemfiles/sidekiq_3.2.gemfile +0 -19
  138. data/gemfiles/sidekiq_3.3.gemfile +0 -19
  139. data/gemfiles/sidekiq_4.0.gemfile +0 -19
  140. data/gemfiles/sidekiq_4.1.gemfile +0 -19
  141. data/gemfiles/sidekiq_develop.gemfile +0 -19
  142. data/lib/sidekiq/simulator.rb +0 -75
  143. data/lib/sidekiq_unique_jobs/client/middleware.rb +0 -41
  144. data/lib/sidekiq_unique_jobs/lock/until_timeout.rb +0 -15
  145. data/lib/sidekiq_unique_jobs/run_lock_failed.rb +0 -1
  146. data/lib/sidekiq_unique_jobs/script_mock.rb +0 -68
  147. data/lib/sidekiq_unique_jobs/scripts.rb +0 -49
  148. data/lib/sidekiq_unique_jobs/server/middleware.rb +0 -34
  149. data/lib/sidekiq_unique_jobs/testing/sidekiq_overrides.rb +0 -70
  150. data/lib/sidekiq_unique_jobs/timeout_calculator.rb +0 -65
  151. data/lib/sidekiq_unique_jobs/unique_args.rb +0 -134
  152. data/lib/sidekiq_unique_jobs/util.rb +0 -91
  153. data/rails_example/.env +0 -12
  154. data/rails_example/.gitignore +0 -13
  155. data/rails_example/.rspec +0 -2
  156. data/rails_example/Gemfile +0 -34
  157. data/rails_example/Procfile +0 -2
  158. data/rails_example/README.rdoc +0 -28
  159. data/rails_example/Rakefile +0 -6
  160. data/rails_example/app/assets/images/.keep +0 -0
  161. data/rails_example/app/assets/javascripts/application.js +0 -16
  162. data/rails_example/app/assets/stylesheets/application.css +0 -15
  163. data/rails_example/app/channels/appearance_channel.rb +0 -17
  164. data/rails_example/app/channels/application_cable/channel.rb +0 -4
  165. data/rails_example/app/channels/application_cable/connection.rb +0 -9
  166. data/rails_example/app/channels/post_channel.rb +0 -5
  167. data/rails_example/app/controllers/application_controller.rb +0 -5
  168. data/rails_example/app/controllers/concerns/.keep +0 -0
  169. data/rails_example/app/controllers/work_controller.rb +0 -13
  170. data/rails_example/app/helpers/application_helper.rb +0 -2
  171. data/rails_example/app/mailers/.keep +0 -0
  172. data/rails_example/app/models/.keep +0 -0
  173. data/rails_example/app/models/application_record.rb +0 -3
  174. data/rails_example/app/models/concerns/.keep +0 -0
  175. data/rails_example/app/models/guest.rb +0 -21
  176. data/rails_example/app/models/post.rb +0 -2
  177. data/rails_example/app/views/layouts/application.html.erb +0 -15
  178. data/rails_example/app/workers/simple_worker.rb +0 -12
  179. data/rails_example/app/workers/spawn_simple_worker.rb +0 -7
  180. data/rails_example/bin/bundle +0 -3
  181. data/rails_example/bin/check_or_setup_db +0 -57
  182. data/rails_example/bin/docker-setup +0 -20
  183. data/rails_example/bin/rails +0 -4
  184. data/rails_example/bin/rake +0 -4
  185. data/rails_example/bin/setup +0 -34
  186. data/rails_example/bin/update +0 -29
  187. data/rails_example/cable.ru +0 -6
  188. data/rails_example/common-services.yml +0 -50
  189. data/rails_example/config/application.rb +0 -27
  190. data/rails_example/config/boot.rb +0 -3
  191. data/rails_example/config/cable.yml +0 -9
  192. data/rails_example/config/database.docker.yml +0 -12
  193. data/rails_example/config/database.yml +0 -19
  194. data/rails_example/config/environment.rb +0 -5
  195. data/rails_example/config/environments/development.rb +0 -54
  196. data/rails_example/config/environments/production.rb +0 -86
  197. data/rails_example/config/environments/test.rb +0 -42
  198. data/rails_example/config/initializers/application_controller_renderer.rb +0 -6
  199. data/rails_example/config/initializers/assets.rb +0 -11
  200. data/rails_example/config/initializers/backtrace_silencers.rb +0 -9
  201. data/rails_example/config/initializers/cookies_serializer.rb +0 -5
  202. data/rails_example/config/initializers/filter_parameter_logging.rb +0 -4
  203. data/rails_example/config/initializers/inflections.rb +0 -16
  204. data/rails_example/config/initializers/mime_types.rb +0 -4
  205. data/rails_example/config/initializers/new_framework_defaults.rb +0 -23
  206. data/rails_example/config/initializers/session_store.rb +0 -3
  207. data/rails_example/config/initializers/sidekiq.rb +0 -13
  208. data/rails_example/config/initializers/wrap_parameters.rb +0 -14
  209. data/rails_example/config/locales/en.yml +0 -23
  210. data/rails_example/config/puma.rb +0 -38
  211. data/rails_example/config/routes.rb +0 -6
  212. data/rails_example/config/secrets.yml +0 -22
  213. data/rails_example/config/sidekiq.yml +0 -6
  214. data/rails_example/config/spring.rb +0 -6
  215. data/rails_example/config.ru +0 -4
  216. data/rails_example/db/migrate/20160724111322_create_posts.rb +0 -12
  217. data/rails_example/db/schema.rb +0 -25
  218. data/rails_example/db/seeds.rb +0 -7
  219. data/rails_example/dev-entrypoint.sh +0 -55
  220. data/rails_example/dev.env +0 -12
  221. data/rails_example/docker/rails.Dockerfile +0 -27
  222. data/rails_example/docker-compose.yml +0 -90
  223. data/rails_example/lib/assets/.keep +0 -0
  224. data/rails_example/lib/tasks/.keep +0 -0
  225. data/rails_example/log/.keep +0 -0
  226. data/rails_example/public/404.html +0 -67
  227. data/rails_example/public/422.html +0 -67
  228. data/rails_example/public/500.html +0 -66
  229. data/rails_example/public/favicon.ico +0 -0
  230. data/rails_example/public/robots.txt +0 -5
  231. data/rails_example/simple.ru +0 -12
  232. data/rails_example/spec/controllers/work_controller_spec.rb +0 -172
  233. data/rails_example/spec/factories/posts.rb +0 -8
  234. data/rails_example/spec/models/post_spec.rb +0 -4
  235. data/rails_example/spec/rails_helper.rb +0 -21
  236. data/rails_example/spec/spec_helper.rb +0 -20
  237. data/rails_example/spec/support/sidekiq_meta.rb +0 -12
  238. data/rails_example/spec/workers/simple_worker_spec.rb +0 -4
  239. data/rails_example/vendor/assets/javascripts/.keep +0 -0
  240. data/rails_example/vendor/assets/stylesheets/.keep +0 -0
  241. data/redis/acquire_lock.lua +0 -19
  242. data/redis/release_lock.lua +0 -16
  243. data/redis/synchronize.lua +0 -16
  244. data/sidekiq-unique-jobs.gemspec +0 -25
  245. data/spec/celluloid_with_fallback.rb +0 -18
  246. data/spec/jobs/another_unique_job.rb +0 -13
  247. data/spec/jobs/custom_queue_job.rb +0 -6
  248. data/spec/jobs/custom_queue_job_with_filter_method.rb +0 -7
  249. data/spec/jobs/custom_queue_job_with_filter_proc.rb +0 -10
  250. data/spec/jobs/expiring_job.rb +0 -4
  251. data/spec/jobs/inline_worker.rb +0 -8
  252. data/spec/jobs/just_a_worker.rb +0 -8
  253. data/spec/jobs/long_running_job.rb +0 -7
  254. data/spec/jobs/main_job.rb +0 -8
  255. data/spec/jobs/my_job.rb +0 -12
  256. data/spec/jobs/my_unique_job.rb +0 -12
  257. data/spec/jobs/my_unique_job_with_filter_method.rb +0 -17
  258. data/spec/jobs/my_unique_job_with_filter_proc.rb +0 -15
  259. data/spec/jobs/notify_worker.rb +0 -10
  260. data/spec/jobs/plain_class.rb +0 -4
  261. data/spec/jobs/simple_worker.rb +0 -11
  262. data/spec/jobs/spawn_simple_worker.rb +0 -8
  263. data/spec/jobs/test_class.rb +0 -4
  264. data/spec/jobs/unique_job_with_filter_method.rb +0 -18
  265. data/spec/jobs/unique_on_all_queues_job.rb +0 -13
  266. data/spec/jobs/until_and_while_executing_job.rb +0 -8
  267. data/spec/jobs/until_executed_job.rb +0 -17
  268. data/spec/jobs/until_executing_job.rb +0 -8
  269. data/spec/jobs/until_global_timeout_job.rb +0 -8
  270. data/spec/jobs/until_timeout_job.rb +0 -8
  271. data/spec/jobs/while_executing_job.rb +0 -12
  272. data/spec/lib/sidekiq_unique_jobs/client/middleware_spec.rb +0 -321
  273. data/spec/lib/sidekiq_unique_jobs/core_ext_spec.rb +0 -25
  274. data/spec/lib/sidekiq_unique_jobs/lock/until_and_while_executing_spec.rb +0 -43
  275. data/spec/lib/sidekiq_unique_jobs/lock/until_executed_spec.rb +0 -37
  276. data/spec/lib/sidekiq_unique_jobs/lock/until_timeout_spec.rb +0 -26
  277. data/spec/lib/sidekiq_unique_jobs/lock/while_executing_spec.rb +0 -86
  278. data/spec/lib/sidekiq_unique_jobs/normalizer_spec.rb +0 -21
  279. data/spec/lib/sidekiq_unique_jobs/options_with_fallback_spec.rb +0 -113
  280. data/spec/lib/sidekiq_unique_jobs/queue_lock_timeout_calculator_spec.rb +0 -47
  281. data/spec/lib/sidekiq_unique_jobs/run_lock_timeout_calculator_spec.rb +0 -36
  282. data/spec/lib/sidekiq_unique_jobs/script_mock_spec.rb +0 -84
  283. data/spec/lib/sidekiq_unique_jobs/scripts_spec.rb +0 -77
  284. data/spec/lib/sidekiq_unique_jobs/server/middleware_spec.rb +0 -83
  285. data/spec/lib/sidekiq_unique_jobs/sidekiq_testing_enabled_spec.rb +0 -181
  286. data/spec/lib/sidekiq_unique_jobs/sidekiq_unique_ext_spec.rb +0 -80
  287. data/spec/lib/sidekiq_unique_jobs/sidekiq_unique_jobs_spec.rb +0 -41
  288. data/spec/lib/sidekiq_unique_jobs/timeout_calculator_spec.rb +0 -70
  289. data/spec/lib/sidekiq_unique_jobs/unique_args_spec.rb +0 -131
  290. data/spec/lib/sidekiq_unique_jobs/unlockable_spec.rb +0 -4
  291. data/spec/lib/sidekiq_unique_jobs/util_spec.rb +0 -53
  292. data/spec/spec_helper.rb +0 -65
  293. data/spec/support/matchers/redis_matchers.rb +0 -19
  294. data/spec/support/ruby_meta.rb +0 -10
  295. data/spec/support/sidekiq_meta.rb +0 -31
  296. data/spec/support/unique_macros.rb +0 -71
@@ -1,10 +1,342 @@
1
- require 'sidekiq_unique_jobs/lock/until_executed'
2
- require 'sidekiq_unique_jobs/lock/until_executing'
3
- require 'sidekiq_unique_jobs/lock/while_executing'
4
- require 'sidekiq_unique_jobs/lock/until_timeout'
5
- require 'sidekiq_unique_jobs/lock/until_and_while_executing'
1
+ # frozen_string_literal: true
6
2
 
7
3
  module SidekiqUniqueJobs
8
- module Lock
4
+ #
5
+ # Class Lock provides access to information about a lock
6
+ #
7
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
8
+ #
9
+ class Lock # rubocop:disable Metrics/ClassLength
10
+ # includes "SidekiqUniqueJobs::Connection"
11
+ # @!parse include SidekiqUniqueJobs::Connection
12
+ include SidekiqUniqueJobs::Connection
13
+
14
+ # includes "SidekiqUniqueJobs::Timing"
15
+ # @!parse include SidekiqUniqueJobs::Timing
16
+ include SidekiqUniqueJobs::Timing
17
+
18
+ # includes "SidekiqUniqueJobs::JSON"
19
+ # @!parse include SidekiqUniqueJobs::JSON
20
+ include SidekiqUniqueJobs::JSON
21
+
22
+ #
23
+ # @!attribute [r] key
24
+ # @return [String] the entity redis key
25
+ attr_reader :key
26
+
27
+ #
28
+ # Initialize a locked lock
29
+ #
30
+ # @param [String] digest a unique digest
31
+ # @param [String] job_id a sidekiq JID
32
+ # @param [Hash] lock_info information about the lock
33
+ #
34
+ # @return [Lock] a newly lock that has been locked
35
+ #
36
+ def self.create(digest, job_id, lock_info = {})
37
+ lock = new(digest, time: Timing.now_f)
38
+ lock.lock(job_id, lock_info)
39
+ lock
40
+ end
41
+
42
+ #
43
+ # Initialize a new lock
44
+ #
45
+ # @param [String, Key] key either a digest or an instance of a {Key}
46
+ # @param [Timstamp, Float] time nil optional timestamp to initiate this lock with
47
+ #
48
+ def initialize(key, time: nil)
49
+ @key = get_key(key)
50
+ @created_at = time.is_a?(Float) ? time : time.to_f
51
+ end
52
+
53
+ #
54
+ # Locks a job_id
55
+ #
56
+ # @note intended only for testing purposes
57
+ #
58
+ # @param [String] job_id a sidekiq JID
59
+ # @param [Hash] lock_info information about the lock
60
+ #
61
+ # @return [void]
62
+ #
63
+ def lock(job_id, lock_info = {})
64
+ redis do |conn|
65
+ conn.multi do |pipeline|
66
+ pipeline.set(key.digest, job_id)
67
+ pipeline.hset(key.locked, job_id, now_f)
68
+ info.set(lock_info, pipeline)
69
+ add_digest_to_set(pipeline, lock_info)
70
+ pipeline.zadd(key.changelog, now_f, changelog_json(job_id, "queue.lua", "Queued"))
71
+ pipeline.zadd(key.changelog, now_f, changelog_json(job_id, "lock.lua", "Locked"))
72
+ end
73
+ end
74
+ end
75
+
76
+ #
77
+ # Create the :QUEUED key
78
+ #
79
+ # @note intended only for testing purposes
80
+ #
81
+ # @param [String] job_id a sidekiq JID
82
+ #
83
+ # @return [void]
84
+ #
85
+ def queue(job_id)
86
+ redis do |conn|
87
+ conn.lpush(key.queued, job_id)
88
+ end
89
+ end
90
+
91
+ #
92
+ # Create the :PRIMED key
93
+ #
94
+ # @note intended only for testing purposes
95
+ #
96
+ # @param [String] job_id a sidekiq JID
97
+ #
98
+ # @return [void]
99
+ #
100
+ def prime(job_id)
101
+ redis do |conn|
102
+ conn.lpush(key.primed, job_id)
103
+ end
104
+ end
105
+
106
+ #
107
+ # Unlock a specific job_id
108
+ #
109
+ # @param [String] job_id a sidekiq JID
110
+ #
111
+ # @return [true] when job_id was removed
112
+ # @return [false] when job_id wasn't locked
113
+ #
114
+ def unlock(job_id)
115
+ locked.del(job_id)
116
+ end
117
+
118
+ #
119
+ # Deletes all the redis keys for this lock
120
+ #
121
+ #
122
+ # @return [Integer] the number of keys deleted in redis
123
+ #
124
+ def del
125
+ redis do |conn|
126
+ conn.multi do |pipeline|
127
+ pipeline.zrem(DIGESTS, key.digest)
128
+ pipeline.del(key.digest, key.queued, key.primed, key.locked, key.info)
129
+ end
130
+ end
131
+ end
132
+
133
+ #
134
+ # Returns either the time the lock was initialized with or
135
+ # the first changelog entry's timestamp
136
+ #
137
+ #
138
+ # @return [Float] a floaty timestamp represantation
139
+ #
140
+ def created_at
141
+ @created_at ||= changelogs.first&.[]("time")
142
+ end
143
+
144
+ #
145
+ # Returns all job_id's for this lock
146
+ #
147
+ # @note a JID can be present in 3 different places
148
+ #
149
+ #
150
+ # @return [Array<String>] an array with JIDs
151
+ #
152
+ def all_jids
153
+ (queued_jids + primed_jids + locked_jids).uniq
154
+ end
155
+
156
+ #
157
+ # Returns a collection of locked job_id's
158
+ #
159
+ # @param [true, false] with_values false provide the timestamp for the lock
160
+ #
161
+ # @return [Hash<String, Float>] when given `with_values: true`
162
+ # @return [Array<String>] when given `with_values: false`
163
+ #
164
+ def locked_jids(with_values: false)
165
+ locked.entries(with_values: with_values)
166
+ end
167
+
168
+ #
169
+ # Returns the queued JIDs
170
+ #
171
+ #
172
+ # @return [Array<String>] an array with queued job_ids
173
+ #
174
+ def queued_jids
175
+ queued.entries
176
+ end
177
+
178
+ #
179
+ # Returns the primed JIDs
180
+ #
181
+ #
182
+ # @return [Array<String>] an array with primed job_ids
183
+ #
184
+ def primed_jids
185
+ primed.entries
186
+ end
187
+
188
+ #
189
+ # Returns all matching changelog entries for this lock
190
+ #
191
+ #
192
+ # @return [Array<Hash>] an array with changelogs
193
+ #
194
+ def changelogs
195
+ changelog.entries(pattern: "*#{key.digest}*")
196
+ end
197
+
198
+ #
199
+ # The digest key
200
+ #
201
+ # @note Used for exists checks to avoid enqueuing
202
+ # the same lock twice
203
+ #
204
+ #
205
+ # @return [Redis::String] a string representation of the key
206
+ #
207
+ def digest
208
+ @digest ||= Redis::String.new(key.digest)
209
+ end
210
+
211
+ #
212
+ # The queued list
213
+ #
214
+ #
215
+ # @return [Redis::List] for queued JIDs
216
+ #
217
+ def queued
218
+ @queued ||= Redis::List.new(key.queued)
219
+ end
220
+
221
+ #
222
+ # The primed list
223
+ #
224
+ #
225
+ # @return [Redis::List] for primed JIDs
226
+ #
227
+ def primed
228
+ @primed ||= Redis::List.new(key.primed)
229
+ end
230
+
231
+ #
232
+ # The locked hash
233
+ #
234
+ #
235
+ # @return [Redis::Hash] for locked JIDs
236
+ #
237
+ def locked
238
+ @locked ||= Redis::Hash.new(key.locked)
239
+ end
240
+
241
+ #
242
+ # Information about the lock
243
+ #
244
+ #
245
+ # @return [Redis::Hash] with lock information
246
+ #
247
+ def info
248
+ @info ||= LockInfo.new(key.info)
249
+ end
250
+
251
+ #
252
+ # A sorted set with changelog entries
253
+ #
254
+ # @see Changelog for more information
255
+ #
256
+ #
257
+ # @return [Changelog]
258
+ #
259
+ def changelog
260
+ @changelog ||= Changelog.new
261
+ end
262
+
263
+ #
264
+ # A nicely formatted string with information about this lock
265
+ #
266
+ #
267
+ # @return [String]
268
+ #
269
+ def to_s
270
+ <<~MESSAGE
271
+ Lock status for #{key}
272
+
273
+ value: #{digest.value}
274
+ info: #{info.value}
275
+ queued_jids: #{queued_jids}
276
+ primed_jids: #{primed_jids}
277
+ locked_jids: #{locked_jids}
278
+ changelogs: #{changelogs}
279
+ MESSAGE
280
+ end
281
+
282
+ #
283
+ # @see to_s
284
+ #
285
+ def inspect
286
+ to_s
287
+ end
288
+
289
+ private
290
+
291
+ #
292
+ # Ensure the key is a {Key}
293
+ #
294
+ # @param [String, Key] key
295
+ #
296
+ # @return [Key]
297
+ #
298
+ def get_key(key)
299
+ if key.is_a?(SidekiqUniqueJobs::Key)
300
+ key
301
+ else
302
+ SidekiqUniqueJobs::Key.new(key)
303
+ end
304
+ end
305
+
306
+ #
307
+ # Generate a changelog entry for the given arguments
308
+ #
309
+ # @param [String] job_id a sidekiq JID
310
+ # @param [String] script the name of the script generating this entry
311
+ # @param [String] message a descriptive message for later review
312
+ #
313
+ # @return [String] a JSON string matching the Lua script structure
314
+ #
315
+ def changelog_json(job_id, script, message)
316
+ dump_json(
317
+ digest: key.digest,
318
+ job_id: job_id,
319
+ script: script,
320
+ message: message,
321
+ time: now_f,
322
+ )
323
+ end
324
+
325
+ #
326
+ # Add the digest to the correct sorted set
327
+ #
328
+ # @param [Object] pipeline a redis pipeline object for issue commands
329
+ # @param [Hash] lock_info the lock info relevant to the digest
330
+ #
331
+ # @return [nil]
332
+ #
333
+ def add_digest_to_set(pipeline, lock_info)
334
+ digest_string = key.digest
335
+ if lock_info["lock"] == :until_expired
336
+ pipeline.zadd(key.expiring_digests, now_f + lock_info["ttl"], digest_string)
337
+ else
338
+ pipeline.zadd(key.digests, now_f, digest_string)
339
+ end
340
+ end
9
341
  end
10
342
  end
@@ -0,0 +1,127 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ # Handles uniqueness of sidekiq arguments
5
+ #
6
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
7
+ class LockArgs
8
+ include SidekiqUniqueJobs::Logging
9
+ include SidekiqUniqueJobs::SidekiqWorkerMethods
10
+ include SidekiqUniqueJobs::JSON
11
+
12
+ # Convenience method for returning a digest
13
+ # @param [Hash] item a Sidekiq job hash
14
+ # @return [String] a unique digest
15
+ def self.call(item)
16
+ new(item).lock_args
17
+ end
18
+
19
+ # The sidekiq job hash
20
+ # @return [Hash] the Sidekiq job hash
21
+ attr_reader :item
22
+ #
23
+ # @!attribute [r] args
24
+ # @return [Array<Objet>] the arguments passed to `perform_async`
25
+ attr_reader :args
26
+
27
+ # @param [Hash] item a Sidekiq job hash
28
+ def initialize(item)
29
+ @item = item
30
+ @args = item[ARGS]
31
+ self.job_class = item[CLASS]
32
+ end
33
+
34
+ # The unique arguments to use for creating a lock
35
+ # @return [Array] the arguments filters by the {#filtered_args} method if {#lock_args_enabled?}
36
+ def lock_args
37
+ @lock_args ||= filtered_args || []
38
+ end
39
+
40
+ # Checks if the worker class has enabled lock_args
41
+ # @return [true, false]
42
+ def lock_args_enabled?
43
+ # return false unless lock_args_method_valid?
44
+
45
+ lock_args_method
46
+ end
47
+
48
+ # Validate that the lock_args_method is acceptable
49
+ # @return [true, false]
50
+ def lock_args_method_valid?
51
+ [NilClass, TrueClass, FalseClass].none? { |klass| lock_args_method.is_a?(klass) }
52
+ end
53
+
54
+ # Checks if the worker class has disabled lock_args
55
+ # @return [true, false]
56
+ def lock_args_disabled?
57
+ !lock_args_method
58
+ end
59
+
60
+ # Filters unique arguments by proc or symbol
61
+ # @return [Array] {#filter_by_proc} when {#lock_args_method} is a Proc
62
+ # @return [Array] {#filter_by_symbol} when {#lock_args_method} is a Symbol
63
+ # @return [Array] args unfiltered when neither of the above
64
+ def filtered_args
65
+ return args if lock_args_disabled?
66
+
67
+ json_args = Normalizer.jsonify(args)
68
+
69
+ case lock_args_method
70
+ when Proc
71
+ filter_by_proc(json_args)
72
+ when Symbol
73
+ filter_by_symbol(json_args)
74
+ end
75
+ end
76
+
77
+ # Filters unique arguments by proc configured in the sidekiq worker
78
+ # @param [Array] args the arguments passed to the sidekiq worker
79
+ # @return [Array] with the filtered arguments
80
+ def filter_by_proc(args)
81
+ lock_args_method.call(args)
82
+ end
83
+
84
+ # Filters unique arguments by method configured in the sidekiq worker
85
+ # @param [Array] args the arguments passed to the sidekiq worker
86
+ # @return [Array] unfiltered unless {#job_method_defined?}
87
+ # @return [Array] with the filtered arguments
88
+ def filter_by_symbol(args)
89
+ return args unless job_method_defined?(lock_args_method)
90
+
91
+ job_class.send(lock_args_method, args)
92
+ rescue ArgumentError
93
+ raise SidekiqUniqueJobs::InvalidUniqueArguments,
94
+ given: args,
95
+ job_class: job_class,
96
+ lock_args_method: lock_args_method
97
+ end
98
+
99
+ # The method to use for filtering unique arguments
100
+ def lock_args_method
101
+ @lock_args_method ||= job_options.slice(LOCK_ARGS_METHOD, UNIQUE_ARGS_METHOD).values.first
102
+ @lock_args_method ||= :lock_args if job_method_defined?(:lock_args)
103
+ @lock_args_method ||= :unique_args if job_method_defined?(:unique_args)
104
+ @lock_args_method ||= default_lock_args_method
105
+ end
106
+
107
+ # The global worker options defined in Sidekiq directly
108
+ def default_lock_args_method
109
+ default_job_options[LOCK_ARGS_METHOD] ||
110
+ default_job_options[UNIQUE_ARGS_METHOD]
111
+ end
112
+
113
+ #
114
+ # The globally default worker options configured from Sidekiq
115
+ #
116
+ #
117
+ # @return [Hash<String, Object>]
118
+ #
119
+ def default_job_options
120
+ @default_job_options ||= if Sidekiq.respond_to?(:default_job_options)
121
+ Sidekiq.default_job_options.stringify_keys
122
+ else
123
+ Sidekiq.default_worker_options.stringify_keys
124
+ end
125
+ end
126
+ end
127
+ end
@@ -0,0 +1,126 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SidekiqUniqueJobs
4
+ #
5
+ # Gathers all configuration for a lock
6
+ # which helps reduce the amount of instance variables
7
+ #
8
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
9
+ #
10
+ class LockConfig
11
+ #
12
+ # @!attribute [r] type
13
+ # @return [Symbol] the type of lock
14
+ attr_reader :type
15
+ #
16
+ # @!attribute [r] job
17
+ # @return [Symbol] the job class
18
+ attr_reader :job
19
+ #
20
+ # @!attribute [r] limit
21
+ # @return [Integer] the number of simultaneous locks
22
+ attr_reader :limit
23
+ #
24
+ # @!attribute [r] timeout
25
+ # @return [Integer, nil] the time to wait for a lock
26
+ attr_reader :timeout
27
+ #
28
+ # @!attribute [r] ttl
29
+ # @return [Integer, nil] the time (in seconds) to live after successful
30
+ attr_reader :ttl
31
+ #
32
+ # @!attribute [r] ttl
33
+ # @return [Integer, nil] the time (in milliseconds) to live after successful
34
+ attr_reader :pttl
35
+ #
36
+ # @!attribute [r] lock_info
37
+ # @return [Boolean] indicate wether to use lock_info or not
38
+ attr_reader :lock_info
39
+ #
40
+ # @!attribute [r] on_conflict
41
+ # @return [Symbol, Hash<Symbol, Symbol>] the strategies to use as conflict resolution
42
+ attr_reader :on_conflict
43
+ #
44
+ # @!attribute [r] errors
45
+ # @return [Array<Hash<Symbol, Array<String>] a collection of configuration errors
46
+ attr_reader :errors
47
+
48
+ #
49
+ # Instantiate a new lock_config based on sidekiq options in worker
50
+ #
51
+ # @param [Hash] options sidekiq_options for worker
52
+ #
53
+ # @return [LockConfig]
54
+ #
55
+ def self.from_worker(options)
56
+ new(options.deep_stringify_keys)
57
+ end
58
+
59
+ def initialize(job_hash = {})
60
+ @type = job_hash[LOCK]&.to_sym
61
+ @job = SidekiqUniqueJobs.safe_constantize(job_hash[CLASS])
62
+ @limit = job_hash.fetch(LOCK_LIMIT, 1)&.to_i
63
+ @timeout = job_hash.fetch(LOCK_TIMEOUT, 0)&.to_i
64
+ @ttl = job_hash.fetch(LOCK_TTL) { job_hash.fetch(LOCK_EXPIRATION, nil) }.to_i
65
+ @pttl = ttl * 1_000
66
+ @lock_info = job_hash.fetch(LOCK_INFO) { SidekiqUniqueJobs.config.lock_info }
67
+ @on_conflict = job_hash.fetch(ON_CONFLICT, nil)
68
+ @errors = job_hash.fetch(ERRORS) { {} }
69
+
70
+ @on_client_conflict = job_hash[ON_CLIENT_CONFLICT]
71
+ @on_server_conflict = job_hash[ON_SERVER_CONFLICT]
72
+ end
73
+
74
+ def lock_info?
75
+ lock_info
76
+ end
77
+
78
+ #
79
+ # Indicate if timeout was set
80
+ #
81
+ #
82
+ # @return [true,false]
83
+ #
84
+ def wait_for_lock?
85
+ timeout.nil? || timeout.positive?
86
+ end
87
+
88
+ #
89
+ # Is the configuration valid?
90
+ #
91
+ #
92
+ # @return [true,false]
93
+ #
94
+ def valid?
95
+ errors.empty?
96
+ end
97
+
98
+ #
99
+ # Return a nice descriptive message with all validation errors
100
+ #
101
+ #
102
+ # @return [String]
103
+ #
104
+ def errors_as_string
105
+ return if valid?
106
+
107
+ @errors_as_string ||= begin
108
+ error_msg = +"\t"
109
+ error_msg << errors.map { |key, val| "#{key}: :#{val}" }.join("\n\t")
110
+ error_msg
111
+ end
112
+ end
113
+
114
+ # the strategy to use as conflict resolution from sidekiq client
115
+ def on_client_conflict
116
+ @on_client_conflict ||= on_conflict["client"] || on_conflict[:client] if on_conflict.is_a?(Hash)
117
+ @on_client_conflict ||= on_conflict
118
+ end
119
+
120
+ # the strategy to use as conflict resolution from sidekiq server
121
+ def on_server_conflict
122
+ @on_server_conflict ||= on_conflict["server"] || on_conflict[:server] if on_conflict.is_a?(Hash)
123
+ @on_server_conflict ||= on_conflict
124
+ end
125
+ end
126
+ end
@@ -0,0 +1,79 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "openssl"
4
+
5
+ module SidekiqUniqueJobs
6
+ # Handles uniqueness of sidekiq arguments
7
+ #
8
+ # @author Mikael Henriksson <mikael@mhenrixon.com>
9
+ class LockDigest
10
+ include SidekiqUniqueJobs::Logging
11
+ include SidekiqUniqueJobs::JSON
12
+ include SidekiqUniqueJobs::SidekiqWorkerMethods
13
+
14
+ #
15
+ # Generates a new digest
16
+ #
17
+ # @param [Hash] item a sidekiq job hash
18
+ #
19
+ # @return [String] a unique digest for the given arguments
20
+ #
21
+ def self.call(item)
22
+ new(item).lock_digest
23
+ end
24
+
25
+ # The sidekiq job hash
26
+ # @return [Hash] the Sidekiq job hash
27
+ attr_reader :item
28
+ #
29
+ # @!attribute [r] args
30
+ # @return [Array<Objet>] the arguments passed to `perform_async`
31
+ attr_reader :lock_args
32
+ #
33
+ # @!attribute [r] args
34
+ # @return [String] the prefix for the unique key
35
+ attr_reader :lock_prefix
36
+
37
+ # @param [Hash] item a Sidekiq job hash
38
+ def initialize(item)
39
+ @item = item
40
+ @lock_args = item[LOCK_ARGS] || item[UNIQUE_ARGS] # TODO: Deprecate UNIQUE_ARGS
41
+ @lock_prefix = item[LOCK_PREFIX] || item[UNIQUE_PREFIX] # TODO: Deprecate UNIQUE_PREFIX
42
+ self.job_class = item[CLASS]
43
+ end
44
+
45
+ # Memoized lock_digest
46
+ # @return [String] a unique digest
47
+ def lock_digest
48
+ @lock_digest ||= create_digest
49
+ end
50
+
51
+ # Creates a namespaced unique digest based on the {#digestable_hash} and the {#lock_prefix}
52
+ # @return [String] a unique digest
53
+ def create_digest
54
+ digest = OpenSSL::Digest::MD5.hexdigest(dump_json(digestable_hash))
55
+ "#{lock_prefix}:#{digest}"
56
+ end
57
+
58
+ # Filter a hash to use for digest
59
+ # @return [Hash] to use for digest
60
+ def digestable_hash
61
+ @item.slice(CLASS, QUEUE, LOCK_ARGS, APARTMENT).tap do |hash|
62
+ hash.delete(QUEUE) if unique_across_queues?
63
+ hash.delete(CLASS) if unique_across_workers?
64
+ end
65
+ end
66
+
67
+ # Checks if we should disregard the queue when creating the unique digest
68
+ # @return [true, false]
69
+ def unique_across_queues?
70
+ item[UNIQUE_ACROSS_QUEUES] || job_options[UNIQUE_ACROSS_QUEUES]
71
+ end
72
+
73
+ # Checks if we should disregard the worker when creating the unique digest
74
+ # @return [true, false]
75
+ def unique_across_workers?
76
+ item[UNIQUE_ACROSS_WORKERS] || job_options[UNIQUE_ACROSS_WORKERS]
77
+ end
78
+ end
79
+ end