Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sporadic message duplication during leader transition with idempotent producer #4953

Open
marcin-krystianc opened this issue Jan 28, 2025 · 1 comment · May be fixed by #4972
Open

Sporadic message duplication during leader transition with idempotent producer #4953

marcin-krystianc opened this issue Jan 28, 2025 · 1 comment · May be fixed by #4972

Comments

@marcin-krystianc
Copy link

Description

It is possible to get duplicated messages in a single topic-partition. It happens despite configuring the producer for exactly-once delivery. It occurs sporadicly during the partition leader change, where for some reason the producer epoch is also being incremented. It is not trivial to reproduce, but it is fairly doable. (I can provide repro-steps, but I think it is not helpful as the attached pcap file contains enough details to analyze this issue).
The essential configuration bits for the producer are:

--replication-factor=3
--min-isr=2
--config request.required.acks=-1
--config enable.idempotence=true
--config max.in.flight.requests.per.connection=5

Details

Below is the excerpt from the captured packets demonstrating the problem.
The producer app was writing a sequence of numbers (strictly incrementing) into my-topic-0188. Because of the topic-partition leadership change, the values 0x0a90 and 0x0a91 were written twice. This breaks exactly-once delivery guarantees and can cause data inconsistencies in applications relying on message deduplication.

It is unclear why these values were written twice as there is only one successful confirmation of writing them.
What is also interesting, the response from frame 1566024, has a valid offset but also a non-zero error code.

Confluent.Kafka(Librdkafka) version

Confluent.Kafka, Version=2.6.1.0, Culture=neutral, PublicKeyToken=12c514ca49093d1em
librdkafka Version: 2.6.1 (20601FF)

Produce requests

1560411, 15:37:11.568610, 192.168.65.3:65494->3.70.194.188:40001 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 129
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 3561
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 68
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0x1ee6e86f
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 0
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723361 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723361 UTC
                    Producer ID: 7078
                    Producer Epoch: 0
                    Base Sequence: 2703
                    Size: 1
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.519000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a8f
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields

1564645, 15:37:12.298735, 3.70.194.188:40001->192.168.65.3:65494 - Kafka Produce v10 Response
Kafka (Produce v10 Response)
    Length: 60
    Correlation ID: 3561
    [Request Frame: 1560411]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=71228)
                Partition ID: 0
                Error: No Error (0)
                Offset: 71228
                Time: -1 (latest)
                Log Start Offset: 0
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields
1561308, 15:37:11.655040, 192.168.65.3:65494->3.70.194.188:40001 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 148
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 3564
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 87
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xe97ffa59
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                    Producer ID: 7078
                    Producer Epoch: 0
                    Base Sequence: 2704
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a90
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                        Offset: 1
                        Key: 00000000
                        Value: 0000000000000a91
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields

1566024, 15:37:12.623878, 3.70.194.188:40001->192.168.65.3:65494 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 97
    Correlation ID: 3564
    [Request Frame: 1561308]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=71229)
                Partition ID: 0
                Error: Not Leader For Partition (6)
                Offset: 71229
                Time: -1 (latest)
                Log Start Offset: 0
                Record Errors
                Error Message: [ Null ]
                Tagged fields
                    Field
                        Tag Value: 0x0000000000000000
                        Tag Data: 000000030000001200
        Tagged fields
    Throttle time: 0
    Tagged fields
        Field
            Tag Value: 0x0000000000000000
            Tag Data: 02000000030d332e37302e3139342e31383800009c430000
