Skip to content
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Apache Impala setup"
description: "Read this guide to learn about the Apache Impala warehouse setup in dbt."
title: "Cloudera Impala setup"
description: "Read this guide to learn about the Cloudera Impala warehouse setup in dbt."
id: "impala-setup"
meta:
maintained_by: Cloudera
Expand Down Expand Up @@ -81,7 +81,7 @@ your_profile_name:
auth_type: ldap
use_http_transport: [true / false] # default value: true
use_ssl: [true / false] # TLS should always be used with LDAP to ensure secure transmission of credentials, default value: true
username: [username]
user: [username]
password: [password]
dbname: [db name] # this should be same as schema name provided below, starting with 1.1.2 this parameter is optional
schema: [schema name]
Expand Down
5 changes: 3 additions & 2 deletions website/docs/reference/resource-configs/impala-configs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Apache Impala configurations"
title: "Cloudera Impala configurations"
description: "Impala Configs - Read this in-depth guide to learn about configurations in dbt."
id: "impala-configs"
---
Expand All @@ -16,12 +16,13 @@ When materializing a model as `table`, you may include several optional configs
| stored_as | underlying storage format of the table | No | stored_as='PARQUET' |
| location | storage location, typically an hdfs path | No | LOCATION='/user/etl/destination' |
| comment | comment for the table | No | comment='this is the cleanest model' |
| serde_properties | SerDes ([de-]serialization) prperties of table | No | serde_properties="('quoteChar'='\'', 'escapeChar'='\\')" |
| serde_properties | SerDes ([de-]serialization) properties of table | No | serde_properties="('quoteChar'='\'', 'escapeChar'='\\')" |
| tbl_properties | any metadata can be stored as key/value pair with the table | No | tbl_properties="('dbt_test'='1')" |
| is_cached | true or false - if this table is cached | No | is_cached=false (default) |
| cache_pool | cache pool name to use if is_cached is set to true | No | |
| replication_factor | cache replication factor to use if is_cached is set to true | No | |
| external | is this an external table - true / false | No | external=true |
| table_type | indicates the type of the table - iceberg / kudu | No | table_type="iceberg" |

For Cloudera specific options for above parameters see documentation of CREATE TABLE (https://docs.cloudera.com/documentation/enterprise/6/6.3/topics/impala_create_table.html)

Expand Down
Loading