Skip to content

v1.3.5

Choose a tag to compare

@github-actions github-actions released this 18 Dec 19:08
fd18750

Important

Upgrade to this version if working with ClickHouse 25.10+. Older version has issues with compression because uses older Java Client. Which fixes this issue in the 0.9.4 release ( https://github.com/ClickHouse/clickhouse-java/releases ).

Improvements

  • Added topic metrics to JMX and extended task metrics. Topic metrics have partition granularity - each partition has its own metrics (#612)
  • Improved failure handling when messages should be sent to DLQ. Previous implementation was sending whole batch to DLQ
    when one message failed. Now it sends only failed group of messages to DLQ. If failed because of schema validation then
    logs error message contains field name and schema type. (#590)
  • Added support for writing boolean values to number columns. This is allowed because boolean fits into any number type. (#633)

Bug Fixes

  • Fixed error message about unhandled complex type in array (#608)
  • Fixed logging in schema validation logic. Message "Got non-root column, but its parent was not found to be updated"
    was logged as error but should be a warning. (#645)
  • Fixed writing Avro timestamp value. (#599)
  • Fixed negative timestamp in logs. (#614)

Dependencies

  • Updated clickhouse-java version to 0.9.4 (#629)