Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kerberos support for connecting to impala instance (#11)
Testplan: 1. Basic dependencies need to be installed. These are mentioned in README.md 2. Build and install the dbt-impala adapter using: python3 setup.py install 3. Create a template dbt project using following: dbt init 4. Ensure kerberos is initilized and relevant libraries properly installed - depending on your OS 5. Edit $HOME/.dbt/profiles.yml so that it looks similar to: demo_dbt: outputs: dev_impala_kerberos: type: impala host: <hostname> port: <port> auth_type: GSSAPI kerberos_service_name: <kerberos service name> use_http_transport: true use_ssl: true dbname: s3test schema: s3test target: dev_impala_kerberos 6. In the dbt project generated in step (2), run the following, which should succeed if local instance of Impala is up: dbt debug (check connection)
- Loading branch information