<?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: How to capture both key and value of json data with dynamic key on Nifi? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229844#M191697</link>
    <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385"&gt;@Kiem Nguyen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What will be the rest of the flow after routing? can you give more details?&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2017 13:08:06 GMT</pubDate>
    <dc:creator>ahadjidj</dc:creator>
    <dc:date>2017-10-18T13:08:06Z</dc:date>
    <item>
      <title>How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229841#M191694</link>
      <description>&lt;P&gt;
	I have json data listen from JettyWebsocketServer like:&lt;/P&gt;&lt;PRE&gt;{
	"project_1": {
		"host": "V001",
		"data": [{
			"sensor_code": "temp",
			"value": {
				"max": 26.2,
				"avg": 26.1,
				"min": 26.1
			}
		},
		{
			"sensor_code": "humid",
			"value": {
				"max": 48.8,
				"avg": 48.7,
				"min": 48.6
			}
		}]
	}
}
&lt;/PRE&gt;&lt;P&gt;Because my data from multiple project, so I have dynamic key as: project_1, project_2. And I have to route those data into corresponding destination.&lt;/P&gt;&lt;P&gt;I found EvaluateJsonPath to parse Json data but it need static key.&lt;/P&gt;&lt;P&gt;There is any way to capture both key and value of it to route data by key?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 17:10:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229841#M191694</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-17T17:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229842#M191695</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385" target="_blank"&gt;@Kiem Nguyen&lt;/A&gt;&lt;P&gt;you can use RouteonContent processor and change &lt;/P&gt;&lt;P&gt;Match Requirement property to Content must contain Match&lt;/P&gt;&lt;P&gt;and&lt;STRONG&gt; add&lt;/STRONG&gt; the below &lt;STRONG&gt;properties &lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;1.project_1 as .*project_1.*
2.project_2 as .*project_2.*&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="39835-routeoncontent.png" style="width: 674px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15077i3CCAD0C78B07D5C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="39835-routeoncontent.png" alt="39835-routeoncontent.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This processor will checks the &lt;STRONG&gt;content of flowfile&lt;/STRONG&gt; if it is having &lt;STRONG&gt;project_1&lt;/STRONG&gt; in it it transfers the ff to &lt;STRONG&gt;project_1 relationship&lt;/STRONG&gt;, if the content having&lt;STRONG&gt; project_2&lt;/STRONG&gt; then it transfers to&lt;STRONG&gt; project_2 relationship&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Flow Screenshot:-&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="39836-flow.png" style="width: 668px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15078iE1D6D8AA47D203A2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="39836-flow.png" alt="39836-flow.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As shown in the above screenshot you can use the relationships project_1,project_2 and store or process those content as per your requirements.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 00:54:04 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229842#M191695</guid>
      <dc:creator>Shu_ashu</dc:creator>
      <dc:date>2019-08-18T00:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229843#M191696</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/18929/yaswanthmuppireddy.html" nodeid="18929"&gt;@Shu&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please let me clarify my problem. Because I don't know key before. So I need to create a FlowFile which can run with dynamic key without stopping Job when having a data with new key.&lt;/P&gt;&lt;P&gt;If we know certainly list of key, I think we can use EvaluateJsonPath to pull key into Attribute and use RouteOnAttribute as alternative way.&lt;/P&gt;&lt;P&gt;Again, my problem is I don't know when new key incoming to stop Job and add more key into RouteOnContent as your way.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 10:48:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229843#M191696</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-18T10:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229844#M191697</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385"&gt;@Kiem Nguyen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;What will be the rest of the flow after routing? can you give more details?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 13:08:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229844#M191697</guid>
      <dc:creator>ahadjidj</dc:creator>
      <dc:date>2017-10-18T13:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229845#M191698</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/2056/ahadjidj.html" nodeid="2056"&gt;@Abdelkrim Hadjidj&lt;/A&gt;&lt;/P&gt;&lt;P&gt;After routing, the rest of flow is json string like:&lt;/P&gt;&lt;PRE&gt;        {
		"host": "V001",
		"data": [{
			"sensor_code": "temp",
			"value": {
				"max": 26.2,
				"avg": 26.1,
				"min": 26.1
			}
		},
		{
			"sensor_code": "humid",
			"value": {
				"max": 48.8,
				"avg": 48.7,
				"min": 48.6
			}
		}]
	}&amp;lt;br&amp;gt;&lt;/PRE&gt;&lt;P&gt;It is value of key "project_1", "project_2",....&lt;/P&gt;&lt;P&gt;For my case, I will use key as database name on MongoDB. Example:&lt;/P&gt;&lt;P&gt;Value of data from project_1 will be insert into database project_1.&lt;/P&gt;&lt;P&gt;Value of data from project_2 will be insert into database project_2.&lt;/P&gt;&lt;P&gt;Because PutMongo processor of Nifi version 1.4.0 currently supports expression language. &lt;/P&gt;&lt;P&gt;So if I can capture key of data I can insert into corresponding database using ${key}&lt;/P&gt;&lt;P&gt;Please help me if you have any suggestion.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kiem&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 16:50:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229845#M191698</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-18T16:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229846#M191699</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385"&gt;@Kiem Nguyen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In this case you can use ExtractText to scan your flow content and extract the name of the project. With the right regular expression you can extract your key and store in an attribute projectname. &lt;/P&gt;&lt;P&gt;Once you have this, use it in the PutMongodb to update the required collection using ${projectname} for the Mongo Collection Name.&lt;/P&gt;&lt;P&gt;Can you try this and let me know if this works ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 16:58:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229846#M191699</guid>
      <dc:creator>ahadjidj</dc:creator>
      <dc:date>2017-10-18T16:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229847#M191700</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385" target="_blank"&gt;@Kiem Nguyen&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I am not a Regex expert but you can test this and work on it to have a better implementation.&lt;/P&gt;&lt;P&gt;ExtractText with following Regex (\w+)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="40888-screen-shot-2017-10-18-at-121754-pm.png" style="width: 1014px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15075i1E9353FD803BD936/image-size/medium?v=v2&amp;amp;px=400" role="button" title="40888-screen-shot-2017-10-18-at-121754-pm.png" alt="40888-screen-shot-2017-10-18-at-121754-pm.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You can see that there's an attribute projectname which contains project_1&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="40889-screen-shot-2017-10-18-at-121814-pm.png" style="width: 962px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15076i5319A4A2878BB8AD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="40889-screen-shot-2017-10-18-at-121814-pm.png" alt="40889-screen-shot-2017-10-18-at-121814-pm.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 00:53:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229847#M191700</guid>
      <dc:creator>ahadjidj</dc:creator>
      <dc:date>2019-08-18T00:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229848#M191701</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/2056/ahadjidj.html" nodeid="2056"&gt;@Abdelkrim Hadjidj&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Although using regex with dynamic key seem difficult for me. I will try this.&lt;/P&gt;&lt;P&gt;However as you see, the data to insert into MongoDB is value of key, it is not whole incoming data. (not include "project_1"...)&lt;/P&gt;&lt;P&gt;So we need to capture this data too. And it will be very difficult to obtain value of key if also using regex.&lt;/P&gt;&lt;P&gt;I need to capture both key and value separately. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 17:56:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229848#M191701</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-18T17:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229849#M191702</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385"&gt;@Kiem Nguyen&lt;/A&gt; Since you have the key with this regex, you can use it to get value with EvaluateJsonPath. &lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2017 17:58:47 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229849#M191702</guid>
      <dc:creator>ahadjidj</dc:creator>
      <dc:date>2017-10-18T17:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229850#M191703</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2056/ahadjidj.html" nodeid="2056"&gt;@Abdelkrim Hadjidj&lt;/A&gt;, &lt;/P&gt;&lt;P&gt;As your suggestion, I already got project_1, project_2... under the name: &lt;STRONG&gt;projectname&lt;/STRONG&gt;. And it is an attribute of incoming flowfile for EvaluateJsonPath.&lt;/P&gt;&lt;P&gt;But when I try to get value of above key, I add property content with value: &lt;EM&gt;$.${projectname}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Output flowfile of EvaluateJsonPath has content attribute is &lt;EM&gt;empty string&lt;/EM&gt;. I think EvaluateJsonPath uses JsonPath expression and It doesn't know variable "&lt;STRONG&gt;projectname&lt;/STRONG&gt;" attribute of incoming flowfile.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 10:21:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229850#M191703</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-19T10:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229851#M191704</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/2056/ahadjidj.html" nodeid="2056"&gt;@Abdelkrim Hadjidj&lt;/A&gt;&lt;P&gt;Today I have a solution for just my case:&lt;BR /&gt;Because the key of our data is unique string on json data. So here my step to capture both key and value of json data:&lt;BR /&gt;Step 1: Using ExtractText to obtain key (project_1, project_2,...)&lt;BR /&gt;Step 2: Using ReplaceText to replace key on json data by a static key (&lt;STRONG&gt;project_1, project_2,...&lt;/STRONG&gt; string will be replaced by &lt;STRONG&gt;content &lt;/STRONG&gt;string.&lt;/P&gt;&lt;P&gt;Step 3: Using EvaluateJsonPath to obtain data of &lt;STRONG&gt;content &lt;/STRONG&gt;above and transform it to flowfile-content for next processor.&lt;/P&gt;&lt;P&gt;Step 4: Using PutMongoDB to insert data into corresponding database using Expression Regex {projectname} with data above.&lt;/P&gt;&lt;P&gt;As alternatively way, we also can use ExecuteScript to convert key and value of json data to attribute then insert into MongoDB. But as I running, the throughput when use the first way is higher then using ExecuteScript. Here my code when using ExecuteScript:&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;#!/usr/bin/python3
