Member since
06-20-2016
34
Posts
36
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4969 | 05-18-2017 04:02 PM | |
9262 | 02-17-2017 03:03 PM | |
2825 | 02-16-2017 02:25 PM | |
9652 | 02-03-2017 02:35 PM | |
3342 | 09-22-2016 01:39 PM |
05-24-2017
01:19 PM
Hi @Roger Young What does status-nifi.bat report on the machine? Are there any Java processes that show up in your task manager? It's possible that if NiFi wasn't shutdown cleanly that it was unable to delete nifi.pid, nifi.status, and nifi.lock files and that the bootstrap logic is incorrectly assuming that means it is still running. If you determine that there is not a NiFi process running (task manager, status-nifi above) you could try moving those files out to another directory and then starting NiFi.
... View more
05-18-2017
04:02 PM
Hi @Subrahmanya Oruganti I don't believe that Linux Mint is a supported distribution for HDP or HDF. I think the closest would be Ubuntu 16.04. Please see the HDP install guide.
... View more
02-17-2017
07:06 PM
1 Kudo
Hi @Ramesh Prasad The Hortonworks Data Flow page has a lot of good information on use cases and features. The Apache NiFi also has some good info on that front. Thanks, Bryan
... View more
02-17-2017
03:52 PM
No problem, one thing to know about the REST api is that the url paths are all prefixed with /nifi-api e.g. For localhost 8080 system diagnostics, you'd want to hit: http://localhost:8080/nifi-api/system-diagnostics
... View more
02-17-2017
03:03 PM
2 Kudos
Hi @Raj B One endpoint that gives a lot of metrics about current load, etc would be the system diagnostics REST endpoint. Depending on what else you're looking for (individual processor state, etc) there are other endpoints that might be useful. REST documentation is available at https://nifi.apache.org/docs/nifi-docs/rest-api/ or from the help menu of a NiFi instance. Thanks, Bryan
... View more
02-17-2017
02:13 PM
Hi @Christophe Le Rouzo The reporting tasks are set up during setup of NiFi and reside in the flow.xml.gz file. [1] Is there any chance that you manually replaced the flow.xml.gz on the nodes with a new one? In below link, please search for "flow.xml" for an explanation as well as a way to customize it during setup. [1] https://community.hortonworks.com/articles/57980/hdf-20-apache-nifi-integration-with-apache-ambarir.html Thanks, Bryan
... View more
02-16-2017
05:10 PM
Hi @Oliver Meyn I've never tried with HA proxy but I have configured Site To Site through a squid proxy with TLS. It didn't require much in the way of special configuration, here's what I had in my config file (this is for dev purposes, you would probably want to lock it down quite a bit). http_access allow all
# Choose the port you want. Below we set it to default 3128.
http_port 3128
You'll definitely want to use the HTTP site to site and configure your keystore and truststore for the client. Thanks, Bryan
... View more
02-16-2017
02:25 PM
4 Kudos
Hi @Andy Liang In secured mode, the default authentication method is via 2-way TLS. If you configure another login identity provider. [1] Then you have the option of using 2-way TLS or either SPNEGO in browser or username/password login with 1 way TLS. [1] https://nifi.apache.org/docs/nifi-docs/html/administration-guide.html#user-authentication Thanks, Bryan
... View more
02-14-2017
05:27 PM
2 Kudos
Hey @Frank Maritato Unfortunately there is currently a bug preventing individual attribute names and values from being over 65535 bytes long when encoded as UTF-8. [1] There is currently a pull request under review to take care of the issue. Even when the issue is fixed though, it is generally not advisable to have a lot of data in the attributes because they are kept in-memory. Large values should usually be kept in the flowfile content if possible. Thanks, Bryan [1] NIFI-3389
... View more
02-03-2017
04:05 PM
hey @spdvnz, any chance you could attach the whole stack trace? that is probably the class you're trying to initialize but it may have other dependencies
... View more