Skip to content

Releases: linkedin/li-apache-kafka-clients

1.0.66

24 Feb 21:12
b252f7a
Compare
Choose a tag to compare

What's Changed

  • Remove waiting for connection to conductor during instrumented client creation by @kehuum in #201

Full Changelog: 1.0.65...1.0.66

Upgrade kafka to 2.0.0.37

04 Jun 20:03
a64185d
Compare
Choose a tag to compare

kafka 2.0.0.37 Contains the revert of passthrough code

bump kafka to 2.0.0.35

03 Jun 18:15
b311e79
Compare
Choose a tag to compare

Reverted the passthrough related code

bump kafka to 2.0.0.33

08 Mar 18:47
a87ab3f
Compare
Choose a tag to compare
1.0.63

update kafka version to 2.0.0.33 (#194)

Bypass large message processing when passthrough enabled

03 Mar 18:35
5441f92
Compare
Choose a tag to compare

Bypass large message processing in consumer when passthrough(enable.shallow.iterator) is enabled. This is for raw consumer mirroring.

Make li kafka producer flush behavior to be the same as open source producer

22 Feb 19:02
a9db42e
Compare
Choose a tag to compare

Make li kafka producer flush behavior to be the same as open source producer in terms of the following:

  1. Allow flush after producer.close()
  2. Throw original flush exception instead of wrapping it into illegal state exception.

bump kafka to 2.0.0.32

17 Feb 19:04
31ef712
Compare
Choose a tag to compare

contains passthrough fix to test passthrough in BMM cert

Bump kafka to 2.0.0.29

08 Oct 21:06
e158528
Compare
Choose a tag to compare

Bump kafka to 2.0.0.29 to pick up oss fix for stale cluster metadata when removing all brokers from one cluster and add the broker(s) to another cluster.

Fix race condition in producer dual close

03 Sep 18:55
d0471d7
Compare
Choose a tag to compare

Fix race condition in producer dual close called from send callback.

Add new LiKafkaConsumerImpl metric - _offsetInvalidOrOutRangeCounter to estimate the potential data loss (#185)

31 Aug 18:05
da22836
Compare
Choose a tag to compare
Add new LiKafkaConsumerImpl metric - _offsetInvalidOrOutRangeCounter …

…to estimate the potential data loss (#185)

Added new metric( _offsetInvalidOrOutRangeCounter) into LiKafkaConsumerImpl to count number of OffsetOutOfRange exceptions under following cases with liclosest reset strategy.

1. fetchedOffset < Log Start Offset (LSO)
2. fetchedOffset <= Log End Offset (LEO)

This metric can be used as indicator to estimate the potential data loss upon the LiKafkaConsumer client reseting the offset to "liclosest"