https://github.com/ignf/fsstress
https://github.com/ignf/fsstress
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ignf/fsstress
- Owner: IGNF
- License: mit
- Created: 2022-04-13T10:29:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-13T14:17:30.000Z (almost 4 years ago)
- Last Synced: 2025-01-16T09:55:59.193Z (about 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FsStress
Stressing File Systems
### Aims
This program aims at evaluating file systems' speed in writing, reading, discovering in different ways.
### Notice
The program does NOT erase anything.
The file sizes are all expressed in MB (2^^20 b).
The measures are writtien in one report file (one per execution).
### Required packages
The following packages are required : timeit pandas random rqdm
### The doc
- Run with `python FsStress.py `. See below.
- Getting help : `python FsStress.py help`
- Writing of MB files into the (dir is optional : default value is the vurrent working dir) : `python FsStress.py x `
- Creating , and writing of MB file in each : `python FsStress.py xx `
- Discovering what's in a : `python FsStress.py discover `
- Reading all the files in a : `python FsStress.py read `
- Randomly reading : `python FsStress.py rread `. This randomly reads 1 MB pieces of the files in , for a `delay` seconds dureation.
- Randomly write : still to be done...