-
Notifications
You must be signed in to change notification settings - Fork 234
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
Incremental macros missing from packaged dbt-spark==0.19.0 #152
Comments
Hey @highfly22, thanks for the issue, I was just about to open this! This is actually a problem with the distribution of dbt-spark==0.19.0 that we're hoping to fix very soon. In particular, this line in Because those files are missing from the packaged plugin, dbt instead falls back to the default incremental materialization, which doesn't work on Spark and raises the error you're seeing here. We're going to fix this (#151) and ship
|
closed by #151! |
Fix is included in |
Describe the bug
When a incremental model is running, the following error is reported
For example, the schema is configured as "FooSchema". The temporary view is created as "my_table__dbt_tmp". The describe command tries to find 'FooSchema.my_table__dbt_tmp', which doesn't exists.
Steps To Reproduce
dbt run -m my_table
twiceExpected behavior
No error is reported.
Screenshots and log output
If applicable, add screenshots or log output to help explain your problem.
The output of
dbt --version
:Python 3.6.3
The operating system you're using:
The output of
python --version
:Python 3.6.3
Additional context
Thrift server is created by spark 2.4.7
The text was updated successfully, but these errors were encountered: