Skip to content

This release brings forth stability improvements under high load that could cause platform unresponsiveness, fixes API request isolation problems, better kafka diagnostics and more.

Sep 26, 2025 · @jachris · #5494

The subscribe operator now accepts multiple topics to subscribe to. For example, subscribe "notices", "alerts" subscribes to both the notices, and the alerts topic. This makes it easier to build pipelines that join multiple topics back together.

Sep 26, 2025 · @raxyte · #5491

The new from_gcs operator reads files from Google Cloud Storage with support for glob patterns, authentication via Application Default Credentials, and all standard file processing features like monitoring and path tracking.

Sep 25, 2025 · @raxyte · #5490

The kafka related operators now emit more diagnostics in unexpected situations, providing more information to diagnose problems.

Sep 25, 2025 · @jachris · #5485

The load_kafka operators previously used offset="end" as the default, which meant that it always started from the end of the topic. This default was now changed to "stored", such that the previously commited offset is used instead.

Sep 25, 2025 · @jachris · #5486

Requests to the /pipeline API are now properly isolated and sequentialized. Before, it could happen that certain requests that should not be executed concurrently were interleaved. This could lead to unpredictable results when interacting with pipelines through the platform.

Sep 25, 2025 · @jachris · #5486

Previously, the execution of certain pipelines under high load scenarios could lead to general unresponsiveness. In extreme cases, this meant that the platform wasn’t able to reach the node. This issue has now been resolved, leading to a more reliable and responsive experience.

Sep 25, 2025 · @jachris · #5488

The throttle operator now correctly forwards its data in a timely manner.

Sep 24, 2025 · @raxyte · #5483

We fixed a bug in every and cron operators that could cause them to hang and panic with assertions failures.

session_name and external_id in aws_iam options

Section titled “session_name and external_id in aws_iam options”

Sep 22, 2025 · @raxyte · #5481

The load_kafka, save_kafka and to_kafka operators now accept configuring session_name and external_id for aws_iam options.