https://github.com/emc-mongoose/mongoose-storage-driver-fs
Filesystem storage driver for Mongoose
https://github.com/emc-mongoose/mongoose-storage-driver-fs
docker-image filesystem java load-testing performance-testing stress-testing
Last synced: 5 months ago
JSON representation
Filesystem storage driver for Mongoose
- Host: GitHub
- URL: https://github.com/emc-mongoose/mongoose-storage-driver-fs
- Owner: emc-mongoose
- License: mit
- Created: 2017-10-24T08:10:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-20T19:01:31.000Z (about 3 years ago)
- Last Synced: 2025-05-21T11:51:36.130Z (about 1 year ago)
- Topics: docker-image, filesystem, java, load-testing, performance-testing, stress-testing
- Language: Java
- Size: 224 KB
- Stars: 0
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://gitter.im/emc-mongoose)
[](https://mongoose-issues.atlassian.net/projects/GOOSE)
[](https://gitlab.com/emc-mongoose/mongoose-storage-driver-fs/commits/master)
[](http://central.maven.org/maven2/com/github/emc-mongoose/mongoose-storage-driver-fs)
[](https://hub.docker.com/r/emcmongoose/mongoose-storage-driver-fs/)
# Introduction
The storage driver implementation may be used to perform file non-blocking I/O. Typically used totest CIFS/HDFS/NFS
shares mounted locally. However, testing distributed filesystems via the mounted shares may be not accurate due to
additional VFS layer. The measured rates may be:
* Inadequately low due to frequent system calls
* Higher than network bandwidth due to local caching by VFS
# Features
* Authentification: N/A
* Item types: `data` only (--> "file")
* Path listing input
* Automatic destination path creation on demand
* Data item operation types:
* `create`, additional modes:
* [copy](../../../../../doc/design/copy_mode/README.md)
* `read`
* full
* random byte ranges
* fixed byte ranges
* content verification
* `update`
* full (overwrite)
* random byte ranges
* fixed byte ranges (with append mode)
* `delete`
* `noop`
# Usage
Get the latest pre-built jar file which is available at:
http://repo.maven.apache.org/maven2/com/github/emc-mongoose/mongoose-storage-driver-fs/
The jar file may be downloaded manually and placed into the `/.mongoose//ext`
directory of Mongoose to be automatically loaded into the runtime.
```bash
java -jar mongoose-.jar \
--storage-driver-type=fs \
--storage-net-node-addrs= \
--storage-net-node-port= \
...
```
## Standalone
```bash
java -jar mongoose-.jar \
--storage-driver-type=fs \
...
```