Skip to content

Commit

Permalink
Merge branch 'feature/sysctl_tcp_keepalice_config' of github.com:Expe…
Browse files Browse the repository at this point in the history
…diaGroup/apiary-data-lake into feature/sysctl_tcp_keepalice_config
  • Loading branch information
patduin committed Jan 19, 2024
2 parents 208cc68 + 96f3df7 commit 1271258
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions VARIABLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@
| datadog_metrics_hms_readwrite_readonly | Prometheus Metrics sent to datadog | list(string) | ["metrics_classloading_loaded_value","metrics_threads_count_value","metrics_memory_heap_max_value","metrics_init_total_count_tables_value","metrics_init_total_count_dbs_value","metrics_memory_heap_used_value","metrics_init_total_count_partitions_value"] | no |
| datadog_metrics_port | Port in which metrics will be send for Datadog | string | 8080 | no |
| enable_sysctl_config_in_eks | Enable sysctl configuration for Hive Metastore. For EKS you need to allow this on your cluster (https://kubernetes.io/docs/tasks/administer-cluster/sysctl-cluster/ check EKS version for details). Also see tcp_keepalive_* variables. | bool | false | no |
| tcp_keepalive_time | Sets net.ipv4.tcp_keepalive_time (seconds), enable via 'enable_sysctl_config'. | number | `200` | no |
| tcp_keepalive_intvl | Sets net.ipv4.tcp_keepalive_intvl (seconds), enable via 'enable_sysctl_config'. | number | `30` | no |
| tcp_keepalive_probes | Sets net.ipv4.tcp_keepalive_probes (seconds), enable via 'enable_sysctl_config'. | number | `2` | no |
| tcp_keepalive_time | Sets net.ipv4.tcp_keepalive_time (seconds). | number | `200` | no |
| tcp_keepalive_intvl | Sets net.ipv4.tcp_keepalive_intvl (seconds) | number | `30` | no |
| tcp_keepalive_probes | Sets net.ipv4.tcp_keepalive_probes (seconds) | number | `2` | no |

### apiary_assume_roles

Expand Down
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -723,19 +723,19 @@ variable "enable_sysctl_config_in_eks" {
}

variable "tcp_keepalive_time" {
description = "Sets net.ipv4.tcp_keepalive_time (seconds), enable via 'enable_sysctl_config'."
description = "Sets net.ipv4.tcp_keepalive_time (seconds)."
type = number
default = 200
}

variable "tcp_keepalive_intvl" {
description = "Sets net.ipv4.tcp_keepalive_intvl (seconds), enable via 'enable_sysctl_config'."
description = "Sets net.ipv4.tcp_keepalive_intvl (seconds)."
type = number
default = 30
}

variable "tcp_keepalive_probes" {
description = "Sets net.ipv4.tcp_keepalive_probes (number), enable via 'enable_sysctl_config'."
description = "Sets net.ipv4.tcp_keepalive_probes (number)."
type = number
default = 2
}
}

0 comments on commit 1271258

Please sign in to comment.