1566591, 15:37:12.769799, 192.168.65.3:58732->3.70.194.188:40003 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 148
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 2474
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 87
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xe97ffa59
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                    Producer ID: 7078
                    Producer Epoch: 0
                    Base Sequence: 2704
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a90
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                        Offset: 1
                        Key: 00000000
                        Value: 0000000000000a91
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
1567506, 15:37:12.925713, 3.70.194.188:40003->192.168.65.3:58732 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 97
    Correlation ID: 2474
    [Request Frame: 1566591]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=-1)
                Partition ID: 0
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
                    Field
                        Tag Value: 0x0000000000000000
                        Tag Data: 000000010000001100
        Tagged fields
    Throttle time: 0
    Tagged fields
        Field
            Tag Value: 0x0000000000000000
            Tag Data: 02000000010d332e37302e3139342e31383800009c410000
1568303, 15:37:13.040103, 192.168.65.3:58732->3.70.194.188:40003 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 148
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 2478
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 87
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xe97ffa59
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                    Producer ID: 7078
                    Producer Epoch: 0
                    Base Sequence: 2704
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a90
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                        Offset: 1
                        Key: 00000000
                        Value: 0000000000000a91
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
1568678, 15:37:13.113566, 3.70.194.188:40003->192.168.65.3:58732 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 97
    Correlation ID: 2478
    [Request Frame: 1568303]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=-1)
                Partition ID: 0
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
                    Field
                        Tag Value: 0x0000000000000000
                        Tag Data: 000000010000001100
        Tagged fields
    Throttle time: 0
    Tagged fields
        Field
            Tag Value: 0x0000000000000000
            Tag Data: 02000000010d332e37302e3139342e31383800009c410000
1569730, 15:37:13.280079, 192.168.65.3:58732->3.70.194.188:40003 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 148
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 2482
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 87
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xe97ffa59
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                    Producer ID: 7078
                    Producer Epoch: 0
                    Base Sequence: 2704
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a90
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                        Offset: 1
                        Key: 00000000
                        Value: 0000000000000a91
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
1570055, 15:37:13.330732, 3.70.194.188:40003->192.168.65.3:58732 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 97
    Correlation ID: 2482
    [Request Frame: 1569730]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=-1)
                Partition ID: 0
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
                    Field
                        Tag Value: 0x0000000000000000
                        Tag Data: 000000010000001100
        Tagged fields
    Throttle time: 0
    Tagged fields
        Field
            Tag Value: 0x0000000000000000
            Tag Data: 02000000010d332e37302e3139342e31383800009c410000
1570954, 15:37:13.507840, 192.168.65.3:58732->3.70.194.188:40003 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 148
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 2489
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 87
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xe97ffa59
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                    Producer ID: 7078
                    Producer Epoch: 0
                    Base Sequence: 2704
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a90
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                        Offset: 1
                        Key: 00000000
                        Value: 0000000000000a91
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
1571293, 15:37:13.567244, 3.70.194.188:40003->192.168.65.3:58732 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 97
    Correlation ID: 2489
    [Request Frame: 1570954]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=-1)
                Partition ID: 0
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
                    Field
                        Tag Value: 0x0000000000000000
                        Tag Data: 000000010000001100
        Tagged fields
    Throttle time: 0
    Tagged fields
        Field
            Tag Value: 0x0000000000000000
            Tag Data: 02000000010d332e37302e3139342e31383800009c410000

Metadata requests

1571548, 15:37:13.608869, 192.168.65.3:58732->3.70.194.188:40003 - Kafka Metadata v12 Request
Kafka (Metadata v12 Request)
    Length: 84
    API Key: Metadata (3)
    API Version: 12
    Correlation ID: 2492
    Client ID: rdkafka
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Tagged fields
    Topic ID: 00000000-0000-0000-0000-000000000000
    Allow Auto Topic Creation: False
    Include Topic Authorized Operations: False
    Tagged fields
