Download the release on GitHub.
Features
Section titled “Features”Move rebatching into the importer
actor
Section titled “Move rebatching into the importer actor”The import buffer timeout is now configurable via the
tenzir.import-buffer-timeout
option. The option defaults to 1 second, and
controls how long the import
operator buffers events for batching before
forwarding them. Set the option to 0s
to enable an unbuffered mode with
minimal latency, or to a higher value to increase performance.
By @dominiklohmann in #5056.
Changes
Section titled “Changes”Move rebatching into the importer
actor
Section titled “Move rebatching into the importer actor”The default value for the tenzir.active-partition-timeout
option increased
from 30s to 5min. The option controls how long the import
operators waits
until flushing events to disk. In the past, this value was set so low because
the export
operator was only able to access already flushed events. This is no
longer the case, removing the need for the low timeout. Note that the import
operator always immediately flushes events after a pipeline with import
completes, or when the node shuts down.
By @dominiklohmann in #5056.