Member since
02-01-2022
285
Posts
103
Kudos Received
60
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1181 | 05-15-2025 05:45 AM | |
| 5117 | 06-12-2024 06:43 AM | |
| 8113 | 04-12-2024 06:05 AM | |
| 5995 | 12-07-2023 04:50 AM | |
| 3295 | 12-05-2023 06:22 AM |
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
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
10-24-2022
06:18 AM
@i_am_dba This is a very difficult one to explain. I think the issue is the string schema, or removing the avro schema you mentioned. My first suggestion would be to try to specific the schema which should help getting the data into the right formats. An alternate solution is to try and do that manually by replacetext/regex,etc but that is not the ideal solution. That said, another higher level suggesting is to update the upstream datasource to permanently solve the instability from '' (blank string), 'null' (string), or actual NULL (not a blank, '', or string at all).
... View more
10-24-2022
06:09 AM
@MaarufB Please make a new post with as much detail as you can around your question and use case. This is an old topic and will not get a good response in the comments. Feel free to @ tag me in the new post.
... View more
10-11-2022
03:47 AM
@samrathal Check the docs here: https://nifi.apache.org/docs/nifi-docs/rest-api/index.html Accordingly, make a get request to get the controller service, then using the payload, modify with updates and make the put request to update your controller service.
... View more
09-30-2022
09:31 AM
@leandrolinof FetchFile is going to look for the file on the nifi node or nifi nodes where nifi is installed. This is usually something done on the primary node of a multi node nifi cluster. If you want to connect to another linux server, not part of the nifi cluster you will have to take a different approach. One such approach could be using minifi, or possible ExecuteScript to run a linux command from nifi node to other linux server.
... View more
09-27-2022
10:44 AM
1 Kudo
@GireeshP No, cloudera does not support iceberg in on-prem. It is for CDP Public Cloud only. There are no details or timelines at this time for on-prem availability.
... View more
08-30-2022
05:25 AM
Excellent work @carrossoni . I really see value in the time travel feature!!
... View more