Add MySQL FAQ entry for unsupported MariaDB partial row events#6487
Merged
Blargian merged 3 commits intoJul 3, 2026
Conversation
Documents why a pipe fails on a MariaDB 12.3+ PARTIAL_ROW_DATA_EVENT and how to recover (resync, optionally raise binlog_row_event_fragment_threshold below max_allowed_packet). This anchor is referenced by the NOTIFY_BINLOG_PARTIAL_ROW_EVENT_UNSUPPORTED alert in clickpipes-platform. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
3 Skipped Deployments
|
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
jgao54
approved these changes
Jul 3, 2026
|
Docs PR opened: ClickHouse/mintlify-docs-dev#329 Added a MySQL ClickPipes FAQ entry explaining why pipes fail on unsupported MariaDB 12.3+ partial row events and how to recover. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a MySQL ClickPipes FAQ entry (anchor
#mariadb-partial-row-event-unsupported) explaining why a pipe fails when it encounters a MariaDB 12.3+PARTIAL_ROW_DATA_EVENT, and how to recover.Why
MariaDB 12.3+ fragments oversized row changes into
PARTIAL_ROW_DATA_EVENTs that a consumer must buffer and reassemble. ClickPipes doesn't support reassembly yet, so it now fails loudly (rather than silently dropping the row change) and requires a resync. The newNOTIFY_BINLOG_PARTIAL_ROW_EVENT_UNSUPPORTEDalert links users here.Mitigation documented
binlog_row_event_fragment_thresholdon the source to reduce fragmentation, keeping it belowmax_allowed_packet.Paired with clickpipes-platform PR (branch
fix/dbi-815/mysql-fail-on-maria-partial-row-data-event) which references this anchor.🤖 Generated with Claude Code