1571750, 15:37:13.642273, 3.70.194.188:40003->192.168.65.3:58732 - Kafka Metadata v12 Response
Kafka (Metadata v12 Response)
    Length: 270
    Correlation ID: 2492
    [Request Frame: 1571548]
    [API Key: Metadata (3)]
    [API Version: 12]
    Tagged fields
    Throttle time: 0
    Broker Metadata
        Broker (node 1: 3.70.194.188:40001)
            Node ID: 1
            Host: 3.70.194.188
            Port: 40001
            Rack: [ Null ]
            Tagged fields
        Broker (node 2: 3.70.194.188:40002)
            Node ID: 2
            Host: 3.70.194.188
            Port: 40002
            Rack: [ Null ]
            Tagged fields
        Broker (node 3: 3.70.194.188:40003)
            Node ID: 3
            Host: 3.70.194.188
            Port: 40003
            Rack: [ Null ]
            Tagged fields
    Cluster ID: 4L6g3nShT-eMCtK--X86sw
    Controller ID: 3
    Topic Metadata
        Topic (my-topic-0188)
            Error: No Error (0)
            Topic Name: my-topic-0188
            Topic ID: f49b160c-8440-4ffb-8211-44a649a35366
            Is Internal: False
            Partition (ID=0)
                Error: No Error (0)
                Partition ID: 0
                Leader ID: 3
                Leader Epoch: 18
                Replicas
                    Replica ID: 3
                    Replica ID: 1
                    Replica ID: 2
                Caught-Up Replicas
                    Caught-Up Replica ID: 1
                    Caught-Up Replica ID: 2
                    Caught-Up Replica ID: 3
                Offline Replicas
                Tagged fields
            Topic Authorized Operations: 0x80000000
            Tagged fields
    Tagged fields

Final Produce request (with incremented producer epoch)

1572355, 15:37:13.710099, 192.168.65.3:58732->3.70.194.188:40003 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 148
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 2496
    Client ID: rdkafka
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0188)
        Topic Name: my-topic-0188
        Partition (ID=0)
            Partition ID: 0
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 87
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0x1cbeb4b1
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                    Producer ID: 7078
                    Producer Epoch: 1
                    Base Sequence: 0
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                        Offset: 0
                        Key: 00000000
                        Value: 0000000000000a90
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                        Offset: 1
                        Key: 00000000
                        Value: 0000000000000a91
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
1591784, 15:37:15.822886, 3.70.194.188:40003->192.168.65.3:58732 - Kafka Produce v10 Response
Kafka (Produce v10 Response)
    Length: 60
    Correlation ID: 2496
    [Request Frame: 1572355]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0188
        Partitions
            Partition (ID=0, Offset=71231)
                Partition ID: 0
                Error: No Error (0)
                Offset: 71231
                Time: -1 (latest)
                Log Start Offset: 0
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields

OffsetForLeaderEpoch requests

1572938, 15:37:13.770089, 192.168.65.3:58626->3.70.194.188:40003 - Kafka OffsetForLeaderEpoch v2 Request
Kafka (OffsetForLeaderEpoch v2 Request)
    Length: 52
    API Key: OffsetForLeaderEpoch (23)
    API Version: 2
    Correlation ID: 875
    Client ID: rdkafka
    Topics
        Topic (Name=my-topic-0188)
            Topic Name: my-topic-0188
            Partitions
                Partition (ID=0)
                    Partition ID: 0
                    Leader Epoch: 18
                    Leader Epoch: 17
1573309, 15:37:13.802351, 3.70.194.188:40003->192.168.65.3:58626 - Kafka OffsetForLeaderEpoch v2 Response
Kafka (OffsetForLeaderEpoch v2 Response)
    Length: 49
    Correlation ID: 875
    [Request Frame: 1572938]
    [API Key: OffsetForLeaderEpoch (23)]
    [API Version: 2]
    Throttle time: 0
    Topics
        Topic (Name=my-topic-0188)
            Topic Name: my-topic-0188
            Partitions
                Partition (ID=0, Error=Unknown Leader Epoch)
                    Error: Unknown Leader Epoch (75)
                    Partition ID: 0
                    Leader Epoch: -1
                    Offset: -1
