-
Notifications
You must be signed in to change notification settings - Fork 102
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
Hotfix serverless sql #132
Conversation
test/integration/dbt_project.yml
Outdated
sqlserver_integration_tests: | ||
+as_columnstore: false |
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.
@jtcohen6 I thought this would be the right place for this but I'm still getting the error that this change was intended to fix:
'COLUMNSTORE'
is not supported in this service tier of the database.
@swanderz In order to override the I'm hopeful that something like this would work. I'm not positive if target:
...
projects:
- overrides: base
dbt_project_yml: &override-project
name: dbt_test_project
config-version: 2
version: '1.0.0'
models:
+as_columnstore: false
- overrides: ephemeral
dbt_project_yml: *override-project
- overrides: incremental
dbt_project_yml: *override-project
- overrides: snapshot_strategy_timestamp
dbt_project_yml: *override-project
- overrides: schema_tests
dbt_project_yml: *override-project
sequences:
... |
Just edited comment above based on this error. Checked and saw the project name is |
thanks @jtcohen6! |
* low-end serverless tier has no columnstore * use cxn test to wake up serverless db * no columnstore * add new tests
Azure SQL Standard Tier is more expensive than hopefully needed. To make Azure SQL serverless work, I:
columnstore
option, andconnection-azuresql
job come before theintegration-azuresql
job to ensure that the serverless db is unpaused/active before connecting