-
Notifications
You must be signed in to change notification settings - Fork 1k
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
chore: update upgrade notes for 0.7 #4535
Conversation
Past releases of KSQL were backwards compatible. However, there was a cost to this backwards compatibility: | ||
progress was slower and the code base incurred increased complexity. ksqlDB is a young product and | ||
we're wanting to move fast, so have decided to choose speed of development over strong backwards | ||
compatibility guarantees for a few released. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: released -> releases
tables and types in the source cluster. This is currently a manual process, until support is added | ||
to [dump the schema](https://github.com/confluentinc/ksql/issues/4529). | ||
|
||
The recommended process it to: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: it -> is
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for taking care of this andy! Given it's late in the UK, we can merge this and fix forward IMO.
I'm going to merge, since the build is not operable at the moment due to the nexus -> Jfrog migration. this is a docs only change, so we don't need to wait on a green build. |
first column and the schema from the second column of the output. | ||
1. Order by dependency: you'll now have the list of SQL statements to rebuild the schema, but they | ||
are not yet ordered in terms of dependencies. You will need to reorder the statements to ensure | ||
each statement come after any other statements it depends on. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: come -> comes
* docs: stop recommending headless mode (#4896) * docs: cherry pick: materialized views + streaming ETL pipelines * docs: fixes to Debezium (#5082) * docs: link to Debezium's MongoDB docs (#5085) * docs: link to Debezium's MongoDB docs * docs: remove unused params * docs: fix reference to @SchemaProvider (#4784) Which doesn't exist. Replace with `@UdfSchemaProvider`, which does. Co-authored-by: Andy Coates <[email protected]> * docs: call out PARTITION BY applied before SELECT (#4795) * docs: call out PARTITION BY applied before SELECT Improve the docs to make it clear that, like GROUP BY, any PARTITION BY clause is applied after any JOIN or WHERE, but before the SELECT. Also, include optional JOIN clause in INSERT INTO docs, as joins are supported, (QTT test added to prove this). Co-authored-by: Andy Coates <[email protected]> * docs: update ARRAY_CONTAINS docs (#4835) * docs: update ARRAY_CONTAINS docs Change #4105 split ARRAYCONTAINS into ARRAY_CONTAINS and JSON_ARRAY_CONTAINS, but looks like the docs weren't updated... * docs: scalar funcs update (#4866) * docs: scalar funcs update Fix links in doc and improve docs around EXTRACTJSONFIELD * docs: remove dead links to window bounds udafs (#5001) Co-authored-by: Andy Coates <[email protected]> * chore: update upgrade notes for 0.7 (#4535) Co-authored-by: Michael Drogalis <[email protected]> Co-authored-by: Andy Coates <[email protected]> Co-authored-by: Andy Coates <[email protected]>
Description
Docs for upgrading