【发布时间】:2018-05-22 06:36:14
【问题描述】:
我有一个类似的 JSON
{
"campaign_key": 316,
"client_key": 127,
"cpn_mid_counter": "24",
"cpn_name": "Bopal",
"cpn_status": "Active",
"clt_name": "Bopal Ventures",
"clt_status": "Active"
}
预期输出
第一个 JSON :
{
"campaign_key": 316,
"client_key": 127,
"cpn_mid_counter": "24",
"cpn_name": "Bopal",
"cpn_status": "Active"
}
第二个 JSON:
{
"clt_name": "Bopal Ventures",
"clt_status": "Active"
}
如何使用 NIFI 来实现这一点?谢谢。
【问题讨论】:
-
为什么需要 2 个 json?
-
我需要将数据加载到 hbase 的 2 个列族中。
-
所有数据的 Json 密钥都相同,对吗?
-
是的,它们是一样的。
标签: json apache-nifi kylo