Releases: streamdal/plumber
Read/Relay from multiple GCP PubSub subscriptions at once
Merge pull request #186 from batchcorp/blinktag/gcp_multisub Support for reading/relaying from multiple GCP pubsub subscriptions
Maintenance release
Bumping gjson version to v1.10.2 to address CVE
Fix RabbitMQ dynamic mode
v0.34.3 Fixing rabbit dynamic mode
GCP-Pubsub credentials flag
Adding --credentials-json
flag for GCP-PubSub so that credentials can be passed in via a string
v0.34.1
Fixing spelling
KubeMQ Queue Support
Updating RabbitMQ Streams library
Thank you to @Gsantomaggio for these improvements!
RabbitMQ Streams Support
Support for the newly released RabbitMQ Streams has been added. Thank you to @Gsantomaggio for his assistance with this!
Read example: https://github.com/batchcorp/plumber/blob/master/EXAMPLES.md#rabbitmq-streams
Writing example: https://github.com/batchcorp/plumber/blob/master/EXAMPLES.md#rabbitmq-streams-1
Thrift decoding support
If your message bus contains Thrift IDL encoded messages, you can now specify the --thrift
flag, and plumber will decode the messages
Show kafka consumer group lag
You can now view Kafka consumer group lag for a topic by running
$ plumber lag kafka --topic yourtopic --group-id yourconsumergroupname
You can also pass the --lag
flag when reading from Kafka and the output will display the latest offset.
$ plumber read kafka --topic yourtopic --lag --group-id yourconsumergroupname
Thank you to @ei09010 for his work on this!