Skip to content

Commit a675433

Browse files
committed
Switch from r7g.xlarge to r7g.2xlarge
1 parent aa880a3 commit a675433

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The module has been tested with:
8484
| <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 |
8585
| <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 |
8686
| <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 |
87-
| <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.xlarge"<br/>]</pre> | no |
87+
| <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 |
8888
| <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 |
8989
| <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 |
9090
| <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.xlarge"]
24+
node_group_instance_types = ["r7g.2xlarge"]
2525
node_group_desired_size = 1
2626
node_group_min_size = 1
2727
node_group_max_size = 2

terraform.tfvars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tags = {
1010
Project = "my-project"
1111
}
1212

13-
node_group_instance_types = ["r7g.xlarge"]
13+
node_group_instance_types = ["r7g.2xlarge"]
1414
node_group_desired_size = 1
1515
node_group_min_size = 1
1616
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.xlarge"]
114+
default = ["r7g.2xlarge"]
115115
}
116116

117117
variable "node_group_capacity_type" {

0 commit comments

Comments
 (0)