import json
import java.io
from org.apache.commons.io import IOUtils
from java.nio.charset import StandardCharsets
from org.apache.nifi.processor.io import StreamCallback

class StreamCallback(StreamCallback):
    def __init__(self):
        pass
    def process(self, inputStream, outputStream):
        text = IOUtils.toString(inputStream, StandardCharsets.UTF_8)
        data = json.loads(text)
        for key in data:
            first = key
            break
        content = data[first]
        contentString = json.dumps(content)
        viewFlowFile = session.create()
        viewFlowFile = session.putAllAttributes(viewFlowFile,
                {'project': str(first), 'content': contentString})
        session.transfer(viewFlowFile, REL_SUCCESS)
flowFile = session.get()
if flowFile != None:
    flowFile = session.write(flowFile, StreamCallback())
    session.transfer(flowFile, REL_FAILURE)
    session.commit()
&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Oct 2017 11:34:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229851#M191704</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-20T11:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229852#M191705</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/18385/kiemnguyenxuan1.html" nodeid="18385" target="_blank"&gt;@Kiem Nguyen&lt;/A&gt;&lt;P&gt;you don't need to do all this. I think it's a bad idea to change your JSON data just to be able to parse it. You can have surprise when your application evolve.&lt;/P&gt;&lt;P&gt;So as a summary:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use my solution above to extract your key&lt;/LI&gt;&lt;LI&gt;Use the below solution to extract the content&lt;/LI&gt;&lt;LI&gt;With Key and Value in hand, use put MongoDB to store your data in the right collection&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To extract your JSON content, use evaluatejsonpath with the following configuration. Add a dynamic key my_content and use this JSON path $.*&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="41436-screen-shot-2017-10-20-at-72515-am.png" style="width: 1012px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15073i772F04206748BA87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="41436-screen-shot-2017-10-20-at-72515-am.png" alt="41436-screen-shot-2017-10-20-at-72515-am.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You get all the data that you are looking for:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="41437-screen-shot-2017-10-20-at-72530-am.png" style="width: 963px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15074i0597275C632C74D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="41437-screen-shot-2017-10-20-at-72530-am.png" alt="41437-screen-shot-2017-10-20-at-72530-am.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Can you try this an let me know if it works ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 00:53:37 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229852#M191705</guid>
      <dc:creator>ahadjidj</dc:creator>
      <dc:date>2019-08-18T00:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture both key and value of json data with dynamic key on Nifi?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229853#M191706</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/2056/ahadjidj.html" nodeid="2056"&gt;@Abdelkrim Hadjidj&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;It works well. It is interesting when just use $.* to capture content. &lt;/P&gt;&lt;P&gt;I understood more about JsonPath Expression.&lt;/P&gt;&lt;P&gt;Thank you again,  :d&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2017 13:39:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/How-to-capture-both-key-and-value-of-json-data-with-dynamic/m-p/229853#M191706</guid>
      <dc:creator>kiemnguyenxuan1</dc:creator>
      <dc:date>2017-10-24T13:39:18Z</dc:date>
    </item>
  </channel>
</rss>

