Member since
02-01-2022
269
Posts
95
Kudos Received
59
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1909 | 06-12-2024 06:43 AM | |
2666 | 04-12-2024 06:05 AM | |
1977 | 12-07-2023 04:50 AM | |
1177 | 12-05-2023 06:22 AM | |
2077 | 11-28-2023 10:54 AM |
10-28-2022
05:31 AM
@Griggsy I would have to have working sample to test and provide better solution, that said i think you need to use function inside of the value, not the property. There you could also use ifElse making the NiFi Expression language operate for both scenarios. Chaining expressions together can be a challenge but should get you where you need to go.
... View more
10-28-2022
05:24 AM
@Ekodar You will need to use a driver to connect php to impala. Quick search and this looks promising: https://docs.cloudera.com/documentation/other/connectors/impala-jdbc/latest/Cloudera-JDBC-Driver-for-Impala-Install-Guide.pdf Here is another example with more details showing actual php code: https://www.cdata.com/kb/tech/impala-odbc-php.rst
... View more
10-28-2022
05:20 AM
If you are able to get the token and communicate with the api from postman, thats a great start. The PUT request must have some other issue. Are you passing the token correctly? Have you made sure that you are able to get the token, and make the put request from nifi node with command line? You always want to make sure you have working samples for any api system before you try to convert them to postman.
... View more
10-28-2022
05:16 AM
Are you sure the code is the same? Sounds like the clustered version is kicking off job and its never finishing (endless loop?) or the task is creating some performance or connectivity issue.. Depending on your processor, it may need to be flagged as Primary Only.
... View more
10-26-2022
05:41 AM
I believe so. Were you able to get a token using that user?
... View more
10-25-2022
01:42 PM
share the relationship error? I believe you need to complete the flowFIle transfer and committ first, then do the other stateFlowFile transfer and commit
... View more
10-25-2022
01:28 PM
You will need to complete the session.commit() call with right details to fit your scenario.
... View more
10-25-2022
12:53 PM
@ryu CDP Public Cloud Azure or CDP Private Cloud on Azure VMs? To link a NiFi outside of the cluster, you will need to provide that nifi with the files from the CDP Cluster. For example core-site.xml, hdfs-site.xml. Outside of that configuration, you will need to do some networking to allow access between systems, and then last but not least deal with access/auth and kerberos. If you are already working on some of these areas, be sure to include screen shots of processors, controller services, configs, etc.
... View more
10-25-2022
09:30 AM
@D5ha I have had a recent similar need and I learned that you use session.commit() after a session.transfer to send a flowfile in an inner loop. In a custom script, without the commit specifically, nifi will assume and do the commit sending all the data in a single end execution flowfile. session.transfer(flowFile, REL_SUCCESS) session.commit()
... View more
10-24-2022
08:50 AM
@MaarufB Using nifi-cli outside of curl on a nifi node is definitely a challenge. There are a lot of things you need to check. Most of them are addressed in a similar post here: https://community.cloudera.com/t5/Support-Questions/Calling-nifi-Api-using-Postman/td-p/343993 Hopefully you can find the solution within that post.
... View more