Member since
03-18-2018
33
Posts
0
Kudos Received
0
Solutions
10-09-2020
01:35 AM
I am using Nifi Registry installed on Windows Server and Windows 10 It works good from WSL (Ubuntu, Debian) on Windows 10. Or on Windows Server 2016 I used cygwin (there is no WSL on this server version) 1) I added in .bash_profile in WSL or cygwin commands to export path of Java and start Nifi Registry on boot For example for cygwin: export JAVA_HOME=/cygdrive/c/'Program Files'/Java/jdk1.8.0_261
export PATH=$JAVA_HOME/bin:$PATH
/cygdrive/d/nifi-registry-0.7.0/bin/nifi-registry.sh start (cygwin use the same java folder as windows system) 2) And than saved a .vbs script to run cygwin on Windows boot: Set ws = CreateObject("Wscript.Shell")
ws.run "c:\cygwin64\cygwin.bat", vbhide 3) And put this script to autorun folder in Windows: win + R -> shell:startup So now after Windows boot cygwin starting on background with Nifi Registry on board I also tried to find the way how to run cygwin with nssm but it was unsuccessfully
... View more
08-30-2018
01:33 PM
@vishal dutt Please remember to login and accept the answer if you think it has addressed your question.
... View more
05-23-2018
04:39 PM
None of the above worked. It working after adding below configuration set("spark.jars","/usr/hdp/current/spark2-client/jars/sqljdbc42.jar")
... View more
07-19-2018
10:22 PM
This I believe, is in correlation to the following bug Link which was corrected in specific versions of Tez. If you are running Interactive query HDInsight in Azure, they are still using Tez .7.0 (not fixed). I did however, find this blog post that explains how to at least stop the queries from running. As far as I can tell, Tez will still show them as running, but it does free up your resources again. Edit: the follow up link is probably helpful 🙂 Fix
... View more