-
Notifications
You must be signed in to change notification settings - Fork 123
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
Snowflake AWS_SNS_TOPIC for External Tables #177
Closed
Brendon-Wood13
wants to merge
263
commits into
dbt-labs:fix/snowflake-updates
from
Brendon-Wood13:patch-1
Closed
Snowflake AWS_SNS_TOPIC for External Tables #177
Brendon-Wood13
wants to merge
263
commits into
dbt-labs:fix/snowflake-updates
from
Brendon-Wood13:patch-1
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ics/dbt-external-tables into feature/src-node-selection
…ics/dbt-external-tables into feature/src-node-selection
…ics/dbt-external-tables into feature/src-node-selection
…pe-support v0.2.0: snowpipes, partial/full refresh runs, more consistent contracts
…de-selection Feature/external source node selection
…-testing Ready for v0.2.0
…-testing Readier for v0.2.0
Package housekeeping
Bump 0.3.0 (dbt>=0.17.0)
Co-authored-by: Simo Tumelius <[email protected]>
…bt-labs#115) * Change python version in CI, set upper bound for dbt project version * Update changelog * Use python3.8 explicitly Co-authored-by: Jeremy Cohen <[email protected]>
* Hard code PRINTER_WIDTH flag * Changelog. Run on v0.21.1 * Run with latest
* Fix typo partitions Spark * Add recover partitions macro * Add recover partitions statement to build plan * Change varchar to string
* Add pattern argument for snowpipe (dbt-labs#65) * Fix snowpipe pattern argument is moved to the get_copy_sql macro * Remove pattern arg from create_snowpipe * Add people_json_snowpipe_pattern integration test * Add pattern example to event_snowpipe e sample source Co-authored-by: Simo Tumelius <[email protected]>
* Update integration tests * Update dbt version req. Rm unneeded configs * Rm dbt_utils dependency * Update changelog * fixup! Rm unneeded configs from pkg project * Readd dbt_utils for integration tests * Fix typo
Added table_format option to be used with Delta.
Added documentation for Delta lake
Update bigquery create external table macro to enable column quoting
…rror-integration-config
Co-authored-by: Lasse Benninga <[email protected]>
Using reference below and matching syntax to macro config, allow the configuration of an AWS_SNS_TOPIC for the creation of external tables with auto_refresh = true Reference for this implementation present in the Snowflake docs. https://docs.snowflake.com/en/user-guide/tables-external-s3.html#step-3-create-an-external-table
This PR has been marked as Stale because it has been open with no activity as of late. If you would like the PR to remain open, please comment on the PR or else it will be closed in 7 days. |
Although we are closing this PR as stale, it can still be reopened to continue development. Just add a comment to notify the maintainers. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description & motivation
Currently run_operation stage_external_sources does not allow the optional config of a AWS_SNS_TOPIC in the creation of external tables. This change adds an optional parameter aws_sns_topic to the Snowflake plugin that formats the Create External Table command in the Snowflake format seen here tables-external-s3
Checklist