Skip to content

Commit

Permalink
increase disk iops, throughput and size (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaMandal0rian authored Jan 27, 2025
1 parent 921c16f commit 8bfce5b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion explorer/terraform/aws/mainnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ variable "private_key_path" {

variable "disk_volume_size" {
type = number
default = 200
default = 1500
}

variable "disk_volume_type" {
Expand Down
16 changes: 8 additions & 8 deletions templates/terraform/subql/base/instances.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ resource "aws_instance" "subql_blue_node" {
device_name = "/dev/sda1"
volume_size = var.blue-subql-node-config.disk-volume-size
volume_type = var.blue-subql-node-config.disk-volume-type
iops = 3000
throughput = 250
iops = 12000
throughput = 750
}

tags = {
Expand Down Expand Up @@ -83,8 +83,8 @@ resource "aws_instance" "subql_green_node" {
device_name = "/dev/sda1"
volume_size = var.green-subql-node-config.disk-volume-size
volume_type = var.green-subql-node-config.disk-volume-type
iops = 3000
throughput = 250
iops = 12000
throughput = 750
}

tags = {
Expand Down Expand Up @@ -149,8 +149,8 @@ resource "aws_instance" "nova_subql_blue_node" {
device_name = "/dev/sda1"
volume_size = var.nova-blue-subql-node-config.disk-volume-size
volume_type = var.nova-blue-subql-node-config.disk-volume-type
iops = 3000
throughput = 250
iops = 12000
throughput = 750
}

tags = {
Expand Down Expand Up @@ -214,8 +214,8 @@ resource "aws_instance" "nova_subql_green_node" {
device_name = "/dev/sda1"
volume_size = var.nova-green-subql-node-config.disk-volume-size
volume_type = var.nova-green-subql-node-config.disk-volume-type
iops = 3000
throughput = 250
iops = 12000
throughput = 750
}

tags = {
Expand Down

0 comments on commit 8bfce5b

Please sign in to comment.