Member since
01-07-2019
220
Posts
23
Kudos Received
30
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5046 | 08-19-2021 05:45 AM | |
1811 | 08-04-2021 05:59 AM | |
879 | 07-22-2021 08:09 AM | |
3692 | 07-22-2021 08:01 AM | |
3429 | 07-22-2021 07:32 AM |
12-30-2019
07:30 AM
I found solution to my problem: Change is required to "HDP_3.0.1_docker-deploy-scripts_18120587fc7fb\assets\generate-proxy-deploy-script.sh" file. I moved: [9090]=9090 [9091]=9091 from section: tcpPortsHDF=( [2202]=22 [2182]=2181 [4557]=4557 .... ) to section: tcpPortsHDP=( [12049]=2049 [2201]=22 [2222]=22 [1100]=1100 .... [9090]=9090 [9091]=9091 ... ) Then I ran again "HDP_3.0.1_docker-deploy-scripts_18120587fc7fb\docker-deploy-hdp30.sh". Now it works.
... View more
12-30-2019
05:53 AM
Thank you for the input, this was helpful advice!
... View more
12-27-2019
06:37 AM
@vikram_shinde the Escape Character is a setting in the CSVReader : CSVReader 1.9.0.3.4.1.1-4 my nifi version is: 1.9. Escape Character is a basic of CSV, as it is required to ignore quotes inside of the "enclosed by quotes". So if you feed the escaped string to the CSV reader it will output the correct values w/o the escape character.
... View more
12-26-2019
02:10 AM
@hud When you run nifi as a microservice then you can configure PVC [Persistent Volume Claims] using helm in AKS or Kubernetes which will ensure that evenif the nifi pods restarts it will always have the same volume mounted. Under the persitence configuration the parameter persistence.enabled should be set to true see Helm Chart for Apache Nifi HTH
... View more
12-25-2019
11:03 PM
@DennisJaheruddi ....Thanks much for making the Christmas more merrier 🙂 I agree to your statement and have configured the flow accordingly. I am marking your reply as accepted solution. Great advise and kudos to you again.
... View more
12-25-2019
01:23 AM
Hi Dennis, Thank you for the reply. I could use the ListFile and FetchFile processors to get the files of the target host (such as: MySQL log files).
... View more
12-24-2019
10:31 AM
Thanks you for the reply ! i also had the same understanding. As per my understanding, its meant for ingestion use-cases and not a great fit to replace the normal REST API's with lot of business logics. Just wanted to clear my understanding.
... View more
12-24-2019
03:43 AM
1 Kudo
Hello, Tx for your reaction Dennis. I was able to continue. The reason I was having issues seemed to be related to the fact that the Groovy script was a standard class with a static main method. It makes sense that Nifi does not accept that I guess, but the process of diagnosing such issue might be made easier imo. It was a trial and error task, and as you suggested, by starting from an example. Anyway, I am good now 🙂 Regards Peter
... View more
12-24-2019
03:27 AM
1 Kudo
First of all, you are getting an error inside the python file. So we can eliminate several causes (e.g. not being able to access the file, or not being able to find the file). Secondly, I believe you are able to run the file from the command line, that would eliminate a problem in the file itself, or with the general logic and setup. This leaves two likely suspects: 1. You are running from a different place (for instance a different node) 2. You are running with different rights (for instance a different user) or less authentication (for instance no kerberos ticket) Step 1 can be tested easily by manually going to all Nifi nodes and running the command from the command line. Step 2 might be tested by running something like !whoami in python from the command line, and from nifi and inspecting the results. If this does not help, try to get some more info out of python on what goes wrong.
... View more
12-24-2019
03:22 AM
1 Kudo
Judging by the name of all processors, this is the only one that is really built specifically towards Excel.
... View more