Member since
07-29-2020
574
Posts
323
Kudos Received
176
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1976 | 12-20-2024 05:49 AM | |
2202 | 12-19-2024 08:33 PM | |
2022 | 12-19-2024 06:48 AM | |
1324 | 12-17-2024 12:56 PM | |
1899 | 12-16-2024 04:38 AM |
04-12-2023
08:24 AM
1 Kudo
hi, You can take a look into ForkEnrichment and JoinEnrichment processors : https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-standard-nar/1.20.0/org.apache.nifi.processors.standard.JoinEnrichment/additionalDetails.html If that helps, please accept solution. Thanks
... View more
03-27-2023
03:13 AM
1 Kudo
Thanks @SAMSAL , everything it works fine....
... View more
03-15-2023
08:43 AM
Thank you very much SAMSAL, I apreciate it, specially the references you provide.
... View more
03-13-2023
10:43 AM
Hi @lben , It seems what you need is the Wait\Notify processors . For more information on how to use those processors : https://pierrevillard.com/2018/06/27/nifi-workflow-monitoring-wait-notify-pattern-with-split-and-merge/ https://www.youtube.com/watch?v=ALvzZ6D4GtA let me know how that works for you. If that helps please accept solution. Thanks
... View more
03-11-2023
11:00 AM
Hi Samsal - that's perfect. Many thanks , Rob 👍
... View more
03-09-2023
08:49 AM
As @SAMSAL pointed out, queryrecord is the best and easiest method to use. Here, i have created a sample flow for your use as pix attached. I hope it helps.
... View more
03-05-2023
04:40 PM
I apologize, I forgot that you are talking about an Avro format and not json. In this I think you need to pass your own avro schema. You can first convert Avro to Json using ConvertAvroToJSON processor , then use ConvertRecrod which can be configured as follows: In the AvroRecordWrite , you can set your schema with the proper record\namespace values. For Example in my case I used the "User Schema Text" strategy and either provide the schema directly in the Schema Text Property or reference it using flowfile attribute ${avro.schema} using Expression Language. The Schema Text : {
"type": "record",
"name": "bank",
"namespace": "org.xyz.com",
"fields": [
{
"name": "AGENT_CODE",
"type": [
"null",
"string"
]
},
{
"name": "CORR_ACC_NO",
"type": [
"null",
"string"
]
},
{
"name": "LOCAL_ACC_NO",
"type": [
"null",
"string"
]
}
]
} Hope that helps
... View more
03-04-2023
09:24 AM
Hi, Please try the following jolt spec: [
{
"operation": "shift",
"spec": {
"rows": {
"*": {
"f": {
"0": {
"v": "[#4].export_time"
},
"1": {
"v": "[#4].account_id"
},
"2": {
"v": "[#4].cost"
}
}
}
}
}
}
] If that helps please accept solution. Thanks
... View more
03-02-2023
09:42 AM
@rahul_loke 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
02-19-2023
10:34 PM
Hi SAM, Actually it worked for me now. No error now. Thank you for your help.
... View more