Releases: pbotros/river
Releases · pbotros/river
Release list
v1.0.11
- Addition to the metadata.json output on the ingester HTTP server
- Switching from GoogleLog to SpdLog for better performance, support, functionality (e.g. rotating logs, async logging, etc.)
- Fix of INTERFACE_COMPILE_OPTIONS in CMake
v1.0.10
v1.0.9
- Allows for an optional Redis server module. Docs forthcoming for installing and using this module. IMPORTANT NOTE: IF USING THE MODULE, ENSURE ALL READERS, WRITERS, AND INGESTERS ARE on v1.0.9+.
- Allows for optional compression to be specified if desired.
v1.0.8
Improving throughput in stream writing
- introduces a Redis server module, "river" (built in the redismodule
subdirectory) that can be optionally installed into Redis to provide
much improved throughput. It minimizes the number of bytes transmitted
along the network by combining all existing XADD calls into a single
call.
- If the module is installed, we also carefully avoid copies of the data
to be sent, by manually managing the formatting of the Redis command
and the sending via sockets.
v1.0.7
v1.0.6
v1.0.5
- Primarily Ingester changes. Allows per-stream customization of Ingester parameters, allowing for whitelist/blacklist of columns, and configuration of timeouts and row group size at the per-stream basis. Accepts a JSON file that is effectively a set of rules that are processed in-order. This file is optional and default behavior remains the same.