1583043, 15:37:14.817771, 192.168.65.3:58626->3.70.194.188:40003 - Kafka OffsetForLeaderEpoch v2 Request
Kafka (OffsetForLeaderEpoch v2 Request)
    Length: 52
    API Key: OffsetForLeaderEpoch (23)
    API Version: 2
    Correlation ID: 957
    Client ID: rdkafka
    Topics
        Topic (Name=my-topic-0188)
            Topic Name: my-topic-0188
            Partitions
                Partition (ID=0)
                    Partition ID: 0
                    Leader Epoch: 18
                    Leader Epoch: 17
1583379, 15:37:14.848090, 3.70.194.18840003->192.168.65.3:58626 - Kafka OffsetForLeaderEpoch v2 Response
Kafka (OffsetForLeaderEpoch v2 Response)
    Length: 49
    Correlation ID: 957
    [Request Frame: 1583043]
    [API Key: OffsetForLeaderEpoch (23)]
    [API Version: 2]
    Throttle time: 0
    Topics
        Topic (Name=my-topic-0188)
            Topic Name: my-topic-0188
            Partitions
                Partition (ID=0)
                    Error: No Error (0)
                    Partition ID: 0
                    Leader Epoch: 17
                    Offset: 71231

Fetch requests

1586668, 15:37:15.212955, 3.70.194.188:40003->192.168.65.3:58626 - Kafka Fetch v16 Response
Kafka (Fetch v16 Response)
    Length: 5300
    Correlation ID: 992
    [Request Frame: 1585869]
    [API Key: Fetch (1)]
    [API Version: 16]
    Tagged fields
    Throttle time: 0
    Error: No Error (0)
    Fetch Session ID: 0
    Topics
        Topic (1 partitions)
            Topic ID: f49b160c-8440-4ffb-8211-44a649a35366
            Partitions
                Partition (ID=0, Offset=71231)
                    Partition ID: 0
                    Error: No Error (0)
                    Offset: 71231
                    Last Stable Offset: 71231
                    Log Start Offset: 0
                    Aborted Transactions
                    Replica ID: -1
                    Message Set
                        Record Batch
                            Offset: 71229
                            Message Size: 87
                            Leader Epoch: 17
                            Magic Byte: 2
                            CRC32: 0xe97ffa59
                            .... .... .... .000 = Compression Codec: None (0)
                            .... .... .... 0... = Timestamp Type: CreateTime (0)
                            .... .... ...0 .... = Transactional: Non-transactional (0)
                            .... .... ..0. .... = Control Batch: Data batch (0)
                            Last Offset Delta: 1
                            First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                            Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                            Producer ID: 7078
                            Producer Epoch: 0
                            Base Sequence: 2704
                            Size: 2
                            Record
                                Record Attributes (reserved): 0
                                Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                                Offset: 71229
                                Key: 00000000
                                Value: 0000000000000a90
                                Headers
                            Record
                                Record Attributes (reserved): 0
                                Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                                Offset: 71230
                                Key: 00000000
                                Value: 0000000000000a91
                                Headers
                    Tagged fields
            Tagged fields
1592076, 15:37:15.844683, 3.70.194.188:40003->192.168.65.3:58626 - Kafka Fetch v16 Response

