In zenoh a backend is a storage technology (such as DBMS, time-series database, file system...) alowing to store the keys/values publications made via zenoh and return them on queries. See the zenoh documentation for more details.
This backend relies on the host's file system to implement the storages.
Its library name (without OS specific prefix and extension) that zenoh will rely on to find it and load it is zbackend_fs
.
👉 Download: https://download.eclipse.org/zenoh/zenoh-backend-filesystem/
Prerequisites:
- You have a zenoh router running, and the
zbackend_fs
library file is available in~/.zenoh/lib
. - Declare the
ZBACKEND_FS_ROOT
environment variable to the directory where you want the files to be stored (or exposed from). If you don't declare it, the~/.zenoh/zbackend_fs
directory will be used.
Using curl
on the zenoh router to add backend and storages:
# Add a backend that will have all its storages storing data in subdirectories of ${ZBACKEND_FS_ROOT} directory.
curl -X PUT -H 'content-type:application/properties' http://localhost:8000/@/router/local/plugin/storages/backend/fs
# Add a storage on /demo/example/** storing data in files under ${ZBACKEND_FS_ROOT}/test/ directory
# We use 'path_prefix=/demo/example' thus a zenoh path "/demo/example/a/b" will be stored as "${ZBACKEND_FS_ROOT}/test/a/b"
curl -X PUT -H 'content-type:application/properties' -d "path_expr=/demo/example/**;path_prefix=/demo/example;dir=test" http://localhost:8000/@/router/local/plugin/storages/backend/fs/storage/example
# Put values that will be stored under ${ZBACKEND_FS_ROOT}/test
curl -X PUT -d "TEST-1" http://localhost:8000/demo/example/test-1
curl -X PUT -d "B" http://localhost:8000/demo/example/a/b
# Retrive the values
curl http://localhost:8000/demo/example/**
# Add a storage that will expose the same files than an Apache HTTP server, in read-only mode
# this assumes that ${ZBACKEND_FS_ROOT} is set to the Apache DocumentRoot (e.g. "/usr/web")
curl -X PUT -H 'content-type:application/properties' -d "path_expr=/www.test.org/**;path_prefix=/www.test.org;dir=test.org;read_only" http://localhost:8000/@/router/local/plugin/storages/backend/fs/storage/test.org
Alternatively, you can test the zenoh router in a Docker container:
- Download the docker-compose.yml file
- In the same directory, create the
./zenoh_docker/lib
sub-directories and place thelibzbackend_fs.so
library forx86_64-unknown-linux-musl
target within. - Also create a
./zenoh_filesystem/test
directory that will be used for the storage. - Start the containers running
docker-compose up -d
- Run the
curl
commands above, and explore the resulting file in./zenoh_filesystem/test
"lib"
(optional) : the path to the backend library file. If not speficied, the Backend identifier in admin space must befs
(i.e. zenoh will automatically search for a library namedzbackend_fs
).
-
"path_expr"
(required) : the Storage's Path Expression -
"path_prefix"
(required) : a prefix of the"path_expr"
that will be stripped from each path to store.
Example: with"path_expr"="/demo/example/**"
and"path_prefix"="/demo/example/"
the path"/demo/example/foo/bar"
will be stored as key:"foo/bar"
. But replying to a get on"/demo/**"
, the key"foo/bar"
will be transformed back to the original path ("/demo/example/foo/bar"
). -
"dir"
(required) : The directory that will be used to store -
"read_only"
(optional) : the storage will only answer to GET queries. It will not accept any PUT or DELETE message, and won't write any file. Not set by default. (the value doesn't matter, only the property existence is checked) -
"on_closure"
(optional) : the strategy to use when the Storage is removed. There are 2 options:- unset: the storage's directory remains untouched (this is the default behaviour)
"delete_all"
: the storage's directory is deleted with all its content.
-
"follow_links"
(optional) : If set totrue
the storage will follow the symbolic links. The default value isfalse
. -
"keep_mime_types"
(optional) : When replying to a GET query with a file for which the zenoh encoding is not known, the storage guess its mime-type according to the file extension. If the mime-type doesn't correspond to a supported zenoh encoding, this option will drive the returned value:- if
true
(default value): a Custom value is returned with the description set to the mime-type. - if
false
: a Raw value with APP_OCTET_STREAM encoding is returned.
- if
Each storage will map to a directory with path: ${ZBACKEND_FS_ROOT}/<dir>
, where:
${ZBACKEND_FS_ROOT}
is an environment variable that could be specified before zenoh router startup. If this variable is not specified${ZENOH_HOME}/zbackend_fs
will be used (where the default value of${ZENOH_HOME}
is~/.zenoh
).<dir>
is the"dir"
property specified at storage creation. Each zenoh path/value put into the storage will map to a file within the storage's directory where:- the file path will be
${ZBACKEND_FS_ROOT}/<dir>/<relative_zenoh_path>
, where<relative_zenoh_path>`` will be the zenoh path, stripped from the
"path_prefix"` property specified at storage creation. - the content of the file will be the value written as a RawValue. I.e. the same bytes buffer that has been transported by zenoh. For UTF-8 compatible formats (StringUTF8, JSon, Integer, Float...) it means the file will be readable as a text format.
- the encoding and the timestamp of the key/value will be stored in a RocksDB database stored in the storage directory.
On deletion of a path, the corresponding file is removed. An entry with deletion timestamp is inserted in the
RocksDB database (to avoid re-insertion of points with an older timestamp in case of un-ordered messages).
At regular interval, a task cleans-up the RocksDB database from entries with old timestamps that don't have a
corresponding existing file.
On GET operations, the storage searches for matching and existing files, and return their raw content as a reply. For each, the encoding and timestamp are retrieved from the RocksDB database. But if no entry is found in the database for a file (e.g. for files created without zenoh), the encoding is deduced from the file's extension (using mime_guess), and the timestamp is deduced from the file's modification time.
At first, install Cargo and Rust.
zenohd
. Otherwise, incompatibilities in memory mapping
of shared types between zenohd
and the library can lead to a "SIGSEV"
crash.
To know the Rust version you're zenohd
has been built with, use the --version
option.
Example:
$ zenohd --version
The zenoh router v0.5.0-beta.5-134-g81e85d7 built with rustc 1.51.0-nightly (2987785df 2020-12-28)
Here, zenohd
has been built with the rustc version 1.51.0-nightly
built on 2020-12-28.
A nightly build of rustc is included in the Rustup nightly toolchain the day after.
Thus you'll need to install to toolchain nightly-2020-12-29
Install and use this toolchain with the following command:
$ rustup default nightly-2020-12-29
And then build the backend with:
$ cargo build --release --all-targets