Member since
02-02-2017
18
Posts
1
Kudos Received
0
Solutions
02-15-2022
08:00 AM
Hi @CN As this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
04-03-2018
05:36 PM
https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.4/bk_command-line-installation/content/configure_livy.html
... View more
03-26-2018
02:00 PM
Is Kerberized server supported by LivySessionController ?
... View more
06-15-2017
03:42 AM
+1 ExecuteScript does allow incoming flow files... also if your scripting language is Groovy you can use Sshoogr to execute remote commands, see my example here.
... View more
09-26-2018
09:50 PM
@Matt Clarke I am also trying to do a POC using ExecuteProcess to start a .sh file on a remote server. Right now I am just trying to move a file on remote server from one location to another. But I am getting an error (Host Key Verification Failed) on the Nifi Processor. I am able to do the same via terminal on host machine (on which Nifi is installed and running). What could be the issue here? Help! ssh -t user@hostname 'mv ~/folder1/test.txt ~/folder2/' <-- I am able to do this successfully on terminal. ExecuteProcess Properties : Command: ssh
Command Arguments: -i "~/.ssh" user@hostname 'mv ~/folder1/test.txt ~/folder2/'
Batch Duration : No value set
Redirect Error Stream : false
Working Directory : No value set
Argument Delimiter : No value set
... View more
09-09-2017
10:50 PM
1 Kudo
Hi @Praveen Singh,i got other solution for your case. 1. The results from ListDatabaseTables processor will have individual flowfiles with db.table.name, db.table.fullname attributes associated with each flow file. 2. You can take advantage of either of those attributes in RouteonAttribute processor by using the property as follows... ${db.table.name:in("tablename1","tablename2",.....,"tablename10")} and mention the list of required table names in the expression to filter out the required table names from the results of ListDatabaseTables processor. Flow screenshot:- RouteonAttribute configs:-
... View more