Kafka (Fetch v16 Response)
    Length: 12501
    Correlation ID: 999
    [Request Frame: 1591563]
    [API Key: Fetch (1)]
    [API Version: 16]
    Tagged fields
    Throttle time: 0
    Error: No Error (0)
    Fetch Session ID: 0
    Topics
        Topic (1 partitions)
            Topic ID: f49b160c-8440-4ffb-8211-44a649a35366
            Partitions
                Partition (ID=0, Offset=71233)
                    Partition ID: 0
                    Error: No Error (0)
                    Offset: 71233
                    Last Stable Offset: 71233
                    Log Start Offset: 0
                    Aborted Transactions
                    Replica ID: -1
                    Message Set
                        Record Batch
                            Offset: 71231
                            Message Size: 87
                            Leader Epoch: 18
                            Magic Byte: 2
                            CRC32: 0x1cbeb4b1
                            .... .... .... .000 = Compression Codec: None (0)
                            .... .... .... 0... = Timestamp Type: CreateTime (0)
                            .... .... ...0 .... = Transactional: Non-transactional (0)
                            .... .... ..0. .... = Control Batch: Data batch (0)
                            Last Offset Delta: 1
                            First Timestamp: Jan  1, 1970 00:06:44.-1728723327 UTC
                            Last Timestamp: Jan  1, 1970 00:06:44.-1728723293 UTC
                            Producer ID: 7078
                            Producer Epoch: 1
                            Base Sequence: 0
                            Size: 2
                            Record
                                Record Attributes (reserved): 0
                                Timestamp: Jan 24, 2025 15:37:11.553000000 UTC
                                Offset: 71231
                                Key: 00000000
                                Value: 0000000000000a90
                                Headers
                            Record
                                Record Attributes (reserved): 0
                                Timestamp: Jan 24, 2025 15:37:11.587000000 UTC
                                Offset: 71232
                                Key: 00000000
                                Value: 0000000000000a91
                                Headers
                    Tagged fields
            Tagged fields
@marcin-krystianc
Copy link
Author

Hi,

