<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes) in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192815#M154879</link>
    <description>&lt;P&gt;I second &lt;A rel="user" href="https://community.cloudera.com/users/286/dwynne.html" nodeid="286"&gt;@Wynner&lt;/A&gt; 's comment about being cautious. If you determine that you still want all the JSON fields as attributes, you can do it all at once with &lt;A href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.script.ExecuteScript/index.html"&gt;ExecuteScript&lt;/A&gt;. Here is a Groovy script that expects a "flat" JSON file and turns all the fields in into attributes:&lt;/P&gt;&lt;PRE&gt;import org.apache.commons.io.IOUtils
import java.nio.charset.*
def flowFile = session.get();
if (flowFile == null) {
    return;
}
def slurper = new groovy.json.JsonSlurper()
def attrs = [:] as Map&amp;lt;String,String&amp;gt;
session.read(flowFile,
    { inputStream -&amp;gt;
        def text = IOUtils.toString(inputStream, StandardCharsets.UTF_8)
        def obj = slurper.parseText(text)
        obj.each {k,v -&amp;gt;
           attrs[k] = v.toString()
        }
    } as InputStreamCallback)
flowFile = session.putAllAttributes(flowFile, attrs)
session.transfer(flowFile, REL_SUCCESS)&lt;/PRE&gt;</description>
    <pubDate>Sun, 09 Apr 2017 01:43:45 GMT</pubDate>
    <dc:creator>mburgess</dc:creator>
    <dc:date>2017-04-09T01:43:45Z</dc:date>
    <item>
      <title>NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192812#M154876</link>
      <description>&lt;P&gt;Is there a way to convert everything in the json message to FlowFile attributes with corresponding values? &lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;{"ts":1491598800154,"id.orig_h":"172.17.25.52","id.orig_p":59648,"id.resp_h":"82.148.98.187","id.resp_p":80} will automatically create the "ts,id.orig_h ... etc." attributes.&lt;/P&gt;&lt;P&gt;I know how to 'manually' do it one-by-one using EvaluateJsonPath.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 17:55:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192812#M154876</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-08T17:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192813#M154877</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/17252/deeb.html" nodeid="17252"&gt;@Sherif Eldeeb&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I am not aware of any automatic way for NiFi to convert all of the Json content into one for one attributes.&lt;/P&gt;&lt;P&gt;I will mention you should be cautious when doing this depending on the the size of your Json files and the volume of data in your flow.  Having a large number of flow files with very large attributes will require a large size JVM for NiFi to run smoothly.  NiFi keeps all of the attributes of the flow files in the graph in the JVM memory configured in the bootstrap.conf file. &lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 23:39:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192813#M154877</guid>
      <dc:creator>Wynner</dc:creator>
      <dc:date>2017-04-08T23:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192814#M154878</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/286/dwynne.html" nodeid="286"&gt;@Wynner&lt;/A&gt; for your reply, and for the valuable tips.&lt;/P&gt;&lt;P&gt;It's for log files (BroIDS, to be specific &lt;A href="https://www.bro.org/)" target="_blank"&gt;https://www.bro.org/)&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Each log entry is one flow file, and the the whole content is around 500 bytes ... so size per flow file shouldn't be an issue (the rate, however, might be because it hits around 10,000 per second).&lt;/P&gt;&lt;P&gt;... I'll keep looking for a solution &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Apr 2017 01:05:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192814#M154878</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-09T01:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192815#M154879</link>
      <description>&lt;P&gt;I second &lt;A rel="user" href="https://community.cloudera.com/users/286/dwynne.html" nodeid="286"&gt;@Wynner&lt;/A&gt; 's comment about being cautious. If you determine that you still want all the JSON fields as attributes, you can do it all at once with &lt;A href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.script.ExecuteScript/index.html"&gt;ExecuteScript&lt;/A&gt;. Here is a Groovy script that expects a "flat" JSON file and turns all the fields in into attributes:&lt;/P&gt;&lt;PRE&gt;import org.apache.commons.io.IOUtils
