docs/content/stable/releases/techadvisories/ta-24992.md
| Product | Affected Versions | Related Issues | Fixed In |
|---|---|---|---|
| YugabyteDB gRPC (Debezium) Connector | dz.1.9.5.yb.grpc.2024.1 | {{<issue 24992 >}} | dz.1.9.5.yb.grpc.2024.2 |
The YugabyteDB gRPC (Debezium) Connector may stop sending checkpoints to YugabyteDB, causing data streaming to stall for certain tablets.
This issue is more likely to occur when a single task is configured to poll all the tablets of a table while the tablets are being split. If the checkpoint for a tablet is not updated and that tablet gets split, the connector fails to transition to the child tablets. As a result, no data from the child tablets will be streamed, causing the streaming process to halt for those tablets.
To mitigate this issue, either upgrade the connector to dz.1.9.5.yb.grpc.2024.2, or restart the connector using the following steps:
When a Kafka commit occurs, the connector snapshots the current offsets across all source partitions. It identifies the highest offset for each tablet, logs these as checkpoints, and then updates YugabyteDB with the latest progress tracking information.
The problem is how higher offsets are calculated: instead of merging new values into the existing global offset map, the map is completely overwritten. As a result, in cases of hot shards or actively written tablet ranges, some tablets might not receive a callback. In other words, offsets for certain tablets may be inadvertently skipped or filtered out.