Skip to content

Commit

Permalink
scale up worker volume
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsmejia committed Nov 9, 2023
1 parent 401c869 commit a9efff4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion infrastructure/batch/launch_templates.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ resource "aws_launch_template" "data_refinery_worker" {
device_name = "/dev/sdf"
ebs {
volume_type = "st1"
volume_size = 500
# Provide the workers with 1TB of storage
# for working with more experiments concurrently.
volume_size = 1000
encrypted = true
delete_on_termination = true
}
Expand Down

0 comments on commit a9efff4

Please sign in to comment.