Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bdce7b2

Browse files
committedMay 13, 2024··
job_queue: add logging of long build queue
This will make it easier to monitor whether the new queueing system is behaving as expected.
1 parent cc8d57b commit bdce7b2

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎src/job_queue.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55

66
# A variation of `Thread::Queue` that allows us to prioritise certain types of jobs.
77
class JobQueue
8-
def initialize(queue_type)
8+
def initialize(queue_type, logger)
99
@mutex = Mutex.new
1010
@queue = Hash.new { |h, k| h[k] = [] }
1111
@queue_type = queue_type
1212
@condvar = ConditionVariable.new
13+
@logger = logger
1314
end
1415

1516
def <<(job)
@@ -24,9 +25,12 @@ def pop
2425
loop do
2526
running_long_build_count = SharedState.instance.running_jobs(@queue_type).count(&:long_build?)
2627
long_build_slots = QueueTypes.slots(@queue_type) / 2
28+
@logger.call("Long builds: #{running_long_build_count} running, #{long_build_slots} available")
2729

2830
if running_long_build_count < long_build_slots && !@queue[:long].empty?
29-
break @queue[:long].shift
31+
job = @queue[:long].shift
32+
@logger.call("Long build slot available. Scheduling #{job.runner_name} for deployment...")
33+
break job
3034
elsif !@queue[:default].empty?
3135
break @queue[:default].shift
3236
else

‎src/orka_start_processor.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class OrkaStartProcessor < ThreadRunner
2727

2828
def initialize(queue_type, name)
2929
super("#{self.class.name} (#{name})")
30-
@queue = JobQueue.new(queue_type)
30+
@queue = JobQueue.new(queue_type, method(:log))
3131
end
3232

3333
def pausable?

0 commit comments

Comments
 (0)
Please sign in to comment.