Member since
07-30-2019
3390
Posts
1618
Kudos Received
999
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 235 | 11-05-2025 11:01 AM | |
| 467 | 10-20-2025 06:29 AM | |
| 607 | 10-10-2025 08:03 AM | |
| 398 | 10-08-2025 10:52 AM | |
| 444 | 10-08-2025 10:36 AM |
05-09-2017
12:45 PM
@Sertac Kaya Glad you were able to get the performance improvement you were looking for by allowing your NiFi instance access to additional system threads. If this answer helped you get to your solution, please mark it as accepted. Thank you, Matt
... View more
05-09-2017
12:41 PM
The "sleep" command is a linux command. The command simply runs and waits the configured amount of time before exiting. Typically this command in linux is found under /usr/bin/sleep. I noticed above is missing the leading "/" . But if it is still not found, try searching your linux for it. It is installed as part of the linux "coreutils" rpm. Matt
... View more
05-09-2017
12:36 PM
1 Kudo
@Gaurav Jain Ideally load-balancing would be handle by the systems pushing data to your NiFI. When that is not possible and you are forced to ingest all data to a single Node in your NiFi cluster, load-balancing must be handled via a dataflow implementation. Using a Remote Process Group (RPG) is the most common solution used to redistribute already ingested data across all node sin a cluster, but you can also use multiple PostHTTP processors (1 for every node in your cluster) and a single ListenHTTP processor to build a FlowFile distribution dataflow. See the following for more info... https://community.hortonworks.com/articles/16120/how-do-i-distribute-data-across-a-nifi-cluster.html Thanks, Matt
... View more
05-09-2017
12:27 PM
@Jatin Kheradiya You have configured the nifi.properties file for your NiFi to use "FQDN_1". What does FQDN_1 resolve to on your NiFi instance? (public a.b.c.d or internal ip a1.b1.c1.d1) What processor are you configuring and how have you configured it? Can you provide screenshot? Thanks, Matt
... View more
05-09-2017
12:20 PM
1 Kudo
@Sunil Neurgaonkar As a side note: No need to configure any of the TLS properties in your login-identity-providers.xml file. Since your authentication strategy is set to "SIMPLE", those property are all ignored and only the Manger DN and password are being used to connect to your LDAP.
... View more
05-09-2017
12:17 PM
2 Kudos
@Sunil Neurgaonkar
It looks like you manually created your users.xml file rather then letting NiFi create it for you. Or you originally had teh initial admin identity configured as "cn=admin,dc=example, dc=org". Once the users.xml and authorizations.xml files are created the first time, changes to NiFi config files will not trigger any updates to these files. NiFi is trying to authorize your user "cn=admin,dc=example,dc=com"; however, this user does not exist in yoru users.xml file, so you are seeing the following error: 2017-05-0915:41:57,250 INFO [NiFiWebServer-17] o.a.n.w.a.c.AccessDeniedExceptionMapper cn=admin,dc=example,dc=com does not have permission to access the requested resource.ReturningForbidden response. A close look at your users.xml file provided above shows your user as: <useridentifier="99412284-acd9-3945-931b-362691f189ff"identity="cn=admin,dc=example,dc=org"/> Their is a mismatch between your ldap user DN and the DN of the user in the users.xml file. dc=com vs dc=org. You can simply manually correct this mismatch in the users.xml file and restart NiFi to fix your authorization issue. Thanks, Matt
... View more
05-08-2017
05:26 PM
@Ninad Patkhedkar Was I able to address you question? Unfortunately there is no work around other then using FetchSFTP to actually pull the file content so that fileSize is updated; however, that is a complete waste of resources if you don't need to ingest the data. If you found this response helpful, please accept the answer. Thank you, Matt
... View more
05-08-2017
03:52 PM
@HAR MAT You can also use NiFi's rest-api to start and stop processors using a script. https://nifi.apache.org/docs/nifi-docs/rest-api/
... View more
05-08-2017
03:15 PM
@uttam kumar Where either of the above answers able to resolve your template issue? If you found either helpful, please accept the answer. Thank you, Matt
... View more
05-08-2017
03:13 PM
@Gaurav Jain I don't know that i have any links that lead to exactly what you are looking for in just one tutorial. Here are series of links that may be helpful to you.... https://community.hortonworks.com/articles/16120/how-do-i-distribute-data-across-a-nifi-cluster.html https://community.hortonworks.com/articles/7882/hdfnifi-best-practices-for-setting-up-a-high-perfo.html https://community.hortonworks.com/questions/65360/can-someone-help-me-with-apache-nifis-basic-workin.html https://community.hortonworks.com/articles/97773/how-to-retrieve-files-from-a-sftp-server-using-nif.html Thanks, Matt
... View more