import java.nio.charset.*
def flowFile = session.get();
if (flowFile == null) {
    return;
}
def slurper = new groovy.json.JsonSlurper()
def attrs = [:] as Map&amp;lt;String,String&amp;gt;
session.read(flowFile,
    { inputStream -&amp;gt;
        def text = IOUtils.toString(inputStream, StandardCharsets.UTF_8)
        def obj = slurper.parseText(text)
        obj.each {k,v -&amp;gt;
           attrs[k] = v.toString()
        }
    } as InputStreamCallback)
flowFile = session.putAllAttributes(flowFile, attrs)
session.transfer(flowFile, REL_SUCCESS)&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Apr 2017 01:43:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192815#M154879</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2017-04-09T01:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192816#M154880</link>
      <description>&lt;P&gt;Whoa! ... thanks, that's a lot to go through (I come from the elastic/logstash universe), I just installed NiFi.&lt;/P&gt;&lt;P&gt;I'll try and feedback (especially on performance).&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Apr 2017 01:48:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192816#M154880</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-09T01:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192817#M154881</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/17252/deeb.html" nodeid="17252"&gt;@Sherif Eldeeb&lt;/A&gt; &lt;/P&gt;&lt;P&gt;What are you trying to do with your flow?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Apr 2017 05:30:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192817#M154881</guid>
      <dc:creator>Wynner</dc:creator>
      <dc:date>2017-04-09T05:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192818#M154882</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/286/dwynne.html" nodeid="286"&gt;@Wynner&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Read, Enrich and Ship logs from remote sensors.&lt;/P&gt;&lt;P&gt;We have lots of logs in JSON format (http, dns, conn ... etc.), so, I want to add to the json document few fields (e.g. sensor location), enrich (e.g. geoip) then send them over to elasticsearch.&lt;/P&gt;&lt;P&gt;I couldn't find a straight forward way to deal with the log entry content (like removing/adding fields) without either: a) manipulate the json log entry as 'text', which is far from being optimal ... or b) convert json content as attributes, benefit from attributes flexibility, then back to json again (which has it's own issues still: like having everything converted to strings :/).&lt;/P&gt;&lt;P&gt;Your follow up is appreciated &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 10:31:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192818#M154882</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-10T10:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192819#M154883</link>
      <description>&lt;P&gt;It works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;thanks a lot.&lt;/P&gt;&lt;P&gt;(however, I'll still have to figure out a way to retain original data types when doing an AttributesToJson, instead of having everything as a string)&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 10:34:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192819#M154883</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-10T10:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192820#M154884</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/94338/nifi-convert-everything-in-json-to-attributes-not.html#"&gt;@Sherif Eldeeb&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Have
 you looked at using the JoltTransformJson processor?  You could use it 
with a Jolt specification and add the additional properties at the same 
time.  Also, the Jolt specification can keep the format of the 
variables.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Apr 2017 23:20:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192820#M154884</guid>
      <dc:creator>Wynner</dc:creator>
      <dc:date>2017-04-10T23:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192821#M154885</link>
      <description>&lt;P&gt;A bit of a hack is to use &lt;A href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.ConvertJSONToSQL/index.html"&gt;ConvertJSONToSQL&lt;/A&gt;, this will put attributes such as sql.args.N.value (the value of your field) and sql.args.N.type (the &lt;A href="http://docs.oracle.com/javase/8/docs/api/constant-values.html#java.sql.Types.BIT"&gt;JDBC SQL type&lt;/A&gt; of the value). Alternatively in the Groovy script you can check the type of the variable &lt;EM&gt;v&lt;/EM&gt; and set another attribute corresponding to the key &lt;EM&gt;k&lt;/EM&gt; such as &lt;EM&gt;k&lt;/EM&gt;.type that contains a data type identifier.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 01:59:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192821#M154885</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2017-04-11T01:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192822#M154886</link>
      <description>&lt;P&gt;I should've asked before, what is your use case where you'd need all the JSON fields as attributes then convert back to JSON at the end using AttributesToJSON? If you have a JSON transformation to perform, please consider &lt;A href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.JoltTransformJSON/index.html"&gt;JoltTransformJSON&lt;/A&gt;, it is very powerful and can do the transformation(s) inline rather than moving the JSON fields to attributes and back.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 02:01:08 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192822#M154886</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2017-04-11T02:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192823#M154887</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/286/dwynne.html" nodeid="286"&gt;@Wynner&lt;/A&gt;&lt;/P&gt;&lt;P&gt;JoltTransformJson: I couldn't find a way to include flowfile attributes in the jolt spec (so it may be 'default' included in the output JSON).&lt;/P&gt;&lt;P&gt;If I'm missing something, pointing me to the right direction would be highly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 09:57:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192823#M154887</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-11T09:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192824#M154888</link>
      <description>&lt;P&gt;@Mutt Burgess&lt;/P&gt;&lt;P&gt;E.g: I want to add the geoip data (from ip field) to the json, before shipping to elasticsearch.&lt;/P&gt;&lt;P&gt;I don't know how to use jolt to include flowfile attribute data, yet (if possible)&lt;/P&gt;&lt;P&gt;P.S: thanks for helping.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2017 13:13:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192824#M154888</guid>
      <dc:creator>deeb</dc:creator>
      <dc:date>2017-04-11T13:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192825#M154889</link>
      <description>&lt;P&gt;This Script is gold !!! Thank you !!! &lt;/P&gt;</description>
      <pubDate>Fri, 02 Mar 2018 15:53:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192825#M154889</guid>
      <dc:creator>jomach</dc:creator>
      <dc:date>2018-03-02T15:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192826#M154890</link>
      <description>&lt;P&gt;The JoltTransformJSON processor accepts NiFi Expression Language in the spec, so you can do something like:&lt;/P&gt;&lt;PRE&gt;[
  {
    "operation": "default",
    "spec": {
      "newfield": "${my.attr}"
    }
  }
]&lt;/PRE&gt;&lt;P&gt;And it will add "newfield" to the top level object, with a string value of whatever is in my.attr. Note that it (currently) has to be enclosed in quotes (and thus must be a string field), otherwise the spec validator will try to parse the EL itself and the processor will be marked invalid. This is a bug that will hopefully be fixed in an upcoming release.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Mar 2018 05:44:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192826#M154890</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2018-03-03T05:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192827#M154891</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/17252/deeb.html" nodeid="17252"&gt;@Sherif Eldeeb&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You mention that You know how to convert Json to attribute one-by-one using EvaluateJsonPath.&lt;BR /&gt;&lt;BR /&gt;Please advice me How to do that?&lt;BR /&gt;I need to convert 1 Json value to be attribute for process RouteOnAttribute&lt;BR /&gt;&lt;BR /&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 15:28:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192827#M154891</guid>
      <dc:creator>pongthep</dc:creator>
      <dc:date>2018-05-28T15:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192828#M154892</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.hortonworks.com/users/17252/deeb.html"&gt;@Sherif Eldeeb&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You mention that You know how to convert Json to attribute one-by-one using EvaluateJsonPath.&lt;BR /&gt;&lt;BR /&gt;Please advice me How to do that?&lt;BR /&gt;I need to convert 1 Json value to be attribute for process RouteOnAttribute&lt;BR /&gt;&lt;BR /&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 10:13:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192828#M154892</guid>
      <dc:creator>pongthep</dc:creator>
      <dc:date>2018-05-30T10:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi - convert everything in json to attributes, not one by one (i.e JsonToAttributes)</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192829#M154893</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/17252/deeb.html" nodeid="17252"&gt;@Sherif Eldeeb&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I got it. By example &lt;BR /&gt;&lt;A href="https://community.hortonworks.com/questions/118237/how-to-use-apache-nifi-evaluatejsonpath-for-json-t.html" target="_blank"&gt;https://community.hortonworks.com/questions/118237/how-to-use-apache-nifi-evaluatejsonpath-for-json-t.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thank &lt;A rel="user" href="https://community.cloudera.com/users/641/mburgess.html" nodeid="641"&gt;@Matt Burgess&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 May 2018 15:06:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-convert-everything-in-json-to-attributes-not-one-by-one/m-p/192829#M154893</guid>
      <dc:creator>pongthep</dc:creator>
      <dc:date>2018-05-30T15:06:07Z</dc:date>
    </item>
  </channel>
</rss>

