Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/szarnyasg/bench
https://github.com/szarnyasg/bench
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/szarnyasg/bench
- Owner: szarnyasg
- Created: 2023-11-28T08:29:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T06:42:15.000Z (about 1 year ago)
- Last Synced: 2024-11-25T05:44:52.288Z (about 2 months ago)
- Language: Shell
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bench
Create an EC2 instance with the following disk settings:
* capacity: 200GB
* type: gp3
* IOPS: 3000Steps to run:
1. Connect to the instance via SSH.
2. Start a `tmux` session.
3. Set the instance type, e.g.```
INSTANCE_TYPE=m6a.2xlarge
```4. Run the benchmark:
```bash
if [[ -z ${INSTANCE_TYPE} ]]; then
echo Environment variable INSTANCE_TYPE must be set.
else
git clone https://github.com/szarnyasg/bench
cd bench
./run.sh ${INSTANCE_TYPE}
fi
```