-
Notifications
You must be signed in to change notification settings - Fork 594
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
Tracking: schema changes of source | (table with connector) #15582
Comments
Possible solution: using the semantics whether the source executor is reset. |
Panic: #16486 |
Related discussion about watermark risingwavelabs/rfcs#85 (comment) |
Note down a requirement for |
We probably also need the same for |
Can you explain more about it? Should the sink re-send all the historical data or just send it with the current progress? |
Changed the pr description and will create a new PR for "alter connector" to make the issue clearer |
Note down a reminder: alter a secret that referenced by a connector is also kind of |
We divided the cases into 2 categories: No Rebuild and Rebuild.
|
For rebuild, there's another case: alter schema
(More discussion on https://risingwave-labs.slack.com/archives/C069EV2Q5MK/p1726639203021329 |
Just found a new issue addressing this. #18440 Let's move there for discussion. |
close this one for duplicate with #18440 |
A relay for #11800.
ALTER TABLE <name> FORMAT ... ENCODE ... ( ... )
ALTER SOURCE <name> FORMAT ... ENCODE ... ( ... )
: feat: implementALTER SOURCE xx FORMAT xx ENCODE xx (...)
#14057ALTER TABLE <name> REFRESH SCHEMA
: feat: alter the schema registry of table with connector #15025ALTER SOURCE <name> REFRESH SCHEMA
: feat: refresh the schema of sources with schema registry #15541Note: A minor difference between
ALTER SOURCE <name> REFRESH SCHEMA
andALTER TABLE <name> REFRESH SCHEMA
is that the former rejects if columns are missing or changed, while the latter do this check only when the column is referenced by downstream tasks.The text was updated successfully, but these errors were encountered: