Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 28 days 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-20T19:01:31.000Z (over 1 year ago)
- Last Synced: 2024-09-28T02:20:59.236Z (about 1 month ago)
- Topics: docker-image, filesystem, java, load-testing, performance-testing, stress-testing
- Language: Java
- Size: 224 KB
- Stars: 0
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![Gitter chat](https://badges.gitter.im/emc-mongoose.png)](https://gitter.im/emc-mongoose)
[![Issue Tracker](https://img.shields.io/badge/Issue-Tracker-red.svg)](https://mongoose-issues.atlassian.net/projects/GOOSE)
[![CI status](https://gitlab.com/emc-mongoose/mongoose-storage-driver-fs/badges/master/pipeline.svg)](https://gitlab.com/emc-mongoose/mongoose-storage-driver-fs/commits/master)
[![Maven metadata URL](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/com/github/emc-mongoose/mongoose-storage-driver-fs/maven-metadata.xml.svg)](http://central.maven.org/maven2/com/github/emc-mongoose/mongoose-storage-driver-fs)
[![Docker Pulls](https://img.shields.io/docker/pulls/emcmongoose/mongoose-storage-driver-fs.svg)](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 \
...
```