-
-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from mrocklin/separate-config
Separate configuration per resource manager
- Loading branch information
Showing
7 changed files
with
168 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,81 @@ | ||
jobqueue: | ||
name: dask-worker | ||
threads: 2 | ||
processes: 4 | ||
memory: 8GB | ||
interface: null | ||
death-timeout: 60 | ||
local-directory: null | ||
extra: "" | ||
env-extra: [] | ||
|
||
queue: null | ||
project: null | ||
walltime: '00:30:00' | ||
|
||
pbs: | ||
name: dask-worker | ||
|
||
# Dask worker options | ||
threads: 2 | ||
processes: 4 | ||
memory: 8GB | ||
interface: null | ||
death-timeout: 60 | ||
local-directory: null | ||
|
||
# PBS resource manager options | ||
queue: null | ||
project: null | ||
walltime: '00:30:00' | ||
extra: "" | ||
env-extra: [] | ||
resource-spec: null | ||
job-extra: [] | ||
|
||
sge: | ||
name: dask-worker | ||
|
||
# Dask worker options | ||
threads: 2 | ||
processes: 4 | ||
memory: 8GB | ||
interface: null | ||
death-timeout: 60 | ||
local-directory: null | ||
|
||
# SGE resource manager options | ||
queue: null | ||
project: null | ||
walltime: '00:30:00' | ||
extra: "" | ||
env-extra: [] | ||
|
||
resource-spec: null | ||
|
||
slurm: | ||
name: dask-worker | ||
|
||
# Dask worker options | ||
threads: 2 | ||
processes: 4 | ||
memory: 8GB | ||
interface: null | ||
death-timeout: 60 | ||
local-directory: null | ||
|
||
# SLURM resource manager options | ||
queue: null | ||
project: null | ||
walltime: '00:30:00' | ||
extra: "" | ||
env-extra: [] | ||
job-cpu: null | ||
job-mem: null | ||
job-extra: {} | ||
|
||
moab: | ||
name: dask-worker | ||
|
||
# Dask worker options | ||
threads: 2 | ||
processes: 4 | ||
memory: 8GB | ||
interface: null | ||
death-timeout: 60 | ||
local-directory: null | ||
|
||
# PBS resource manager options | ||
queue: null | ||
project: null | ||
walltime: '00:30:00' | ||
extra: "" | ||
env-extra: [] | ||
resource-spec: null | ||
job-extra: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters