dbt-impala
dbt-impala copied to clipboard
A dbt adapter for Apache Impala & Cloudera Data Platform
I changed the external configuration as false. But the created table is till external table. ``` {{ config( materialized='incremental', partition_by='report_date', external=false ) }} ```
## Background Minor version `v1.8` is targeted for final release within dbt Core on May 9, 2024. ~~As a maintainer of a dbt adapter, we strongly encourage you to release...
## Describe your changes Updated the dbt-core to v1.5 ## Internal Jira ticket number or external issue link https://jira.cloudera.com/browse/DBT-760 ## Testing procedure/screenshots(if appropriate): https://gist.github.com/nsharma-25/cbe6d0f7f8e9cc1595d6f30c5188b8bb ## Checklist before requesting a review...
We have an incremental model with a filed name that called location. It seems to be a reserved name in impala so we create the table with the following command:...
## Describe your changes We have identified a bug where dbt-impala is trying to scan all schemas mentioned in dbt-project.yml and run a describe table on all tables of those...
I am unable to install `dbt-impala` on a Windows machine from `pip`, because of the dependency on the `kerberos` package, which cannot be installed on Windows. In order to support...
## Background Minor version `v1.7` is targeted for final release on Ocotber 26, 2023. As a maintainer of a dbt adapter, we strongly encourage you to release a corresponding minor...
## Describe your changes Currently, there is no easy way to differentiate between tables and views in impala. The current query for list_relations_without_caching is not optimized; hence it started failing...
In `ImpalaAdapter`, `quote()` doesn't seem to do anything: https://github.com/cloudera/dbt-impala/blob/988e6c186fbd19c086b70257b8e0c9252bb2c099/dbt/adapters/impala/impl.py#L72C2-L73C38 Any reason for this? I have a source table of which name is reserved keyword, so there is no way to...
Is that possible to support kudu table in this dbt adapter?