Max Inden 53ff8b5db1
feat(perf): add (automation, provision, build, run) tooling (#184)
This project includes the following components:

- `terraform/`: a Terraform scripts to provision infrastructure
- `impl/`: implementations of the [libp2p perf
  protocol](https://github.com/libp2p/specs/blob/master/perf/perf.md) running on
  top of e.g. go-libp2p, rust-libp2p or Go's std-library https stack
- `runner/`: a set of scripts building and running the above implementations on
  the above infrastructure, reporting the results in `benchmark-results.json`

Benchmark results can be visualized with
https://observablehq.com/@mxinden-workspace/libp2p-performance-dashboard.

Co-authored-by: Marco Munizaga <git@marcopolo.io>
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
Co-authored-by: Piotr Galar <piotr.galar@gmail.com>
2023-06-22 13:54:09 +02:00

112 lines
2.2 KiB
HCL

terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.67.0"
}
}
}
variable "region" {
description = "The AWS region of the provider"
}
variable "ami" {
description = "The Amazon Machine Image to use"
}
locals {
availability_zone = "${var.region}a"
}
resource "aws_vpc" "perf" {
cidr_block = "10.0.0.0/16"
}
resource "aws_subnet" "perf" {
vpc_id = aws_vpc.perf.id
cidr_block = "10.0.0.0/16"
availability_zone = local.availability_zone
map_public_ip_on_launch = true
}
resource "aws_internet_gateway" "perf" {
vpc_id = aws_vpc.perf.id
}
resource "aws_route_table" "perf" {
vpc_id = aws_vpc.perf.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.perf.id
}
}
resource "aws_route_table_association" "perf" {
subnet_id = aws_subnet.perf.id
route_table_id = aws_route_table.perf.id
}
resource "aws_security_group" "restricted_inbound" {
name = "restricted_inbound"
description = "Allow SSH and port 4001 inbound traffic (TCP and UDP), allow all outbound traffic"
vpc_id = aws_vpc.perf.id
# ICMP
ingress {
from_port = -1
to_port = -1
protocol = "icmp"
cidr_blocks = ["0.0.0.0/0"]
}
# SSH (TCP)
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 1
to_port = 65535
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 1
to_port = 65535
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_launch_template" "perf" {
name = "perf-node"
image_id = var.ami
instance_type = "m5n.8xlarge"
# Debug via:
# - /var/log/cloud-init.log and
# - /var/log/cloud-init-output.log
user_data = filebase64("${path.module}/files/user-data.sh")
instance_initiated_shutdown_behavior = "terminate"
network_interfaces {
subnet_id = aws_subnet.perf.id
security_groups = [aws_security_group.restricted_inbound.id]
delete_on_termination = true
}
}