Member since
01-21-2019
2
Posts
0
Kudos Received
0
Solutions
01-23-2019
02:30 PM
Thank you @Mariano Billinghurst One of the challanges that I have is that I don't know in advance what are the key names. So in the above example, I don't know in advance that I will get inside the "additional_information" the "age" and "hight" keys. This part is dynamic. Do you know how it can be supported?
... View more
01-23-2019
10:16 AM
Hi, I have a json object as input, however one of its elements is a string that contains keys and values. I would like to convert this string to json. For example, my input json is: {"name" : "John", "empID" : "1234", "additionl_information" : "age=29;height=1.80" } And the output should be: {"name" : "John", "empID" : "1234", "age" : "29", "height" : "1.80" } The key/value pairs are delimited with ";". And most important is that we don't know in advance what will be the keys inside the "addition_information" parameter. We have "age" and "height" in one event, but in another event we can get other information. Many thanks in advance.
... View more
Labels:
- Labels:
-
Apache NiFi