Should changes to field order be considered breaking changes? #1810
edgarrmondragon
started this conversation in
General
Replies: 1 comment 2 replies
-
@edgarrmondragon can you update with a link to the slack convo? And when you say breaking change, are you talking about on the version on the connector or something else? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Recently a question came up in Slack regarding
target-s3-csv
causing problems with downstream COPY/import operations due to the column order changing from one invocation to another.For better or worse, some targets force alpha sorting of the fields (e.g.
target-snowflake
).Some users may prefer that targets respect the order communicated by tap via the SCHEMA messages, but that requires taps to emit a consistent order and that they try to preserve the order between revisions/versions.
The SDK could help with SCHEMA messages emitted, but also perhaps with best practices/recommendations around handling schema updates.
Beta Was this translation helpful? Give feedback.
All reactions