Skip to content

Commit c20139f

Browse files
committed
Moving search setup to m6i and removing ssh wait
1 parent f7d5650 commit c20139f

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

terraform/oss-standalone-redisearch-m5/bench-client-resources.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ resource "aws_instance" "client" {
4646
################################################################################
4747
# This will ensure we wait here until the instance is ready to receive the ssh connection
4848
################################################################################
49-
user_data = <<-EOF
50-
#!/bin/bash
51-
echo "Instance is ready" > /var/log/instance_ready.log
52-
EOF
49+
# user_data = <<-EOF
50+
# #!/bin/bash
51+
# echo "Instance is ready" > /var/log/instance_ready.log
52+
# EOF
5353

5454
################################################################################
5555
# Deployment related

terraform/oss-standalone-redisearch-m5/db-resources.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ resource "aws_instance" "server" {
5151
################################################################################
5252
# This will ensure we wait here until the instance is ready to receive the ssh connection
5353
################################################################################
54-
user_data = <<-EOF
55-
#!/bin/bash
56-
echo "Instance is ready" > /var/log/instance_ready.log
57-
EOF
54+
# user_data = <<-EOF
55+
# #!/bin/bash
56+
# echo "Instance is ready" > /var/log/instance_ready.log
57+
# EOF
5858

5959
################################################################################
6060
# Deployment related

terraform/oss-standalone-redisearch-m5/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ variable "ssh_user" {
146146
# m5.8xlarge 32 VCPUs 128 GB MEM
147147
variable "server_instance_type" {
148148
description = "type for aws EC2 instance"
149-
default = "m5.8xlarge"
149+
default = "m6i.8xlarge"
150150
}
151151

152152

@@ -171,7 +171,7 @@ variable "server_instance_cpu_threads_per_core" {
171171

172172
variable "client_instance_type" {
173173
description = "type for aws EC2 instance"
174-
default = "c5.4xlarge"
174+
default = "c6i.4xlarge"
175175
}
176176

177177
variable "client_instance_count" {

0 commit comments

Comments
 (0)