Skip to content

Commit

Permalink
Merge pull request #117 from jolespin/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
jolespin authored Aug 27, 2024
2 parents c3629e5 + 8630572 commit ae5ef02
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions walkthroughs/docs/adapting_commands_for_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ This job definition pulls the [jolespin/veba_preprocess](https://hub.docker.com/
"jobDefinitionName": "preprocess__S1",
"type": "container",
"containerProperties": {
"image": "jolespin/veba_preprocess:2.0.0",
"image": "jolespin/veba_preprocess:2.2.0",
"command": [
"preprocess.py",
"-1",
Expand Down Expand Up @@ -121,9 +121,6 @@ This job definition pulls the [jolespin/veba_preprocess](https://hub.docker.com/
"sizeInGiB": 40
}
},
"tags": {
"Name": "preprocess__S1"
},
"platformCapabilities": [
"FARGATE"
]
Expand All @@ -142,5 +139,7 @@ aws batch register-job-definition --cli-input-json file://${FILE}
Next step is to submit the job to the queue.

```
aws batch submit-job --job-definition ${JOB} --job-name ${JOB} --job-queue ${QUEUE}
QUEUE="some-aws-job-queue-name"
JOB_NAME="preprocess__S1"
aws batch submit-job --job-definition ${JOB_NAME} --job-name ${JOB_NAME} --job-queue ${QUEUE}
```

0 comments on commit ae5ef02

Please sign in to comment.