Skip to content
Snippets Groups Projects
Commit b3a49e14 authored by Morris Jette's avatar Morris Jette
Browse files

Expand backfill scheduling logs

parent 5675c5f7
No related branches found
No related tags found
No related merge requests found
...@@ -823,7 +823,7 @@ static int _attempt_backfill(void) ...@@ -823,7 +823,7 @@ static int _attempt_backfill(void)
node_space_map_t *node_space; node_space_map_t *node_space;
struct timeval bf_time1, bf_time2; struct timeval bf_time1, bf_time2;
int rc = 0; int rc = 0;
int job_test_count = 0, pend_time; int job_test_count = 0, test_time_count = 0, pend_time;
uint32_t *uid = NULL, nuser = 0, bf_parts = 0, *bf_part_jobs = NULL; uint32_t *uid = NULL, nuser = 0, bf_parts = 0, *bf_part_jobs = NULL;
uint16_t *njobs = NULL; uint16_t *njobs = NULL;
bool already_counted; bool already_counted;
...@@ -945,8 +945,8 @@ static int _attempt_backfill(void) ...@@ -945,8 +945,8 @@ static int _attempt_backfill(void)
(_delta_tv(&start_tv) >= sched_timeout)) { (_delta_tv(&start_tv) >= sched_timeout)) {
if (debug_flags & DEBUG_FLAG_BACKFILL) { if (debug_flags & DEBUG_FLAG_BACKFILL) {
END_TIMER; END_TIMER;
info("backfill: completed yielding locks " info("backfill: yielding locks after testing "
"after testing %u(%d) jobs, %s", "%u(%d) jobs, %s",
slurmctld_diag_stats.bf_last_depth, slurmctld_diag_stats.bf_last_depth,
job_test_count, TIME_STR); job_test_count, TIME_STR);
} }
...@@ -968,6 +968,7 @@ static int _attempt_backfill(void) ...@@ -968,6 +968,7 @@ static int _attempt_backfill(void)
sched_start = time(NULL); sched_start = time(NULL);
gettimeofday(&start_tv, NULL); gettimeofday(&start_tv, NULL);
job_test_count = 0; job_test_count = 0;
test_time_count = 0;
START_TIMER; START_TIMER;
} }
...@@ -1228,6 +1229,7 @@ next_task: ...@@ -1228,6 +1229,7 @@ next_task:
_set_job_time_limit(job_ptr, orig_time_limit); _set_job_time_limit(job_ptr, orig_time_limit);
break; break;
} }
test_time_count++;
if (((defer_rpc_cnt > 0) && if (((defer_rpc_cnt > 0) &&
(slurmctld_config.server_thread_count >= defer_rpc_cnt)) || (slurmctld_config.server_thread_count >= defer_rpc_cnt)) ||
(_delta_tv(&start_tv) >= sched_timeout)) { (_delta_tv(&start_tv) >= sched_timeout)) {
...@@ -1236,10 +1238,10 @@ next_task: ...@@ -1236,10 +1238,10 @@ next_task:
_set_job_time_limit(job_ptr, orig_time_limit); _set_job_time_limit(job_ptr, orig_time_limit);
if (debug_flags & DEBUG_FLAG_BACKFILL) { if (debug_flags & DEBUG_FLAG_BACKFILL) {
END_TIMER; END_TIMER;
info("backfill: completed yielding locks " info("backfill: yielding locks after testing "
"after testing %u(%d) jobs, %s", "%u(%d) jobs tested, %u time slots, %s",
slurmctld_diag_stats.bf_last_depth, slurmctld_diag_stats.bf_last_depth,
job_test_count, TIME_STR); job_test_count, test_time_count, TIME_STR);
} }
if ((_yield_locks(yield_sleep) && !backfill_continue) || if ((_yield_locks(yield_sleep) && !backfill_continue) ||
(slurmctld_conf.last_update != config_update) || (slurmctld_conf.last_update != config_update) ||
...@@ -1273,6 +1275,7 @@ next_task: ...@@ -1273,6 +1275,7 @@ next_task:
sched_start = time(NULL); sched_start = time(NULL);
gettimeofday(&start_tv, NULL); gettimeofday(&start_tv, NULL);
job_test_count = 1; job_test_count = 1;
test_time_count = 0;
START_TIMER; START_TIMER;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment