Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import Modules in Nifi ExecuteScript

Tags:

apache-nifi

I am new to Nifi and python

i want to execute my python script. So used ExecuteScript and tried to import certain modules. I have imported like this:

import json, sftp, paramiko

Though i have sftp installed, When i import it in Executescript, it says "Failed to process session. No module named sftp at line number 1"

which -a sftp
/usr/bin/sftp

When importing paramiko also, got the same error.

like image 428
vishnu Avatar asked Nov 21 '16 11:11

vishnu


2 Answers

The "python" engine used by ExecuteScript and InvokeScriptedProcessor is actually Jython, not pure Python. This means it cannot load native modules (.so files, compiled C files, etc.). According to this SO post, paramiko uses Crypto which has native libraries, so cannot be used in Jython (see the bottom of this post for my comment on that). My guess is that the sftp library does the same.

Jython can make use of pure Python modules, there is a discussion on the NiFi mailing list about how to point at (and include) those kinds of modules.

like image 86
mattyb Avatar answered Oct 11 '22 19:10

mattyb


ExecuteScript processor uses its own Jython Engine to execute your python scripts. As the libraries which you are importing are not available in NIFI inbuild Jython Engine its throwing error.

SOLUTION:

If python is already installed on our machine with all those libraries (the same machine where your NIFI is installed) you can use that python engine to execute your script. you can execute your python code using ExecuteProcess processor. see the configuration of ExecuteProcess.

like image 28
Safin Biswas Avatar answered Oct 11 '22 19:10

Safin Biswas