All Projects → earlephilhower → Ezfio

earlephilhower / Ezfio

Licence: gpl-2.0
Simple NVME/SAS/SATA SSD test framework for Linux and Windows

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Ezfio

Bench Scripts
A compilation of Linux server benchmarking scripts.
Stars: ✭ 873 (+859.34%)
Mutual labels:  performance, benchmark, benchmarking
Phoronix Test Suite
The Phoronix Test Suite open-source, cross-platform automated testing/benchmarking software.
Stars: ✭ 1,339 (+1371.43%)
Mutual labels:  performance, benchmark, benchmarking
Sysbench Docker Hpe
Sysbench Dockerfiles and Scripts for VM and Container benchmarking MySQL
Stars: ✭ 14 (-84.62%)
Mutual labels:  performance, benchmark, benchmarking
Benchmarkdotnet
Powerful .NET library for benchmarking
Stars: ✭ 7,138 (+7743.96%)
Mutual labels:  performance, benchmark, benchmarking
Are We Fast Yet
Are We Fast Yet? Comparing Language Implementations with Objects, Closures, and Arrays
Stars: ✭ 161 (+76.92%)
Mutual labels:  performance, benchmark, benchmarking
Gatling Dubbo
A gatling plugin for running load tests on Apache Dubbo(https://github.com/apache/incubator-dubbo) and other java ecosystem.
Stars: ✭ 131 (+43.96%)
Mutual labels:  performance, benchmark, benchmarking
Pytest Benchmark
py.test fixture for benchmarking code
Stars: ✭ 730 (+702.2%)
Mutual labels:  performance, benchmark, benchmarking
Karma Benchmark
A Karma plugin to run Benchmark.js over multiple browsers with CI compatible output.
Stars: ✭ 88 (-3.3%)
Mutual labels:  performance, benchmark, benchmarking
Jsperf.com
jsperf.com v2. https://github.com/h5bp/lazyweb-requests/issues/174
Stars: ✭ 1,178 (+1194.51%)
Mutual labels:  performance, benchmark, benchmarking
Sltbench
C++ benchmark tool. Practical, stable and fast performance testing framework.
Stars: ✭ 137 (+50.55%)
Mutual labels:  performance, benchmark, benchmarking
Crossplatformdisktest
Windows, macOS and Android storage (HDD, SSD, RAM) speed testing/performance benchmarking app
Stars: ✭ 123 (+35.16%)
Mutual labels:  ssd, performance, benchmark
Web Tooling Benchmark
JavaScript benchmark for common web developer workloads
Stars: ✭ 290 (+218.68%)
Mutual labels:  performance, benchmark, benchmarking
Boomer
A better load generator for locust, written in golang.
Stars: ✭ 734 (+706.59%)
Mutual labels:  performance, benchmark
Sequelize Benchmark
Benchmarks for sequelize
Stars: ✭ 8 (-91.21%)
Mutual labels:  performance, benchmark
Rtb
Benchmarking tool to stress real-time protocols
Stars: ✭ 35 (-61.54%)
Mutual labels:  benchmark, benchmarking
Dana
Test/benchmark regression and comparison system with dashboard
Stars: ✭ 46 (-49.45%)
Mutual labels:  benchmark, benchmarking
Jsbench Me
jsbench.me - JavaScript performance benchmarking playground
Stars: ✭ 50 (-45.05%)
Mutual labels:  benchmark, benchmarking
Frameworkbenchmarks
Source for the TechEmpower Framework Benchmarks project
Stars: ✭ 6,157 (+6665.93%)
Mutual labels:  performance, benchmark
Pibench
Benchmarking framework for index structures on persistent memory
Stars: ✭ 46 (-49.45%)
Mutual labels:  benchmark, benchmarking
Pytest Django Queries
Generate performance reports from your django database performance tests.
Stars: ✭ 54 (-40.66%)
Mutual labels:  benchmark, benchmarking

ezFIO V1.0 (C) Copyright 2015-18 HGST [email protected]


ezFIO is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.

ezFIO is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with ezFIO. If not, see https://www.gnu.org/licenses/.

This test script is intended to give a block-level based overview of SSD performance (SATA, SAS, and NVME) under real-world conditions by focusing on sustained performance at different block sizes and queue depths. Both text-mode Linux and GUI and text-mode Windows versions are included.

The results of multiple tests are summarized into a single OpenDoc format spreadsheet, readable under OpenOffice, LibreOffice, or Microsoft Excel.

FIO is required to perform the actual IO tests. Please ensure the latest version is installed, either from your operating system's repository or sources available at https://github.com/axboe/fio or precompiled for Windows at https://ci.appveyor.com/project/axboe/fio (for the GIT latest) or from https://www.bluestop.org/fio/ .

(There seems to be an issue with FIO 3.1 under Windows that is not present under earlier or later builds. In a nutshell, the 1200 second sustained performance test ends up running, under this version, for over 12 hours! While the final results are still good and the script continues, it does waste a large amount of time and so I recommend avoiding the BlueStop 3.1 build. The CI.appveyor.com link above can be used to get current FIO head builds instead.)


A new --cluster option allows for running multiple clients in parallel, to allow testing performance of shared storage systems like SANs or AFAs.

Start a "fio --server" job on all clients, then on one of them run ./ezfio.py --cluster --drive host1:/dev/dr1,host2:/dev/dr2/... ...

Basically add "--cluster" to the command line before the drive option, and in the drive option make a comma separated list of hostname:/path/to/storage .

The first host in the list must be the one you're currently running ezfio from. ezfio will try using the local system to collect appropriate system info on the first drive.

In the current implementation, all nodes/drives must be identical in size. There are no provisions for having volumes of differing sizes.

All other graphs and results should be the aggregate of the entire cluster, as reported by fio.

ex:

Start up FIO servers on all systems to be tested (on host 1):

fio --server &

(on host 2):

fio --server &

(on host 3):

fio --server &

Run a benchmark run: (on host 1)

./ezfio.py --cluster --drive host1:/dev/nvme1n1,host2:/dev/nvme1n1,host3:/dev/nvme4n1


ezFIO got where it is today through the help of many users who filed bugs when things didn't work, or submitted patches to support new CPUs. Please feel free to open issues or drop me a line if you have questions.

Special thanks to @coolrecep (Recep Baltaş) who has spent literally days tracking down Windows issues.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].