Member since
07-30-2019
3471
Posts
1642
Kudos Received
1020
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 135 | 06-03-2026 06:06 PM | |
| 451 | 05-06-2026 09:16 AM | |
| 814 | 05-04-2026 05:20 AM | |
| 485 | 05-01-2026 10:15 AM | |
| 617 | 03-23-2026 05:44 AM |
06-03-2026
06:06 PM
@AlokKumar You need to make sure each user is authenticating with a unique username in order to know which user made a change If you are using the same user, then all recorded changes will show that single user. Form a pure security standpoint it is a bad practice to have multiple users share authentication credentials. Apache NiFi offers numerous methods for User Authentication. While Lightweight Directory Access Protocol (LDAP) is probably the most commonly used, there are other options to include OpenID Connect, Kerberos, SAML, JSON Web Tokens, and X.509 Client Certificates. If you are currently using the default Single User authentication which the utilizes the Single User authorizer, you will also need to select a different Multi-Tenant Authorization as well to go with the new multi user authentication methods. The most commonly used is the StandardManagedAuthorizer. Please help our community grow. If you found any of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "Accept as Solution" on one or more of them that helped. Thank you, Matt
... View more
06-03-2026
05:29 AM
ListSFTP[id=7b88bae5-5932-3efb-d1ad-44d1835a4d36] Processing failed: org.apache.nifi.processors.standard.socket.ClientConnectException: SSH Connection failed [sftp.uber.com:2222] - Caused by: org.apache.sshd.common.SshException: DefaultConnectFuture[82d495ce@sftp.uber.com/<unresolved>:2222]: Failed (UnknownHostException) to execute: sftp.uber.com - Caused by: java.net.UnknownHostException: sftp.uber.com No issues with NiFi 1.26! Updated to the latest 2.9.0 still the same issue. Anyone?
... View more
05-13-2026
05:03 AM
@nisaar I agree with @vafs that sharing the completed ERROR and stack trace is always gong to be most helpful in your community questions. Those full stack traces will have classes like "net.schmizz.sshj.transport" that you could try putting in to DEBUG within the NiFi logback to see what additional logging that class (not a NiFi library, but used by NiFi) may provide. Matt
... View more
05-08-2026
11:46 AM
Thank you. Setting the load balancer timeout to 25seconds worked for me with NiFi 2.8
... View more
05-07-2026
08:48 PM
@AlokKumar Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
05-07-2026
08:47 PM
@fnimi Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.
... View more
05-04-2026
05:41 AM
@oka Perhaps others in the community may hav additional suggestions here, but since the "-" is not a valid character in JMS, you would need to use a AMQP processor to support these headers. As mentioned before there is a https://issues.apache.org/jira/browse/NIFI-14670 jira for adding AMQP 1.0 support to ConsumeAMQP processor, but it is still open and unassigned. Now that jira points to using the Qpid JMS Client in ConsumeJMS and as you experienced it works but still has limitations. Those limitations impact these specific properties with the "-" in the name. I would suggest adding your experience with trying to use Qpid AMQP in the above jira and what impacts it has on the two headers you require to maybe push the Apache community to adding AMQP 1.0 support to the AMQP specific processors. Additionally, there is this jira (https://issues.apache.org/jira/browse/QPID-4992), where an individual expressed some success preserving the content type header by using ActiveMQ JMS API instead of the Qpid AMQP JMS API. So you may want to give this jira a read and maybe try this for yourself. Please help our community grow. If you found any of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "Accept as Solution" on one or more of them that helped. Thank you, Matt
... View more
05-04-2026
05:20 AM
@nisaar I expect that retry set on the Success relationship out of ListSMB is impacting your scheduling. I suspect that retry is blocking "successful" attempts by until both retry have been made which aligns with the skip twice you are seeing in scheduling. As I mentioned before, you should not be setting "retry" on any success relationships. This is an anti-pattern that will delay processing of any successful execution for the duration of the retry (Each retry would occur at the processors scheduled execution times). Note: Scheduling of a NiFi component does not mean immediate execution. That execution depends on availability of threads to service the execution. NiFi has a "max timer driven thread count" configuration that establishes the thread pool from which all scheduled component threads come from. So things like number of running components, number of concurrent tasks set on a given component, CPU insensitive components, etc can impact when a "scheduled" component is given a thread from the thread pool to execute. I Thread pool does not impact scheduler unless the processor has been scheduled and never executes until within the 1.5 hours since it was initially scheduled (which I doubt in this case). The more logical cause because of the consistent behavior is the "retry" you have set on Success from ListSMB. Please help our community grow. If you found any of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "Accept as Solution" on one or more of them that helped. Thank you, Matt
... View more
04-28-2026
06:18 AM
1 Kudo
Issue is resolved after the vendor whitelisted the IP's Thanks
... View more