Skip to content

Commit 1e8e3c4

Browse files
committed
Switch defaults to r8g node types
1 parent a869f64 commit 1e8e3c4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The module has been tested with:
2323

2424
| Name | Version |
2525
|------|---------|
26-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.84.0 |
26+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.87.0 |
2727

2828
## Modules
2929

@@ -85,7 +85,7 @@ The module has been tested with:
8585
| <a name="input_node_group_ami_type"></a> [node\_group\_ami\_type](#input\_node\_group\_ami\_type) | AMI type for the node group | `string` | `"AL2023_ARM_64_STANDARD"` | no |
8686
| <a name="input_node_group_capacity_type"></a> [node\_group\_capacity\_type](#input\_node\_group\_capacity\_type) | Capacity type for worker nodes (ON\_DEMAND or SPOT) | `string` | `"ON_DEMAND"` | no |
8787
| <a name="input_node_group_desired_size"></a> [node\_group\_desired\_size](#input\_node\_group\_desired\_size) | Desired number of worker nodes | `number` | `2` | no |
88-
| <a name="input_node_group_instance_types"></a> [node\_group\_instance\_types](#input\_node\_group\_instance\_types) | Instance types for worker nodes.<br/><br/>Recommended Configuration for Running Materialize with disk:<br/>- Tested instance types: `m6g`, `m7g` families (ARM-based Graviton instances)<br/>- AMI: AWS Bottlerocket (optimized for container workloads)<br/>- Note: Ensure instance store volumes are available and attached to the nodes for optimal performance with disk-based workloads. | `list(string)` | <pre>[<br/> "r7g.2xlarge"<br/>]</pre> | no |
88+
| <a name="input_node_group_instance_types"></a> [node\_group\_instance\_types](#input\_node\_group\_instance\_types) | Instance types for worker nodes.<br/><br/>Recommended Configuration for Running Materialize with disk:<br/>- Tested instance types: `m6g`, `m7g` families (ARM-based Graviton instances)<br/>- AMI: AWS Bottlerocket (optimized for container workloads)<br/>- Note: Ensure instance store volumes are available and attached to the nodes for optimal performance with disk-based workloads. | `list(string)` | <pre>[<br/> "r8g.2xlarge"<br/>]</pre> | no |
8989
| <a name="input_node_group_max_size"></a> [node\_group\_max\_size](#input\_node\_group\_max\_size) | Maximum number of worker nodes | `number` | `4` | no |
9090
| <a name="input_node_group_min_size"></a> [node\_group\_min\_size](#input\_node\_group\_min\_size) | Minimum number of worker nodes | `number` | `1` | no |
9191
| <a name="input_operator_namespace"></a> [operator\_namespace](#input\_operator\_namespace) | Namespace for the Materialize operator | `string` | `"materialize"` | no |

examples/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module "materialize_infrastructure" {
2121

2222
# EKS Configuration
2323
cluster_version = "1.32"
24-
node_group_instance_types = ["r7g.2xlarge"]
24+
node_group_instance_types = ["r8g.2xlarge"]
2525
node_group_desired_size = 1
2626
node_group_min_size = 1
2727
node_group_max_size = 2

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Recommended Configuration for Running Materialize with disk:
111111
- Note: Ensure instance store volumes are available and attached to the nodes for optimal performance with disk-based workloads.
112112
EOF
113113
type = list(string)
114-
default = ["r7g.2xlarge"]
114+
default = ["r8g.2xlarge"]
115115
}
116116

117117
variable "node_group_capacity_type" {

0 commit comments

Comments
 (0)