Member since
04-06-2022
15
Posts
2
Kudos Received
2
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1122 | 05-14-2025 01:39 AM | |
| 4151 | 01-12-2023 06:48 AM |
08-19-2025
10:33 PM
Is the source table a JdbcStorageHandler table? Please provide the DDL of the source table, the query used, and any sample data if possible. This information will help us understand the problem better. Also, validate the set -v command, especially configurations like hive.tez.container.size.
... View more
05-20-2025
11:28 PM
Thank you @MattWho @linssab for the help. The Groovy script with the ExecuteScript processor is working fine to convert JSON file content to flow file attributes.
... View more
04-12-2023
05:45 AM
Ok, now that makes sense. I downloaded from the official repository Index of /dist/nifi (apache.org) and I'm using version 1.13.2 (due to some project requirements)
... View more
01-13-2023
03:26 AM
Ok, I understand now what you are doing. The problem is that you are trying to merge information from one FlowFile to another, and this can't be done in the way you designed. Two FlowFiles mean two separate processes, they don't communicate with one another. You have to use one single FlowFile for the entire process if you need information from both the JSON and XML. I suggest putting the EvaluateXPath after the UpdateAttributes processor, setting the Destination property to "flowfile-attribute" in a way you will have all the attributes in the same flowfile (titlefromXML, guid, Contact Name, caseno, and docno) to use in the JOLT specification. -- Was your question answered? Please take some time to click on "Accept as Solution" below this post. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
01-12-2023
03:44 AM
Idk if it is much of a help, but you can try checking the Jolt Transform quick reference There's this link to test JOLT specifications. You can try starting with something like [{
"operation": "shift",
"spec": {
"*": "&"
}
}, {
"operation": "default",
"spec": {
"*": {
"id": "&(1,0)"
}
}
}]
... View more
01-12-2023
02:15 AM
You can try modifying the Record Reader avro schema to something like this: {"name": "xxx", "type": "string"], "default": ""}
... View more
07-17-2022
11:42 PM
Finally, it is working as intended. Both invokehttp processors are working. This article worked for me: Chaining Multiple Http API's in Apache NiFi | Medium
... View more
07-07-2022
03:42 PM
1 Kudo
@linssab , You are probably running into this issue described in NIFI-9241, which has been fixed on NiFi 1.15. Cheers, André
... View more