Member since
05-02-2022
4
Posts
0
Kudos Received
0
Solutions
03-05-2023
02:05 PM
Still, I am not able to replace { "type":"record", "name":"nifiRecord", "namespace":"org.apache.nifi", to { "type": "record", "name": "Bank", "namespace": "com.xyz.model.vo", "fields":
... View more
03-04-2023
06:55 PM
How can I use Apache NiFi to transform the current output of my Oracle database to the desired output format, as shown below? Desier out should be as mention below Avro format Current output: { "type":"record", "name":"nifiRecord", "namespace":"org.apache.nifi", "fields":[ {"name":"AGENT_CODE", "type":["null","string"]}, {"name":"CORR_ACC_NO", "type":["null","string"]}, {"name":"LOCAL_ACC_NO", "type":["null","string"]} ] } Desired output: { "type": "record", "name": "Bank", "namespace": "com.xyz.model.vo", "fields":[ {"name": "instance", "type": "string"}, {"name": "agent_code", "type": "string"}, {"name": "corr_acc_no", "type": "long"}, {"name": "local_acc_no", "type": "string"} ] } What steps do I need to take in NiFi to achieve this transformation and output the results to the desired format? especially for changing { "type": "record", "name": "Bank", "namespace": "com.xyz.model.vo"
... View more
Labels:
- Labels:
-
Apache NiFi
05-02-2022
08:55 AM
Hi community, I am a newbie to Nifi and unfortunately, We don't have a system admin with the knowledge of Nifi installation for production and I have to build a 3 node secured cluster without Zookeeper. I understood that with the NiFi 0.x baseline, the cluster has a cluster manager which serves a similar role and did not use a zookeeper at all. But I am not sure how to use NiFi 0.x baseline, If someone can help me with steps/guidance to configure using NiFi 0.x baseline to set up a three-node cluster that will be great. Best, Shanoj
... View more
Labels:
- Labels:
-
Apache MiNiFi
-
Apache NiFi
05-02-2022
08:41 AM
Could you please share the steps to configure Nifi 0.x baseline
... View more