Skip to content

Commit 97bffd5

Browse files
Updated base image of search to redis 8.4: ami-09f0d91e70e7a2515 (#143)
* Updated base image of search to redis 8.4: ami-09f0d91e70e7a2515 * Updated description * Updated file flags
1 parent dc565f0 commit 97bffd5

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ variable "region" {
6060
default = "us-east-2"
6161
}
6262

63-
# (Ubuntu 24.04, memtier 2.1.4 and redis unstable from March 25th 2025)
64-
# https://us-east-2.console.aws.amazon.com/ec2/home?region=us-east-2#ImageDetails:imageId=ami-0e19a771ce5725698
63+
# (Ubuntu 24.04, memtier 2.1.4 and redis 8.4 from Nov 5th 2025)
64+
# https://us-east-2.console.aws.amazon.com/ec2/home?region=us-east-2#ImageDetails:imageId=ami-09f0d91e70e7a2515
6565
variable "instance_ami" {
6666
description = "AMI for aws EC2 instance - us-east-2 Ubuntu 24.04 - perf-base-image-ubuntu24.04-m6i.8xlarge-20250325-0937"
67-
default = "ami-0e19a771ce5725698"
67+
default = "ami-09f0d91e70e7a2515"
6868
}
6969

7070

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ variable "region" {
6060
default = "us-east-2"
6161
}
6262

63-
# (Ubuntu 24.04, memtier 2.1.4 and redis unstable from March 25th 2025)
64-
# https://us-east-2.console.aws.amazon.com/ec2/home?region=us-east-2#ImageDetails:imageId=ami-0e19a771ce5725698
63+
# (Ubuntu 24.04, memtier 2.1.4 and redis 8.4 from Nov 5th 2025)
64+
# https://us-east-2.console.aws.amazon.com/ec2/home?region=us-east-2#ImageDetails:imageId=ami-09f0d91e70e7a2515
6565
variable "instance_ami" {
6666
description = "AMI for aws EC2 instance - us-east-2 Ubuntu 24.04 - perf-base-image-ubuntu24.04-m6i.8xlarge-20250325-0937"
67-
default = "ami-0e19a771ce5725698"
67+
default = "ami-09f0d91e70e7a2515"
6868
}
6969

7070
variable "instance_device_name" {

terraform/perf-base-image-ubuntu24.04-m6i.8xlarge/common.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
backend "s3" {
77
bucket = "performance-cto-group"
88
region = "us-east-1"
9-
key = "benchmarks/infrastructure/perf-base-image-ubuntu24.04-m6i.8xlarge.tfstate"
9+
key = "benchmarks/infrastructure/perf-base-image-ubuntu24.04-m6i.8xlarge-redis-8.4.tfstate"
1010

1111
}
1212
}

terraform/perf-base-image-ubuntu24.04-m6i.8xlarge/install_memtier.sh

100644100755
File mode changed.

terraform/perf-base-image-ubuntu24.04-m6i.8xlarge/install_redis.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export DEBIAN_FRONTEND=noninteractive
33
sudo DEBIAN_FRONTEND=noninteractive apt update -y
44
sudo DEBIAN_FRONTEND=noninteractive apt install zip git libssl-dev make gcc pkg-config python3-pip -y
55
# install libssl1 due to search
6-
sudo git clone https://github.com/redis/redis --depth 1
6+
sudo git clone https://github.com/redis/redis --branch 8.4 --depth 1
77
sudo bash -c "cd redis && sudo make BUILD_TLS=yes -j && sudo make BUILD_TLS=yes install"
88
# check
99
echo "Printing redis-server info"

0 commit comments

Comments
 (0)