redis_queued_locks 0.0.28 → 0.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5de2915b0828a1c82327dd301b41388cc649b2b922ca18f98cde7e8607753b28
4
- data.tar.gz: da86f22a9ed5a834467ae80d9596c9efb0be1e645546c5b32a8f5d5b1dcec294
3
+ metadata.gz: 3137184f5a89b895fe347d8080957e08a57974e91d5a68189d0eb157afd7c3eb
4
+ data.tar.gz: 7b059f5de5cde2af1634eed3aeae540afd7edfc5ba564781789649098e53e0a1
5
5
  SHA512:
6
- metadata.gz: 1f3a60c00b200f9e474ad0471e8e59541786f6e035df4c4d93d553eb93456fc99f0743970d3154fa8d3878a4e67b03d8d2ae2c16b71336b8d277f886dd4821e4
7
- data.tar.gz: 1b52f00d36d568dce68b14caa0cbfb0e1ec793a7eec9adeb5bbca3c042b8bd224cec5f74488c4f0b34de0b302ec98392584a07e21bd02f106a370f3341ef3a35
6
+ metadata.gz: 4821b6c0fc142d90fae314aa11c92069be9223cc4a61be077ff6e19278fae97f920d31b590c5688f3614159a2f5c9d9d1792d8a6aee50f51d7b24f83ea1a9298
7
+ data.tar.gz: 80a0de485f263459c52d230cc0e604d0c742db235a6a9b57053cc84001e9e146cfc35b9c31aff5e1ef5a2796692559f95fe94db39350720277fb219ef95a2685
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.0.29] - 2024-03-23
4
+ ### Added
5
+ - Logging: more detailed logs to `RedisQueuedLocks::Acquier::AcquireLock::TryToLock`;
6
+
3
7
  ## [0.0.28] - 2024-03-21
4
8
  ### Added
5
9
  - Logging: added `acq_id` to every log message;
data/README.md CHANGED
@@ -600,23 +600,21 @@ Detalized event semantics and payload structure:
600
600
 
601
601
  ## Roadmap
602
602
 
603
- - **Major**
604
- - Semantic Error objects for unexpected Redis errors;
605
- - `100%` test coverage;
606
- - per-block-holding-the-lock sidecar `Ractor` and `in progress queue` in RedisDB that will extend
607
- the acquired lock for long-running blocks of code (that invoked "under" the lock
608
- whose ttl may expire before the block execution completes);
609
- - an ability to add custom metadata to the lock and an ability to read this data;
610
- - lock prioritization;
611
- - support for LIFO strategy;
612
- - structured logging;
613
- - **Minor**
614
- - GitHub Actions CI;
615
- - `RedisQueuedLocks::Acquier::Try.try_to_lock` - detailed successful result analization;
616
- - better code stylization and interesting refactorings;
617
- - lock queue expiration (dead queue cleanup);
618
- - support for `Dragonfly` DB backend;
619
- - support for `Garnet` DB backend;
603
+ - Semantic Error objects for unexpected Redis errors;
604
+ - `100%` test coverage;
605
+ - per-block-holding-the-lock sidecar `Ractor` and `in progress queue` in RedisDB that will extend
606
+ the acquired lock for long-running blocks of code (that invoked "under" the lock
607
+ whose ttl may expire before the block execution completes);
608
+ - an ability to add custom metadata to the lock and an ability to read this data;
609
+ - lock prioritization;
610
+ - support for LIFO strategy;
611
+ - structured logging;
612
+ - GitHub Actions CI;
613
+ - `RedisQueuedLocks::Acquier::Try.try_to_lock` - detailed successful result analization;
614
+ - better code stylization and interesting refactorings;
615
+ - dead queue cleanup;
616
+ - support for `Dragonfly` DB backend;
617
+ - support for `Garnet` DB backend;
620
618
 
621
619
  ---
622
620
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # @api private
4
4
  # @since 0.1.0
5
- # rubocop:disable Metrics/ModuleLength
5
+ # rubocop:disable Metrics/ModuleLength, Metrics/BlockNesting
6
6
  module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
7
7
  # @since 0.1.0
8
8
  extend RedisQueuedLocks::Utilities
@@ -41,7 +41,7 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
41
41
  if log_lock_try
42
42
  run_non_critical do
43
43
  logger.debug(
44
- "[redis_queued_locks.try_lock_start] " \
44
+ "[redis_queued_locks.try_lock.start] " \
45
45
  "lock_key => '#{lock_key}' " \
46
46
  "acq_id => '#{acquier_id}'"
47
47
  )
@@ -53,7 +53,7 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
53
53
  if log_lock_try
54
54
  run_non_critical do
55
55
  logger.debug(
56
- "[redis_queued_locks.try_lock_rconn_fetched] " \
56
+ "[redis_queued_locks.try_lock.rconn_fetched] " \
57
57
  "lock_key => '#{lock_key}' " \
58
58
  "acq_id => '#{acquier_id}'"
59
59
  )
@@ -69,6 +69,16 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
69
69
  # Step 1: add an acquier to the lock acquirement queue
70
70
  res = rconn.call('ZADD', lock_key_queue, 'NX', acquier_position, acquier_id)
71
71
 
72
+ if log_lock_try
73
+ run_non_critical do
74
+ logger.debug(
75
+ "[redis_queued_locks.try_lock.acq_added_to_queue] " \
76
+ "lock_key => '#{lock_key}' " \
77
+ "acq_id => '#{acquier_id}'"
78
+ )
79
+ end
80
+ end
81
+
72
82
  RedisQueuedLocks.debug(
73
83
  "Step №1: добавление в очередь (#{acquier_id}). [ZADD to the queue: #{res}]"
74
84
  )
@@ -81,6 +91,16 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
81
91
  RedisQueuedLocks::Resource.acquier_dead_score(queue_ttl)
82
92
  )
83
93
 
94
+ if log_lock_try
95
+ run_non_critical do
96
+ logger.debug(
97
+ "[redis_queued_locks.try_lock.remove_expired_acqs] " \
98
+ "lock_key => '#{lock_key}' " \
99
+ "acq_id => '#{acquier_id}'"
100
+ )
101
+ end
102
+ end
103
+
84
104
  RedisQueuedLocks.debug(
85
105
  "Step №2: дропаем из очереди просроченных ожидающих. [ZREMRANGE: #{res}]"
86
106
  )
@@ -88,6 +108,17 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
88
108
  # Step 3: get the actual acquier waiting in the queue
89
109
  waiting_acquier = Array(rconn.call('ZRANGE', lock_key_queue, '0', '0')).first
90
110
 
111
+ if log_lock_try
112
+ run_non_critical do
113
+ logger.debug(
114
+ "[redis_queued_locks.try_lock.get_first_from_queue] " \
115
+ "lock_key => '#{lock_key}' " \
116
+ "acq_id => '#{acquier_id}' " \
117
+ "first_acq_id_in_queue => '#{waiting_acquier}'"
118
+ )
119
+ end
120
+ end
121
+
91
122
  RedisQueuedLocks.debug(
92
123
  "Step №3: какой процесс в очереди сейчас ждет. " \
93
124
  "[ZRANGE <следующий процесс>: #{waiting_acquier} :: <текущий процесс>: #{acquier_id}]"
@@ -97,6 +128,17 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
97
128
  unless waiting_acquier == acquier_id
98
129
  # Step ROLLBACK 1.1: our time hasn't come yet. retry!
99
130
 
131
+ if log_lock_try
132
+ run_non_critical do
133
+ logger.debug(
134
+ "[redis_queued_locks.try_lock.exit__no_first] " \
135
+ "lock_key => '#{lock_key}' " \
136
+ "acq_id => '#{acquier_id}' " \
137
+ "first_acq_id_in_queue => '#{waiting_acquier}'"
138
+ )
139
+ end
140
+ end
141
+
100
142
  RedisQueuedLocks.debug(
101
143
  "Step ROLLBACK №1: не одинаковые ключи. выходим. " \
102
144
  "[Ждет: #{waiting_acquier}. А нужен: #{acquier_id}]"
@@ -120,6 +162,18 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
120
162
  if locked_by_acquier
121
163
  # Step ROLLBACK 2: required lock is stil acquired. retry!
122
164
 
165
+ if log_lock_try
166
+ run_non_critical do
167
+ logger.debug(
168
+ "[redis_queued_locks.try_lock.exit__still_obtained] " \
169
+ "lock_key => '#{lock_key}' " \
170
+ "acq_id => '#{acquier_id}' " \
171
+ "first_acq_id_in_queue => '#{waiting_acquier}' " \
172
+ "locked_by_acq_id => '#{locked_by_acquier}'"
173
+ )
174
+ end
175
+ end
176
+
123
177
  RedisQueuedLocks.debug(
124
178
  "Step ROLLBACK №2: Ключ уже занят. Ничего не делаем. " \
125
179
  "[Занят процессом: #{locked_by_acquier}]"
@@ -153,6 +207,16 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
153
207
 
154
208
  # Step 6.3: set the lock expiration time in order to prevent "infinite locks"
155
209
  transact.call('PEXPIRE', lock_key, ttl) # NOTE: in milliseconds
210
+
211
+ if log_lock_try
212
+ run_non_critical do
213
+ logger.debug(
214
+ "[redis_queued_locks.try_lock.run__free_to_acquire] " \
215
+ "lock_key => '#{lock_key}' " \
216
+ "acq_id => '#{acquier_id}'"
217
+ )
218
+ end
219
+ end
156
220
  end
157
221
  end
158
222
  end
@@ -210,4 +274,4 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
210
274
  RedisQueuedLocks::Data[ok: true, result: result]
211
275
  end
212
276
  end
213
- # rubocop:enable Metrics/ModuleLength
277
+ # rubocop:enable Metrics/ModuleLength, Metrics/BlockNesting
@@ -5,6 +5,6 @@ module RedisQueuedLocks
5
5
  #
6
6
  # @api public
7
7
  # @since 0.0.1
8
- # @version 0.0.28
9
- VERSION = '0.0.28'
8
+ # @version 0.0.29
9
+ VERSION = '0.0.29'
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis_queued_locks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.28
4
+ version: 0.0.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rustam Ibragimov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-21 00:00:00.000000000 Z
11
+ date: 2024-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis-client