You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
6
+
## [4.4.0] - 2024-04-18
7
+
### Added
8
+
- Add new variable `cpu_limit` and `memory_limit` to support set pod resource guaranteed.
9
+
6
10
## [4.3.2] - 2024-03-26
7
11
### Updated
8
12
- Removed the datadog explicit provider configuration as suggested here: https://developer.hashicorp.com/terraform/language/modules/develop/providers#legacy-shared-modules-with-provider-configurations
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ For more information please refer to the main [Apiary](https://github.com/Expedi
10
10
| aws_region | AWS region to use for resources. | string | - | yes |
11
11
| bastion_ssh_key_secret_name | Secret name in AWS Secrets Manager which stores the private key used to log in to bastions. The secret's key should be `private_key` and the value should be stored as a base64 encoded string. Max character limit for a secret's value is 4096. | string | `` | no |
12
12
| cpu | The number of CPU units to reserve for the Waggle Dance container. Valid values can be 256, 512, 1024, 2048 and 4096. Reference: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html| string |`1024`| no |
13
+
| cpu_limit | The number of CPU limit units to reserve for the Waggle Dance container. Valid values can be 256, 512, 1024, 2048 and 4096. It will use `cpu` * 1.25 if not specified. Reference: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html| string |`1024`| no |
13
14
| cpu_scale_in_cooldown | Cool down time(seconds) of scale in task by cpu usage | number | 300 | no |
14
15
| cpu_scale_out_cooldown | Cool down time(seconds) of scale out task by cpu usage | number | 120 | no |
15
16
| default_latency | Latency used for other (not primary) metastores that don't override it in their own configurations. See `latency` parameter in https://github.com/ExpediaGroup/waggle-dance/blob/main/README.md.| number |`0`| no |
@@ -32,6 +33,7 @@ For more information please refer to the main [Apiary](https://github.com/Expedi
32
33
| k8s_max_replica_count | Max Number of k8s pod replicas to create. | number |`10`| no |
33
34
| local_metastores | List of federated Metastore endpoints directly accessible on the local network. See section [`local_metastores`](#local_metastores) for more info. | list |`<list>`| no |
34
35
| memory | The amount of memory (in MiB) used to allocate for the Waggle Dance container. Valid values: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html| string |`4096`| no |
36
+
| memory_limit | The amount of memory limit (in MiB) used to allocate for the Waggle Dance container, it will use `memory` * 1.25 if the limit is not specified. Valid values: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html| string |`null`| no |
35
37
| primary_metastore_access_type | Primary Hive Metastore access control type. | string |`READ_AND_WRITE_ON_DATABASE_WHITELIST`| no |
36
38
| primary_metastore_host | Primary Hive Metastore hostname configured in Waggle Dance. | string |`localhost`| no |
37
39
| primary_metastore_port | Primary Hive Metastore port | string |`9083`| no |
0 commit comments