Member since
07-31-2020
6
Posts
2
Kudos Received
0
Solutions
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