I've found an explanation for why the producer epoch is being bumped. It turns out that it is a consequence of a broker's Out of Order Sequence Number response. The code responsible for it is here ->

} else if (r > 0) {
/* R2 failed:
* With max.in.flight > 1 we can have a situation
* where the first request in-flight (R1) to the broker
* fails, which causes the sub-sequent requests
* that are in-flight to have a non-sequential
* sequence number and thus fail.
* But these sub-sequent requests (R2 to R4) are not at
* the risk of being duplicated so we bump the epoch and
* re-enqueue the messages for later retry
* (without incrementing retries).
*/
rd_rkb_dbg(
rkb, MSG | RD_KAFKA_DBG_EOS, "ERRSEQ",
"ProduceRequest for %.*s [%" PRId32
"] "
"with %d message(s) failed "
"due to skipped sequence numbers "
"(%s, base seq %" PRId32
" > "
"next seq %" PRId32
") "
"caused by previous failed request "
"(%s, actions %s, "
"base seq %" PRId32 "..%" PRId32
", base msgid %" PRIu64 ", %" PRId64
"ms ago): "
"recovering and retrying",
RD_KAFKAP_STR_PR(rktp->rktp_rkt->rkt_topic),
rktp->rktp_partition,
rd_kafka_msgq_len(&batch->msgq),
rd_kafka_pid2str(batch->pid), batch->first_seq,
perr->next_ack_seq, rd_kafka_err2name(last_err.err),
rd_kafka_actions2str(last_err.actions),
last_err.base_seq, last_err.last_seq,
last_err.base_msgid,
last_err.ts ? (now - last_err.ts) / 1000 : -1);
perr->incr_retry = 0;
perr->actions = RD_KAFKA_ERR_ACTION_RETRY;
perr->status = RD_KAFKA_MSG_STATUS_NOT_PERSISTED;
perr->update_next_ack = rd_false;
perr->update_next_err = rd_true;
rd_kafka_idemp_drain_epoch_bump(
rk, perr->err, "skipped sequence numbers");

Below I'm posting an excerpt of captured packets
and an important subset of the logs (--config debug=EOS) from the test run where the value 77 was written twice into the my-topic-0011 / partition-12. It is still unclear why the broker responded with Out of Order Sequence Number, but it seems incorrect to increment producer epoch in such cases since it leads to violation of exactly-once guarantees.

It is important to note that the same producer ID/producer Epoch is used to write into many partitions.
We can see from logs and captured packets that Out of Order Sequence Number response for partition 5 caused the producer epoch to be incremented but it caused issues for another partition (partition 12).

Produce requests (partition 12)

3025, 12:33:43.642454, 172.22.0.1:57042->172.22.0.2:9092 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 141
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 368
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=1)
            Partition ID: 1
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 68
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xf048b3f4
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 0
                    First Timestamp: Jan  1, 1970 00:06:44.-702934174 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702934174 UTC
                    Producer ID: 57024
                    Producer Epoch: 0
                    Base Sequence: 80
                    Size: 1
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.706000000 UTC
                        Offset: 0
                        Key: 00000001
                        Value: 0000000000000050
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
Kafka (Produce v10 Request)
    Length: 141
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 369
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=12)
            Partition ID: 12
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 68
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xa13d1e15
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 0
                    First Timestamp: Jan  1, 1970 00:06:44.-702934502 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702934502 UTC
                    Producer ID: 57024
                    Producer Epoch: 0
                    Base Sequence: 77
                    Size: 1
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.378000000 UTC
                        Offset: 0
                        Key: 0000000c
                        Value: 000000000000004d
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
Kafka (Produce v10 Request)
    Length: 141
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 370
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=12)
            Partition ID: 12
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 68
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0x990ad0e8
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 0
                    First Timestamp: Jan  1, 1970 00:06:44.-702934369 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702934369 UTC
                    Producer ID: 57024
                    Producer Epoch: 0
                    Base Sequence: 78
                    Size: 1
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.511000000 UTC
                        Offset: 0
                        Key: 0000000c
                        Value: 000000000000004e
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
Kafka (Produce v10 Request)
    Length: 161
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 371
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=12)
            Partition ID: 12
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 88
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xa4039d66
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 1
                    First Timestamp: Jan  1, 1970 00:06:44.-702934235 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702934101 UTC
                    Producer ID: 57024
                    Producer Epoch: 0
                    Base Sequence: 79
                    Size: 2
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.645000000 UTC
                        Offset: 0
                        Key: 0000000c
                        Value: 000000000000004f
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.779000000 UTC
                        Offset: 1
                        Key: 0000000c
                        Value: 0000000000000050
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
3989, 12:33:44.867906, 172.22.0.1:57042->172.22.0.2:9092 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 181
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 372
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=12)
            Partition ID: 12
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 108
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0xdaac6093
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 2
                    First Timestamp: Jan  1, 1970 00:06:44.-702933967 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702933701 UTC
                    Producer ID: 57024
                    Producer Epoch: 0
                    Base Sequence: 81
                    Size: 3
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.913000000 UTC
                        Offset: 0
                        Key: 0000000c
                        Value: 0000000000000051
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:41.046000000 UTC
                        Offset: 1
                        Key: 0000000c
                        Value: 0000000000000052
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:41.179000000 UTC
                        Offset: 2
                        Key: 0000000c
                        Value: 0000000000000053
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
4004, 12:33:44.947876, 172.22.0.2:9092->172.22.0.1:57042 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 94
    Correlation ID: 369
    [Request Frame: 3025]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0011
        Partitions
            Partition (ID=12, Offset=-1)
                Partition ID: 12
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields
4005, 12:33:44.948155, 172.22.0.2:9092->172.22.0.1:57042 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 94
    Correlation ID: 370
    [Request Frame: 3025]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0011
        Partitions
            Partition (ID=12, Offset=-1)
                Partition ID: 12
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields
4007, 12:33:44.948690, 172.22.0.2:9092->172.22.0.1:57042 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 94
    Correlation ID: 371
    [Request Frame: 3025]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0011
        Partitions
            Partition (ID=12, Offset=-1)
                Partition ID: 12
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields
4009, 12:33:44.949353, 172.22.0.2:9092->172.22.0.1:57042 - Kafka Produce v10 Response [Not Leader For Partition]
Kafka (Produce v10 Response)
    Length: 94
    Correlation ID: 372
    [Request Frame: 3989]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0011
        Partitions
            Partition (ID=12, Offset=-1)
                Partition ID: 12
                Error: Not Leader For Partition (6)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: -1
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields

