jhuebert/iotfsdb
Time series database that leverages the properties of IOT data for efficient storage and retrieval.
174
For more information, visit the GitHub repository.
docker run -it -p 8080:8080 -v iotfsdb-data:/data jhuebert/iotfsdb:2
Docker Compose
services:
iotfsdb:
image: jhuebert/iotfsdb:2
volumes:
- ./data:/data
ports:
- 8080:8080
Java Property | Environment Variable | Description | Default Value | Docker Default Value |
---|---|---|---|---|
iotfsdb.root | IOTFSDB_ROOT | Root data directory for the database | memory | /data |
iotfsdb.read-only | IOTFSDB_READ_ONLY | Indicates whether any changes to the database are allowed | false | false |
iotfsdb.max-query-size | IOTFSDB_MAX_QUERY_SIZE | Maximum number of values returned for any series query | 1000 | 1000 |
iotfsdb.partition-cache | IOTFSDB_PARTITION_CACHE | Maximum amount of time to keep a series partition file open after access | expireAfterAccess=5m,maximumSize=10000,softValues | expireAfterAccess=5m,maximumSize=10000,softValues |
docker pull jhuebert/iotfsdb