Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
e5e5749c
Commit
e5e5749c
authored
21 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Increase interval of periodic schedule() calls from 30 to 60 seconds.
parent
cb487d5d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/slurmctld/slurmctld.h
+9
-1
9 additions, 1 deletion
src/slurmctld/slurmctld.h
with
9 additions
and
1 deletion
src/slurmctld/slurmctld.h
+
9
−
1
View file @
e5e5749c
...
@@ -89,7 +89,7 @@
...
@@ -89,7 +89,7 @@
/* Attempt to schedule jobs every PERIODIC_SCHEDULE seconds despite
/* Attempt to schedule jobs every PERIODIC_SCHEDULE seconds despite
* any RPC activity. This will catch any state transisions that may
* any RPC activity. This will catch any state transisions that may
* have otherwise been missed */
* have otherwise been missed */
#define PERIODIC_SCHEDULE
3
0
#define PERIODIC_SCHEDULE
6
0
/* Check for jobs reaching their time limit every PERIODIC_TIMEOUT seconds */
/* Check for jobs reaching their time limit every PERIODIC_TIMEOUT seconds */
#define PERIODIC_TIMEOUT 60
#define PERIODIC_TIMEOUT 60
...
@@ -629,6 +629,14 @@ extern bool job_epilog_complete(uint32_t job_id, char *node_name,
...
@@ -629,6 +629,14 @@ extern bool job_epilog_complete(uint32_t job_id, char *node_name,
/* job_fini - free all memory associated with job records */
/* job_fini - free all memory associated with job records */
extern
void
job_fini
(
void
);
extern
void
job_fini
(
void
);
/*
* job_is_completing - Determine if jobs are in the process of completing.
* RET - True of any job is in the process of completing
* NOTE: This function can reduce resource fragmentation, which is a
* critical issue on Elan interconnect based systems.
*/
extern
bool
job_is_completing
(
void
);
/*
/*
* job_signal - signal the specified job
* job_signal - signal the specified job
* IN job_id - id of the job to be signaled
* IN job_id - id of the job to be signaled
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment