Member since
07-31-2020
9
Posts
2
Kudos Received
0
Solutions
12-12-2022
05:06 AM
@wbivp If you are using kerberos authentication, you also need to provide "kerberos_service_name". Try setting kerberos_service_name: impala
... View more
06-09-2022
08:14 AM
The video below will take you through using the dbt-impala-example repo. This is an example dbt project, containing a few seeds, tests and models to help you bootstrap your own dbt project. If you haven't gotten started with dbt & Impala on CDP yet, take a look at the previous post Getting started with dbt-impala & Cloudera Data Warehouse.
... View more
09-15-2020
01:59 AM
@shreyanshu_pare You can now autoload nars by placing them in the ./extensions dir in the NiFi home. https://www.nifi.rocks/auto-loading-extensions/
... View more
08-07-2020
03:19 PM
@Vj1989 Great way to simplify it. Believe you missed a 'use $f;' from Step 2 though, otherwise you're just getting the same tables over and over. E.g. for f in `cat /tmp/databases`
do
echo "Database name is $f , Table Names are as below:"
hive -e "use $f; show tables;" >> /tmp/tables
done
... View more