Produce requests (partition 5)

4012, 12:33:44.950829, 172.22.0.1:57042->172.22.0.2:9092 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 181
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 377
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=5)
            Partition ID: 5
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 108
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0x5145fc97
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 2
                    First Timestamp: Jan  1, 1970 00:06:44.-702934415 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702934148 UTC
                    Producer ID: 57024
                    Producer Epoch: 0
                    Base Sequence: 78
                    Size: 3
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.465000000 UTC
                        Offset: 0
                        Key: 00000005
                        Value: 000000000000004e
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.598000000 UTC
                        Offset: 1
                        Key: 00000005
                        Value: 000000000000004f
                        Headers
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.732000000 UTC
                        Offset: 2
                        Key: 00000005
                        Value: 0000000000000050
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields

4050, 12:33:45.099502, 172.22.0.2:9092->172.22.0.1:57042 - Kafka Produce v10 Response [Out of Order Sequence Number]
Kafka (Produce v10 Response)
    Length: 60
    Correlation ID: 377
    [Request Frame: 4012]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0011
        Partitions
            Partition (ID=5, Offset=-1)
                Partition ID: 5
                Error: Out of Order Sequence Number (45)
                Offset: -1
                Time: -1 (latest)
                Log Start Offset: 0
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields

Produce requests (partition 12, Producer Epoch: 1)

5849, 12:33:47.450544, 172.22.0.1:57042->172.22.0.2:9092 - Kafka Produce v10 Request
Kafka (Produce v10 Request)
    Length: 141
    API Key: Produce (0)
    API Version: 10
    Correlation ID: 388
    Client ID: rdkafka-producer-11
    Tagged fields
    Transactional ID: [ Null ]
    Required Acks: Full ISR (-1)
    Timeout: 30000
    Topic (Name=my-topic-0011)
        Topic Name: my-topic-0011
        Partition (ID=12)
            Partition ID: 12
            Message Set
                Record Batch
                    Offset: 0
                    Message Size: 68
                    Leader Epoch: 0
                    Magic Byte: 2
                    CRC32: 0x86d7f53e
                    .... .... .... .000 = Compression Codec: None (0)
                    .... .... .... 0... = Timestamp Type: CreateTime (0)
                    .... .... ...0 .... = Transactional: Non-transactional (0)
                    .... .... ..0. .... = Control Batch: Data batch (0)
                    Last Offset Delta: 0
                    First Timestamp: Jan  1, 1970 00:06:44.-702934502 UTC
                    Last Timestamp: Jan  1, 1970 00:06:44.-702934502 UTC
                    Producer ID: 57024
                    Producer Epoch: 1
                    Base Sequence: 0
                    Size: 1
                    Record
                        Record Attributes (reserved): 0
                        Timestamp: Feb  5, 2025 12:33:40.378000000 UTC
                        Offset: 0
                        Key: 0000000c
                        Value: 000000000000004d
                        Headers
            Tagged fields
        Tagged fields
    Tagged fields
6396, 12:33:48.420982, 172.22.0.2:9092->172.22.0.1:57042 - Kafka Produce v10 Response
Kafka (Produce v10 Response)
    Length: 60
    Correlation ID: 388
    [Request Frame: 5849]
    [API Key: Produce (0)]
    [API Version: 10]
    Tagged fields
    Topic
        Topic Name: my-topic-0011
        Partitions
            Partition (ID=12, Offset=15168)
                Partition ID: 12
                Error: No Error (0)
                Offset: 15168
                Time: -1 (latest)
                Log Start Offset: 0
                Record Errors
                Error Message: [ Null ]
                Tagged fields
        Tagged fields
    Throttle time: 0
    Tagged fields

