Updating any AWS shape instance to use our existing reserved instance types. This simply ensures if we ever do run one of these tests it is against existing reserved instances. If the tests get removed thats OK also.

This commit is contained in:
Jason Allison 2022-12-14 12:25:05 -05:00
parent 9759602f94
commit 69be968d6d
5 changed files with 10 additions and 9 deletions

View file

@ -44,7 +44,7 @@ Parameters:
Description: The number of EC2 instances for the FeatureBase cluster
FBInstanceSize:
Type: String
Default: m5ad.16xlarge
Default: m6i.16xlarge
Description: Class of EC2 instance used to host the deployment.
# note that we are using a producer, which is also the kafka host
# and the consumer uses the kafka-static binary for ingesting data
@ -52,10 +52,10 @@ Parameters:
# producer/consumer related params
ProducerInstanceSize:
Type: String
Default: m4.16xlarge
Default: m6i.16xlarge
ConsumerInstanceSize:
Type: String
Default: m4.16xlarge
Default: m6i.16xlarge
ProducerInstanceCount:
Type: Number
Default: 1

View file

@ -10,7 +10,7 @@ variable "fb_cluster_arch" {
variable "fb_ingest_type" {
type = string
default = "c6g.2xlarge"
default = "m6g.2xlarge"
}
variable "fb_ingest_node_count" {
@ -20,7 +20,7 @@ variable "fb_ingest_node_count" {
variable "fb_data_node_type" {
type = string
default = "c6g.16xlarge"
default = "m6g.16xlarge"
}
variable "fb_data_node_count" {

View file

@ -7,6 +7,7 @@ echo "Running delete_cloud_init.sh"
# create and initialize a raid0 array
# for m5ad.16xlarge instance type, there are 4 NVMe SSDs.
# Note JALLISON 20221214 - we are now using m6i instance types for cost savings
sudo mdadm --create --verbose /dev/md0 --level=0 --raid-devices=4 /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1
# format filesystem

View file

@ -4,10 +4,10 @@ module "ci-cluster" {
region = var.region
profile = var.profile
fb_cluster_arch = ["x86_64"]
fb_data_node_type = "m5ad.16xlarge"
fb_data_node_type = "m6i.16xlarge"
fb_data_node_count = 5
ebs_volumes = []
fb_ingest_type = "m4.16xlarge"
fb_ingest_type = "m6i.16xlarge"
fb_ingest_node_count = 2
fb_ingest_disk_size_gb = 1200
vpc_id = "vpc-05a26a122f961dc2b"

View file

@ -3,10 +3,10 @@ module "able-cluster" {
cluster_prefix = var.cluster_prefix
region = var.region
profile = var.profile
fb_data_node_type = "c6g.16xlarge"
fb_data_node_type = "m6g.16xlarge"
fb_data_disk_iops = 10000
fb_data_node_count = 3
fb_ingest_type = "c6g.2xlarge"
fb_ingest_type = "m6g.2xlarge"
fb_ingest_disk_iops = 10000
fb_ingest_disk_size_gb = 500
fb_ingest_node_count = 1