Member since
12-09-2017
10
Posts
2
Kudos Received
0
Solutions
12-11-2017
08:06 PM
1 Kudo
I am not able to move beyond step 6. After creating the remote process group, I am getting an error 'http://127.0.0.1:8080/nifi' does not have any input ports.
... View more
12-09-2017
05:13 PM
1 Kudo
@shu Thanks. It worked.
... View more
12-09-2017
03:16 PM
Sample Data:- 1,Michael,Jackson 2,Jim,Morrisson 3,John,Lennon 4,Freddie,Mercury 5,Elton,John refer image CSVtoJSONJSON created successfully Result After Convert Record (CSVtoJSON) [ {
"id" : 1,
"firstName" : "Michael",
"lastName" : "Jackson"
}, {
"id" : 2,
"firstName" : "Jim",
"lastName" : "Morrisson"
}, {
"id" : 3,
"firstName" : "John",
"lastName" : "Lennon"
}, {
"id" : 4,
"firstName" : "Freddie",
"lastName" : "Mercury"
}, {
"id" : 5,
"firstName" : "Elton",
"lastName" : "John"
} ] Applying SplitJSON to the convertrecord processor with jsonpath = $.* creates 10,000 splits in the queue refer image SplitJSON10000splits I need to split the array of JSON into individuall JSON records and apply some transformation to these records
... View more