Skip to content

Commit

Permalink
up amount of RAM amd maxvcpus. Remove surious defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
gillins committed May 15, 2024
1 parent 12519ad commit 0804dc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions parallel_examples/awsbatch/do_prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ def getCmdargs():
p.add_argument("-b", "--bands",
help="Comma seperated list of bands to use. 1-based. Uses all bands by default.")
p.add_argument("--tilesize", required=True, type=int,
help="Tile Size to use. (default=%(default)s)")
help="Tile Size to use.")
p.add_argument("--overlapsize", required=True, type=int,
help="Tile Overlap to use. (default=%(default)s)")
help="Tile Overlap to use.")
p.add_argument("--pickle", required=True,
help="name of pickle to save result of preparation into")
p.add_argument("--region", default="us-west-2",
Expand Down
4 changes: 2 additions & 2 deletions parallel_examples/awsbatch/template/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Resources:
ContainerProperties:
Image: !Join ['', [!GetAtt BatchRepository.RepositoryUri, ":latest"]]
Vcpus: 1
Memory: 8000
Memory: 16000
RetryStrategy:
Attempts: 1
# Job for stitching tiles together
Expand Down Expand Up @@ -211,7 +211,7 @@ Resources:
Type: EC2
MinvCpus: 0
DesiredvCpus: 0
MaxvCpus: 32
MaxvCpus: 1024
InstanceTypes:
#- a1.medium
- optimal
Expand Down

0 comments on commit 0804dc6

Please sign in to comment.