Skip to content

Commit

Permalink
Merge pull request #20 from comet-ml/thread_stack
Browse files Browse the repository at this point in the history
Fix duplicate thread_stack parameter in RDS
  • Loading branch information
burmek authored Apr 24, 2024
2 parents 9720b23 + 4cb6482 commit 16b9016
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions modules/comet_rds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ resource "aws_rds_cluster_parameter_group" "cometml-cluster-pg" {
parameter {
apply_method = "pending-reboot"
name = "thread_stack"
value = "2000000"
value = "6291456"
}
parameter {
apply_method = "pending-reboot"
Expand All @@ -109,11 +109,6 @@ resource "aws_rds_cluster_parameter_group" "cometml-cluster-pg" {
name = "log_bin_trust_function_creators"
value = "1"
}
parameter {
apply_method = "pending-reboot"
name = "thread_stack"
value = "6291456"
}
}

resource "aws_security_group" "mysql_sg" {
Expand Down

0 comments on commit 16b9016

Please sign in to comment.