Re: How to extract mutiple json properties/fields into processor properties?

2016-05-11 Thread Matt Burgess
; Sent: Wednesday, May 11, 2016 12:01 PM > To: users@nifi.apache.org > Subject: Re: How to extract mutiple json properties/fields into processor > properties? > > Hi Keith, > > If you have a single JSON document and want to extract data from it into > attributes, then t

Re: How to extract mutiple json properties/fields into processor properties?

2016-05-11 Thread Keith Lim
do this? Thanks, Keith From: Bryan Bende Sent: Wednesday, May 11, 2016 12:01 PM To: users@nifi.apache.org Subject: Re: How to extract mutiple json properties/fields into processor properties? Hi Keith, If you have a single JSON document and want to extract

Re: How to extract mutiple json properties/fields into processor properties?

2016-05-11 Thread Bryan Bende
Hi Keith, If you have a single JSON document and want to extract data from it into attributes, then the processor you would be interested in is EvaluateJSONPath. You add user defined properties to the processor, where the name will be the id of the resulting attribute, and the value will be the j

How to extract mutiple json properties/fields into processor properties?

2016-05-11 Thread Keith Lim
I want to extract from a single json blob (single record) of several properties into user defined properties. Can I use a single SplitJson processor to extract all of them? How do you set that up? Or do I have to use one instance for each property extraction and flow through from one to anothe