-
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 Snowflake: Return Standard Loading #8528
Destination Snowflake: Return Standard Loading #8528
Conversation
…al-staging # Conflicts: # airbyte-integrations/connectors/destination-snowflake/src/main/java/io/airbyte/integrations/destination/snowflake/SnowflakeInternalStagingConsumerFactory.java # airbyte-integrations/connectors/destination-snowflake/src/main/resources/spec.json
vmaltsev seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
@@ -87,6 +87,19 @@ | |||
} | |||
} | |||
}, | |||
{ | |||
"title": "Standard Inserts", |
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.
can you:
- set
hidden: true
to hide this option from the UI (no one should be using it anymore) - in the connector, use internal staging when this option is set
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.
@sherifnada, when hidden
is set to true
, what will the UI show for a connection already set to standard loading? Will it cause a UI exception?
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.
actually nvm, let's just do this option for now and handle what I suggested in a follow up PR just to unblock current users
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.
I think hidden
won't work for enum values actually so I was wrong. migration will be a little more complex
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.
Yes, hidden: true won't work for oneOf. Just tested it on UI
/test connector=connectors/destination-snowflake
|
@VitaliiMaltsev, FYI, sorry that we actually should remove @tuliren removed hidden: true option and bumped to 0.3.19 version. Can i publish it now? |
@VitaliiMaltsev, yes, feel free to publish the new version. Thanks~~ |
/publish connector=connectors/destination-snowflake
|
* Snowflake Destination: implemented internal staging * fix checkstyle * improved perfomance of sync * added changelog * test refactoring * removed file chunking * add docs * added javadoc, updated spec * refactoring * bump version * return Standard Inserts into spec * hide Standard inserts option, set Internal staging as default option * remove hidden: true from spec * bump version 0.3.19 Co-authored-by: vmaltsev <[email protected]>
What
Describe what the change is solving
It helps to add screenshots if it affects the frontend.
How
Describe the solution
Recommended reading order
x.java
y.python
🚨 User Impact 🚨
Are there any breaking changes? What is the end result perceived by the user? If yes, please merge this PR with the 🚨🚨 emoji so changelog authors can further highlight this if needed.
Pre-merge Checklist
Expand the relevant checklist and delete the others.
New Connector
Community member or Airbyter
airbyte_secret
./gradlew :airbyte-integrations:connectors:<name>:integrationTest
.README.md
bootstrap.md
. See description and examplesdocs/SUMMARY.md
docs/integrations/<source or destination>/<name>.md
including changelog. See changelog exampledocs/integrations/README.md
airbyte-integrations/builds.md
Airbyter
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
/test connector=connectors/<name>
command is passing./publish
command described hereUpdating a connector
Community member or Airbyter
airbyte_secret
./gradlew :airbyte-integrations:connectors:<name>:integrationTest
.README.md
bootstrap.md
. See description and examplesdocs/integrations/<source or destination>/<name>.md
including changelog. See changelog exampleAirbyter
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
/test connector=connectors/<name>
command is passing./publish
command described hereConnector Generator
-scaffold
in their name) have been updated with the latest scaffold by running./gradlew :airbyte-integrations:connector-templates:generator:testScaffoldTemplates
then checking in your changes