Small fixes to test cases

This commit is contained in:
Ian Roddis
2022-01-28 10:23:21 -04:00
parent c09d5b7d8b
commit c9820c19a0
11 changed files with 73 additions and 68 deletions

View File

@@ -91,7 +91,7 @@ Below is an example DAG Run submission:
"task_one": {
"job": {
"command": [
"/usr/bin/touch",
"/bin/touch",
"/tmp/somefile"
]
},
@@ -101,7 +101,7 @@ Below is an example DAG Run submission:
"task_two": {
"job": {
"command": [
"/usr/bin/touch",
"/bin/touch",
"/tmp/someotherfile"
]
},
@@ -133,7 +133,7 @@ For instance:
"task_one": {
"job": {
"command": [
"/usr/bin/touch",
"/bin/touch",
"{{DIRECTORY}}/{{FILE}}"
]
},
@@ -167,7 +167,7 @@ Example:
"populate_inputs": {
"job": {
"command": [
"/usr/bin/touch",
"/bin/touch",
"{{DIRECTORY}}/{{FILE}}"
]
}
@@ -346,8 +346,8 @@ and capture output.
| Field | Sample | Description |
|---------|--------|--------------|
| command | `[ "/usr/bin/echo", "param1" ]` | The command to run |
| commandString | `"/usr/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
| command | `[ "/bin/echo", "param1" ]` | The command to run |
| commandString | `"/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
| environment | `[ "DATE=2021-05-03" ]` | Environment variables to set for script |
Slurm Executor (SlurmTaskExecutor)
@@ -361,8 +361,8 @@ Required `job` config values:
| Field | Sample | Description |
|---------|--------|--------------|
| command | `[ "/usr/bin/echo", "param1" ]` | The command to run on a slurm host |
| commandString | `"/usr/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
| command | `[ "/bin/echo", "param1" ]` | The command to run on a slurm host |
| commandString | `"/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
| environment | `[ "DATE=2021-05-03" ]` | Environment variables to set for script |
| minCPUs | `"1"` | Minimum number of CPUs required |
| minMemoryMB | `"1"` | Minimum memory required, in MB |
@@ -394,8 +394,8 @@ Enforcement via cgroups is planned.
| Field | Sample | Description |
|---------|--------|--------------|
| command | `[ "/usr/bin/echo", "param1" ]` | The command to run |
| commandString | `"/usr/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
| command | `[ "/bin/echo", "param1" ]` | The command to run |
| commandString | `"/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
| environment | `[ "DATE=2021-05-03" ]` | Environment variables to set for script |
| cores | "1" | Number of cores required by the task |
| memoryMB | "100" | Amount of memory (RSS) required by the task, in MB |