Member since
07-06-2018
5
Posts
0
Kudos Received
0
Solutions
07-11-2018
02:33 AM
I have a flowile that has data in JSON format. { NAME: "xxx", CITY: "yyy", AGE:"00", ZIPCODE: "12345", ADDRESS: " "} and I want to change the order so it can be displayed like this { NAME: "xxx", AGE:"00", ADDRESS: " ", CITY: "yyy", ZIPCODE: "12345", } Is this a processor that can do that
... View more
Labels:
- Labels:
-
Apache NiFi
07-07-2018
02:36 AM
@ShuThank you very much
... View more
07-07-2018
12:10 AM
The format of the flowfile is Json { "Name": "XXX", "Address": " ", "city": " ", "Country": "USA" } but I want it to show like this instead { "Name": "XXX", "Address": "N/A ", "city": " N/A", "Country": "USA" }
... View more
07-06-2018
11:54 PM
in the flowfile I have two attributes address and city, and both of them are returned empty. thank you for your help
... View more
Labels:
- Labels:
-
Apache NiFi