Skip to content

Commit a0871a1

Browse files
emasabedenhillmilindl
authoredMar 22, 2023
KIP-320 : Allow fetchers to detect and handle log truncation (#4162)
Co-authored-by: Magnus Edenhill <[email protected]> Co-authored-by: Milind L <[email protected]>
1 parent ac35618 commit a0871a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+3342
-992
lines changed
 

‎CHANGELOG.md

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# librdkafka v2.0.3
1+
# librdkafka v2.1.0
22

3-
librdkafka v2.0.3 is a bugfix release:
3+
librdkafka v2.1.0 is a feature release:
44

5+
* [KIP-320](https://cwiki.apache.org/confluence/display/KAFKA/KIP-320%3A+Allow+fetchers+to+detect+and+handle+log+truncation)
6+
Allow fetchers to detect and handle log truncation (#4122).
57
* Fix a reference count issue blocking the consumer from closing (#4187).
68
* Fix a protocol issue with ListGroups API, where an extra
7-
field was appended for API Versions greater than or equal to 3.
9+
field was appended for API Versions greater than or equal to 3 (#4207).
810
* Fix an issue with `max.poll.interval.ms`, where polling any queue would cause
911
the timeout to be reset (#4176).
1012
* Fix seek partition timeout, was one thousand times lower than the passed
@@ -15,6 +17,18 @@ librdkafka v2.0.3 is a bugfix release:
1517
* Upgrade OpenSSL to v3.0.8 with various security fixes,
1618
check the [release notes](https://www.openssl.org/news/cl30.txt) (#4215).
1719

20+
## Enhancements
21+
22+
* Added `rd_kafka_topic_partition_get_leader_epoch()` (and `set..()`).
23+
* Added partition leader epoch APIs:
24+
- `rd_kafka_topic_partition_get_leader_epoch()` (and `set..()`)
25+
- `rd_kafka_message_leader_epoch()`
26+
- `rd_kafka_*assign()` and `rd_kafka_seek_partitions()` now supports
27+
partitions with a leader epoch set.
28+
- `rd_kafka_offsets_for_times()` will return per-partition leader-epochs.
29+
- `leader_epoch`, `stored_leader_epoch`, and `committed_leader_epoch`
30+
added to per-partition statistics.
31+
1832

1933
## Fixes
2034

‎INTRODUCTION.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1887,7 +1887,7 @@ The [Apache Kafka Implementation Proposals (KIPs)](https://cwiki.apache.org/conf
18871887
| KIP-289 - Consumer group.id default to NULL | 2.2.0 | Supported |
18881888
| KIP-294 - SSL endpoint verification | 2.0.0 | Supported |
18891889
| KIP-302 - Use all addresses for resolved broker hostname | 2.1.0 | Supported |
1890-
| KIP-320 - Consumer: handle log truncation | 2.1.0, 2.2.0 | Not supported |
1890+
| KIP-320 - Consumer: handle log truncation | 2.1.0, 2.2.0 | Supported |
18911891
| KIP-322 - DeleteTopics disabled error code | 2.1.0 | Supported |
18921892
| KIP-339 - AdminAPI: incrementalAlterConfigs | 2.3.0 | Not supported |
18931893
| KIP-341 - Update Sticky partition assignment data | 2.3.0 | Not supported (superceeded by KIP-429) |
@@ -1953,7 +1953,7 @@ release of librdkafka.
19531953
| 0 | Produce | 9 | 7 |
19541954
| 1 | Fetch | 13 | 11 |
19551955
| 2 | ListOffsets | 7 | 2 |
1956-
| 3 | Metadata | 12 | 4 |
1956+
| 3 | Metadata | 12 | 9 |
19571957
| 8 | OffsetCommit | 8 | 7 |
19581958
| 9 | OffsetFetch | 8 | 7 |
19591959
| 10 | FindCoordinator | 4 | 2 |

0 commit comments

Comments
 (0)