1.0.10 (2026-03-16)
- Sentry integration for error monitoring and tracing. Operator and processor pods report to Sentry when
SENTRY_DSNis set. Helm chart supportssentry.enabled,sentry.dsn,sentry.environment,sentry.tracesSampleRate,sentry.debug,sentry.release.
1.0.9 (2026-03-16)
- channelBufferSize in DataFlow spec: configurable buffer size for message channels between source, processor, and sink. Default 100; use 500–1000 for high Kafka throughput to reduce blocking when the sink is slower than the source.
1.0.8 (2026-03-16)
1.0.7 (2026-03-15)
1.0.6 (2026-03-15)
1.0.5 (2026-03-15)
1.0.4 (2026-03-15)
Удалена поддержка legacy-формата конфигурации. Source, sink и transformations теперь используют только формат type + config.
Миграция:
# Было (legacy):
source:
type: kafka
kafka:
brokers: [localhost:9092]
topic: my-topic
# Стало:
source:
type: kafka
config:
brokers: [localhost:9092]
topic: my-topicСтруктура внутри config совпадает со структурой внутри kafka/postgresql/clickhouse/trino — меняется только ключ верхнего уровня.