Member since
03-27-2019
6
Posts
0
Kudos Received
0
Solutions
07-27-2023
11:11 AM
Hello, I am also trying same think i am trying to get data from another tool using invokeHttp process but where i need to pass access token and parameter i am not able to understand it if you have resolve it please help me. Thank you Digambar
... View more
04-11-2019
05:19 AM
No I want whenever the nifi flow is triggered there should be a uniqueid across all processors.
... View more
06-03-2019
05:09 PM
@Matt Burgess do you mind helping me out with a similar issue? I have a json file comming in as : [ {
"regId" : "us",
"cId" : "SomeProduct",
"weId" : 15,
"name" : "R",
"id" : 1539,
"cityId" : 17,
"cityName" : "Moskow"
}, {
"regId" : "us",
"cId" : "SomeProduct",
"weId" : 15,
"name" : "R",
"id" : 1540,
"cityId" : 18,
"cityName" : "Berlin"
}, {
"regId" : "us",
"cId" : "SomeProduct",
"weId" : 15,
"name" : "R",
"id" : 1541,
"cityId" : 19,
"cityName" : "Vienna"
} ] I need to add 3 new fields passed from the FlowFile attribute into each element? Can I do that with the update Record also? [ {
"new_att":"somevalue",
"new_att2":"somevalue2",
"new_att3":"somevalue3",
"regId" : "us",
"cId" : "SomeProduct",
"weId" : 15,
"name" : "R",
"id" : 1539,
"cityId" : 17,
"cityName" : "Moskow"
}, {
"new_att":"somevalue",
"new_att2":"somevalue2",
"new_att3":"somevalue3",
"regId" : "us",
"cId" : "SomeProduct",
"weId" : 15,
"name" : "R",
"id" : 1540,
"cityId" : 18,
"cityName" : "Berlin"
}, {
"new_att":"somevalue",
"new_att2":"somevalue2",
"new_att3":"somevalue3",
"regId" : "us",
"cId" : "SomeProduct",
"weId" : 15,
"name" : "R",
"id" : 1541,
"cityId" : 19,
"cityName" : "Vienna"
} ] Thanks, Rosa
... View more