-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
🎉 New destination: databend #19815
🎉 New destination: databend #19815
Conversation
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.
@hantmac we recently removed NormalizationRunnerFactory
and moved specification of normalization into destination_definitions.yaml
. In order to add normalization support, you would need to add a section to destination_definitions.yaml
for the new connector. It could look like following (note: generate a random UUID v4 for destinationDefinitionId
):
name: Databend
destinationDefinitionId: aa0cf6d4-fa7a-4d4a-9a42-6ddb5687d28a
dockerRepository: airbyte/destination-databend
dockerImageTag: 0.1.0
documentationUrl: https://docs.airbyte.com/integrations/destinations/databend
normalizationConfig:
normalizationRepository: airbyte/normalization-databend
normalizationTag: 0.2.25
normalizationIntegrationType: databend
supportsDbt: true
releaseStage: alpha
Hi @grishick, thanks for your review. I have added a section to |
Hello 👋:skin-tone-2: and thank you for your contribution! Airbyte has instituted a code freeze between 19 and 30 December, to make sure there are no disruptions during the holidays. If you have any questions or need further clarification, please don't hesitate to ping via Slack. |
I will try to move this PR the last mile here: #20909 |
I got a Databend cloud account set up, I added the credentials to
I got the following error:
|
It appears that
|
Thanks for your help. The
|
I added secrets to GSM and am running integration tests here: #20909 |
@hantmac I added secrets to secrets manager and ran integration tests via CI. Destination tests pass (🎉 ), but normalization tests fail: https://github.com/airbytehq/airbyte/actions/runs/3839797452/jobs/6538073823 |
What
How
Recommended reading order
docs/integrations/destinations/databend.md
spec.json
destination_databend/destination.py
destination_databend/client.py
destination_databend/writer.py
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/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 changesTests