diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-01-16 14:04:51 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2023-01-16 14:06:34 +0000 |
commit | 5a5f05618e7c1fd9e7983a90f0ba75b492e548d9 (patch) | |
tree | 11422d903f00d044983c6735db2f5fc3ce285eef /fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf | |
parent | 2c0f9f9e887adace903ec1f8b514c02005ef3577 (diff) |
fix(etl): Split memory usage
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Icd6b6bbff65ef70fd85bf3595c1d2a1a06655416
Diffstat (limited to 'fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf')
-rw-r--r-- | fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf b/fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf index 9357c096f3..f6d318e855 100644 --- a/fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf +++ b/fdio.infra.terraform/terraform-nomad-pyspark-etl/variables.tf @@ -27,7 +27,7 @@ variable "aws_default_region" { variable "cpu" { description = "Specifies the CPU required to run this task in MHz." type = number - default = 20000 + default = 10000 } variable "cron" { @@ -57,7 +57,7 @@ variable "job_name" { variable "memory" { description = "Specifies the memory required in MB." type = number - default = 60000 + default = 50000 } variable "out_aws_access_key_id" { |