-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Destination Redshift: deprecate old migration normalization code #25771
Destination Redshift: deprecate old migration normalization code #25771
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
Affected Connector ReportNOTE
|
Connector | Version | Changelog | Publish |
---|
- See "Actionable Items" below for how to resolve warnings and errors.
❌ Destinations (15)
Connector | Version | Changelog | Publish |
---|---|---|---|
destination-bigquery |
1.3.4 |
✅ | ✅ |
destination-bigquery-denormalized |
1.3.3 |
✅ | ✅ |
destination-clickhouse |
0.2.3 |
✅ | ✅ |
destination-clickhouse-strict-encrypt |
0.2.3 |
🔵 (ignored) |
🔵 (ignored) |
destination-mssql |
0.1.23 |
✅ | ✅ |
destination-mssql-strict-encrypt |
0.1.23 |
🔵 (ignored) |
🔵 (ignored) |
destination-mysql |
0.1.20 |
✅ | ✅ |
destination-mysql-strict-encrypt |
❌ 0.1.21 (mismatch: 0.1.20 ) |
🔵 (ignored) |
🔵 (ignored) |
destination-oracle |
0.1.19 |
✅ | ✅ |
destination-oracle-strict-encrypt |
0.1.19 |
🔵 (ignored) |
🔵 (ignored) |
destination-postgres |
0.3.27 |
✅ | ✅ |
destination-postgres-strict-encrypt |
0.3.27 |
🔵 (ignored) |
🔵 (ignored) |
destination-redshift |
0.4.7 |
✅ | ✅ |
destination-snowflake |
1.0.0 |
✅ | ✅ |
destination-tidb |
0.1.1 |
✅ | ✅ |
- See "Actionable Items" below for how to resolve warnings and errors.
👀 Other Modules (1)
- base-normalization
Actionable Items
(click to expand)
Category | Status | Actionable Item |
---|---|---|
Version | ❌ mismatch |
The version of the connector is different from its normal variant. Please bump the version of the connector. |
⚠ doc not found |
The connector does not seem to have a documentation file. This can be normal (e.g. basic connector like source-jdbc is not published or documented). Please double-check to make sure that it is not a bug. |
|
Changelog | ⚠ doc not found |
The connector does not seem to have a documentation file. This can be normal (e.g. basic connector like source-jdbc is not published or documented). Please double-check to make sure that it is not a bug. |
❌ changelog missing |
There is no chnagelog for the current version of the connector. If you are the author of the current version, please add a changelog. | |
Publish | ⚠ not in seed |
The connector is not in the seed file (e.g. source_definitions.yaml ), so its publication status cannot be checked. This can be normal (e.g. some connectors are cloud-specific, and only listed in the cloud seed file). Please double-check to make sure that it is not a bug. |
❌ diff seed version |
The connector exists in the seed file, but the latest version is not listed there. This usually means that the latest version is not published. Please use the /publish command to publish the latest version. |
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 assuming tests pass
but you'll probably need to remove this test case https://github.com/airbytehq/airbyte/blob/master/airbyte-integrations/bases/base-normalization/integration_tests/test_normalization.py#L486
No idea why the
so yeah, the only failure is the one that's expected to fail now. |
397d6f5
to
da70f49
Compare
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
da70f49
to
1bad657
Compare
This comment was marked as outdated.
This comment was marked as outdated.
/test connector=bases/base-normalization
Build PassedTest summary info:
|
/publish connector=bases/base-normalization run-tests=false
if you have connectors that successfully published but failed definition generation, follow step 4 here |
…bytehq#25771) * first pass normalization * add pr link * remove python test & resources * linting
What
closes #25519
Functionality was added over a year ago (#12064) to migrate Redshift tables from
VARCHAR
type toSUPER
type. Tables have now beenSUPER
type by default for awhile, so we are removing this old migration code that is no longer needed.How
Delete migration-related normalization code. Java code was deleted in #25698.
Recommended reading order
configuration.sql
andcolumns.sql
(remove macros)*.sql
(remove usages of macros)🚨 User Impact 🚨
The set of impacted users is expected to be very small: anyone who has been running old versions of Redshift and Airbyte for over a year and is still using
VARCHAR
tables with likely stale data. Anyone who is impacted can manually migrate their Redshift tables if needed. The team voted to remove this functionality as it was implemented over a year ago.