Deprecation of Legacy State #39430
nataliekwong
announced in
Feature Deprecation
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As of Airbyte Platform version v0.62.4, we have deprecated support of the Legacy state in favor of our Stream and Global states, which were introduced to enable stream-level configuration and replication. This decision was made in order to ensure a consistent experience across all Airbyte connectors.
What does this mean for you?
Any custom connector that is running on a Legacy version of our state through an old version of the Airbyte CDK will no longer successfully sync, and will send an error message saying “Legacy states are no longer supported”. You will need to migrate the connector to a newer version of the CDK (1.3.1 or higher) that supports per-stream or global states to keep syncing with this connector.
Migration steps
To learn more about our principles around state messages, read more in our documentation. To migrate your custom connector to a new version of the Airbyte CDK, follow these steps:
airbyte-cdk = "0.10.0"
would change toairbyte-cdk = "0.8.0"
or a more recent version of the CDK. We recommend migrating to at least CDK 1.0 or higher. The current version of the CDK at the time of this writing is 1.3.1.poetry lock
to update the dependencies and build the new version of the connectorBeta Was this translation helpful? Give feedback.
All reactions