Logs for my-topic-0011

	Line 4972: 12:33:45 info: Producer11:[0] kafka-log Facility:ERRSEQ, Message[thrd:localhost:40003/3]: localhost:40003/3: ProduceRequest for my-topic-0011 [5] with 3 message(s) failed due to skipped sequence numbers (PID{Id:57024,Epoch:0}, base seq 78 > next seq 77) caused by previous failed request (NOT_LEADER_FOR_PARTITION, actions Refresh,MsgNotPersisted, base seq 77..77, base msgid 78, 148ms ago): recovering and retrying
	Line 5095: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40003/3]: my-topic-0011 [8] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 82
	Line 5096: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40003/3]: my-topic-0011 [8] resetting epoch base seq from 1 to 82
	Line 5097: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40003/3]: my-topic-0011 [9] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 78
	Line 5098: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40003/3]: my-topic-0011 [9] resetting epoch base seq from 1 to 78
	Line 5099: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40003/3]: my-topic-0011 [12] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 78
	Line 5100: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40003/3]: my-topic-0011 [12] resetting epoch base seq from 1 to 78
	Line 5101: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40003/3]: my-topic-0011 [1] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5102: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40003/3]: my-topic-0011 [1] resetting epoch base seq from 1 to 114
	Line 5103: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40003/3]: my-topic-0011 [17] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 78
	Line 5104: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40003/3]: my-topic-0011 [17] resetting epoch base seq from 1 to 78
	Line 5105: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [0] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5106: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [0] resetting epoch base seq from 1 to 114
	Line 5107: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [4] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5108: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [4] resetting epoch base seq from 1 to 114
	Line 5109: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [7] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5110: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [7] resetting epoch base seq from 1 to 114
	Line 5111: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [11] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5112: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [11] resetting epoch base seq from 1 to 114
	Line 5113: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [13] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5114: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [13] resetting epoch base seq from 1 to 114
	Line 5115: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [15] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5116: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [15] resetting epoch base seq from 1 to 114
	Line 5117: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [19] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5118: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [19] resetting epoch base seq from 1 to 114
	Line 5119: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [2] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5120: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [2] resetting epoch base seq from 1 to 114
	Line 5121: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [3] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5122: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [3] resetting epoch base seq from 1 to 114
	Line 5123: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [6] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5124: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [6] resetting epoch base seq from 1 to 114
	Line 5125: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [10] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5126: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [10] resetting epoch base seq from 1 to 114
	Line 5127: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [14] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5128: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [14] resetting epoch base seq from 1 to 114
	Line 5129: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40003/3]: my-topic-0011 [5] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 78
	Line 5130: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40003/3]: my-topic-0011 [5] resetting epoch base seq from 1 to 78
	Line 5131: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [16] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5132: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40001/bootstrap]: my-topic-0011 [16] resetting epoch base seq from 1 to 114
	Line 5133: 12:33:47 info: Producer11:[0] kafka-log Facility:NEWPID, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [18] changed PID{Id:57024,Epoch:0} -> PID{Id:57024,Epoch:1} with base MsgId 114
	Line 5134: 12:33:47 info: Producer11:[0] kafka-log Facility:RESETSEQ, Message[thrd:localhost:40002/bootstrap]: my-topic-0011 [18] resetting epoch base seq from 1 to 114
	Line 5245: 12:33:48 info: Producer11:[0] kafka-log Facility:DRAIN, Message[thrd:localhost:40003/3]: my-topic-0011 [17] beginning partition drain: drain before retrying
	Line 5256: 12:33:49 info: Producer11:[0] kafka-log Facility:DRAIN, Message[thrd:localhost:40003/3]: my-topic-0011 [17] beginning partition drain: drain before retrying
	Line 5308: 12:34:05 fail: Consumer:[0] Unexpected message value, topic/k [p]=my-topic-0011/12 [12], Offset=15167/15168, LeaderEpoch=79/80,  previous value=77, messageValue=77!

@marcin-krystianc marcin-krystianc linked a pull request Feb 19, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant