Class: Sidekiq::Queue
Overview
Represents a queue within Sidekiq. Allows enumeration of all jobs within the queue and deletion of jobs. NB: this queue data is real-time and is changing within Redis moment by moment.
queue = Sidekiq::Queue.new("mailer")
queue.each do |job|
job.klass # => 'MyWorker'
job.args # => [1, 2, 3]
job.delete if job.jid == 'abcdef1234567890'
end
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Class Method Summary collapse
-
.all ⇒ Array<Sidekiq::Queue>
Fetch all known queues within Redis.
Instance Method Summary collapse
-
#clear ⇒ Boolean
(also: #💣)
delete all jobs within this queue.
- #each ⇒ Object
-
#find_job(jid) ⇒ Sidekiq::JobRecord?
Find the job with the given JID within this queue.
-
#initialize(name = "default") ⇒ Queue
constructor
A new instance of Queue.
-
#latency ⇒ Float
Calculates this queue’s latency, the difference in seconds since the oldest job in the queue was enqueued.
-
#paused? ⇒ Boolean
If the queue is currently paused.
-
#size ⇒ Integer
The current size of the queue within Redis.
Constructor Details
#initialize(name = "default") ⇒ Queue
Returns a new instance of Queue.
239 240 241 242 |
# File 'lib/sidekiq/api.rb', line 239 def initialize(name = "default") @name = name.to_s @rname = "queue:#{name}" end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
236 237 238 |
# File 'lib/sidekiq/api.rb', line 236 def name @name end |
Class Method Details
.all ⇒ Array<Sidekiq::Queue>
Fetch all known queues within Redis.
232 233 234 |
# File 'lib/sidekiq/api.rb', line 232 def self.all Sidekiq.redis { |c| c.sscan("queues").to_a }.sort.map { |q| Sidekiq::Queue.new(q) } end |
Instance Method Details
#clear ⇒ Boolean Also known as: 💣
delete all jobs within this queue
309 310 311 312 313 314 315 316 317 |
# File 'lib/sidekiq/api.rb', line 309 def clear Sidekiq.redis do |conn| conn.multi do |transaction| transaction.unlink(@rname) transaction.srem("queues", [name]) end end true end |
#each ⇒ Object
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/sidekiq/api.rb', line 273 def each initial_size = size deleted_size = 0 page = 0 page_size = 50 loop do range_start = page * page_size - deleted_size range_end = range_start + page_size - 1 entries = Sidekiq.redis { |conn| conn.lrange @rname, range_start, range_end } break if entries.empty? page += 1 entries.each do |entry| yield JobRecord.new(entry, @name) end deleted_size = initial_size - size end end |
#find_job(jid) ⇒ Sidekiq::JobRecord?
Find the job with the given JID within this queue.
This is a *slow, inefficient* operation. Do not use under normal conditions.
303 304 305 |
# File 'lib/sidekiq/api.rb', line 303 def find_job(jid) detect { |j| j.jid == jid } end |
#latency ⇒ Float
Calculates this queue’s latency, the difference in seconds since the oldest job in the queue was enqueued.
262 263 264 265 266 267 268 269 270 271 |
# File 'lib/sidekiq/api.rb', line 262 def latency entry = Sidekiq.redis { |conn| conn.lindex(@rname, -1) } return 0.0 unless entry job = Sidekiq.load_json(entry) now = Time.now.to_f thence = job["enqueued_at"] || now now - thence end |
#paused? ⇒ Boolean
Returns if the queue is currently paused.
253 254 255 |
# File 'lib/sidekiq/api.rb', line 253 def paused? false end |
#size ⇒ Integer
The current size of the queue within Redis. This value is real-time and can change between calls.
248 249 250 |
# File 'lib/sidekiq/api.rb', line 248 def size Sidekiq.redis { |con| con.llen(@rname) } end |