Merge pull request 'Correctly calculate agent sleep time' (#310) from Chewing_Bever/vieter:more-fixes into dev
ci/woodpecker/push/docs Pipeline was successful Details
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/arch Pipeline was successful Details
ci/woodpecker/push/build Pipeline was successful Details
ci/woodpecker/push/man Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/docker Pipeline was successful Details
ci/woodpecker/push/deploy Pipeline was successful Details

Reviewed-on: #310
pull/316/head
Jef Roosens 2022-12-16 22:13:41 +01:00
commit 300c5490a6
1 changed files with 21 additions and 14 deletions

View File

@ -46,16 +46,22 @@ pub fn (mut d AgentDaemon) run() {
// This is just so that the very first time the loop is ran, the jobs are // This is just so that the very first time the loop is ran, the jobs are
// always polled // always polled
mut last_poll_time := time.now().add_seconds(-d.conf.polling_frequency) mut last_poll_time := time.now().add_seconds(-d.conf.polling_frequency)
mut sleep_time := 1 * time.second mut sleep_time := 0 * time.second
mut finished, mut empty := 0, 0 mut finished, mut empty, mut running := 0, 0, 0
for { for {
if sleep_time > 0 {
d.ldebug('Sleeping for $sleep_time')
time.sleep(sleep_time)
}
finished, empty = d.update_atomics() finished, empty = d.update_atomics()
running = d.conf.max_concurrent_builds - finished - empty
// No new finished builds and no free slots, so there's nothing to be // No new finished builds and no free slots, so there's nothing to be
// done // done
if finished + empty == 0 { if finished + empty == 0 {
time.sleep(1 * time.second) sleep_time = 1 * time.second
continue continue
} }
@ -71,13 +77,18 @@ pub fn (mut d AgentDaemon) run() {
// clustered together (especially when mostly using the global cron // clustered together (especially when mostly using the global cron
// schedule), so there's a much higher chance jobs are available. // schedule), so there's a much higher chance jobs are available.
if finished > 0 || time.now() >= last_poll_time.add_seconds(d.conf.polling_frequency) { if finished > 0 || time.now() >= last_poll_time.add_seconds(d.conf.polling_frequency) {
d.ldebug('Polling for new jobs')
new_configs := d.client.poll_jobs(d.conf.arch, finished + empty) or { new_configs := d.client.poll_jobs(d.conf.arch, finished + empty) or {
d.lerror('Failed to poll jobs: $err.msg()') d.lerror('Failed to poll jobs: $err.msg()')
// TODO pick a better delay here // TODO pick a better delay here
time.sleep(5 * time.second) sleep_time = 5 * time.second
continue continue
} }
d.ldebug('Received $new_configs.len jobs')
last_poll_time = time.now() last_poll_time = time.now()
for config in new_configs { for config in new_configs {
@ -100,21 +111,17 @@ pub fn (mut d AgentDaemon) run() {
// build. // build.
d.start_build(config) d.start_build(config)
} running++
// No new jobs were scheduled and the agent isn't doing anything,
// so we just wait until the next polling period.
if new_configs.len == 0 && finished + empty == d.conf.max_concurrent_builds {
sleep_time = time.now() - last_poll_time
} }
} }
// The agent is not doing anything, so we just wait until the next poll // The agent is not doing anything, so we just wait until the next poll
// time // time
else if finished + empty == d.conf.max_concurrent_builds { if running == 0 {
sleep_time = time.now() - last_poll_time sleep_time = last_poll_time.add_seconds(d.conf.polling_frequency) - time.now()
} else {
sleep_time = 1 * time.second
} }
time.sleep(sleep_time)
} }
} }