Source Versioning docs for MySQL#36164
Conversation
bosconi
left a comment
There was a problem hiding this comment.
Here's what /mz-doc-edit came up with on its first time out of the garage.
Co-authored-by: Jon Currey <bosconi@users.noreply.github.com>
Co-authored-by: Jon Currey <bosconi@users.noreply.github.com>
…nges Adds a guide covering how to handle upstream schema changes (adding and dropping columns) using CREATE TABLE FROM SOURCE with EXCLUDE COLUMNS, and documents that binlog_row_metadata=FULL is required for that syntax. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
d10ec00 to
fca12b9
Compare
martykulma
left a comment
There was a problem hiding this comment.
I left some comments I think we should address, but otherwise LGTM. @kay-kim should be the final arbiter
| ## Prerequisites | ||
|
|
||
| {{% create-source/intro %}} | ||
| Materialize supports MySQL (5.7+) as a real-time data source. To connect to a |
There was a problem hiding this comment.
Supported version should be 8.0.1?
|
|
||
| {{% create-source/intro %}} | ||
| Materialize supports MySQL (5.7+) as a real-time data source. To connect to a | ||
| MySQL database, you first need to tweak its configuration to enable |
There was a problem hiding this comment.
Should this go into doc/user/layouts/shortcodes/mysql-direct/ingesting-data/mysql-configs.html instead? I'm not sure how we disambiguate settings for new syntax vs. old, probably need input from @kay-kim
|
|
||
| ```sql | ||
| SET GLOBAL binlog_row_metadata = FULL; | ||
| ``` |
There was a problem hiding this comment.
Does this SET persist it, if not, may want to redirect them to the parameter config?
kay-kim
left a comment
There was a problem hiding this comment.
Hi .. haven't reviewed yet. Will do so next week ... but, from the discussions in slack, will it not be public preview? cc: @maheshwarip
Adds docs outlining how to use the new
CREATE TABLE FROM SOURCEsyntax for MySQL sources to enable source versioning, and re-adds thesource-versioning.mdmysql doc that was previously reverted