Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
468 changes: 6 additions & 462 deletions doc/user/content/installation/install-on-aws/_index.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,6 @@ when operating on datasets larger than main memory as well as allows for a more
graceful degradation rather than OOMing. Network-attached storage (like EBS
volumes) can significantly degrade performance and is not supported.

### Swap support

Starting in v0.6.1 of Materialize on AWS Terraform,
disk support (using swap on NVMe instance storage) may be enabled for
Materialize. With this change, the Terraform:

- Creates a node group for Materialize.
- Configures NVMe instance store volumes as swap using a daemonset.
- Enables swap at the Kubelet.

For swap support, the following configuration option is available:

- [`swap_enabled`](https://github.com/MaterializeInc/terraform-aws-materialize?tab=readme-ov-file#input_swap_enabled)

See [Upgrade Notes](https://github.com/MaterializeInc/terraform-aws-materialize?tab=readme-ov-file#v061).


## CPU affinity

It is strongly recommended to enable the Kubernetes `static` [CPU management policy](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/#static-policy).
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "Terraform Provider (legacy)"
description: ""
disable_list: true
disable_toc: true
menu:
main:
parent: "install-on-aws"
identifier: "install-on-aws-legacy-terraform-provider"
weight: 5


---

The tutorials in this section show you how to deploy Materialize using the [Materialize on AWS Legacy Terraform
module](https://github.com/MaterializeInc/terraform-aws-materialize).


| Guide | Description |
|-------|-------------|
| [Install](/installation/install-on-aws/legacy-terraform-provider/install/) | Install Materialize on AWS |
| [Upgrade](/installation/install-on-aws/legacy-terraform-provider/upgrade/) | Upgrade your Materialize deployment on AWS |
| [Appendix: AWS configuration](/installation/install-on-aws/legacy-terraform-provider/appendix-configuration/) | Configuration for AWS deployments |
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Appendix: Required configuration"
description: "Required configuration for Materialize on AWS Terraform."
menu:
main:
parent: "install-on-aws"
parent: "install-on-aws-legacy-terraform-provider"
identifier: "appendix-aws-provider-config"
weight: 50
aliases:
Expand Down Expand Up @@ -60,3 +60,19 @@ provider "helm" {
}
}
```

## Swap support

Starting in v0.6.1 of Materialize on AWS Terraform,
disk support (using swap on NVMe instance storage) may be enabled for
Materialize. With this change, the Terraform:

- Creates a node group for Materialize.
- Configures NVMe instance store volumes as swap using a daemonset.
- Enables swap at the Kubelet.

For swap support, the following configuration option is available:

- [`swap_enabled`](https://github.com/MaterializeInc/terraform-aws-materialize?tab=readme-ov-file#input_swap_enabled)

See [Upgrade Notes](https://github.com/MaterializeInc/terraform-aws-materialize?tab=readme-ov-file#v061).
Loading