使用Apache NiFi进行数据操作的JSON转换

时间:2017-11-24 14:39:11

标签: json apache-nifi jolt hortonworks-dataflow

我想对下面的示例JSON进行一些基本转换,我想将timeStamp标记的值更改为日期格式,并希望添加值为created_ts的新标记current_timestamp使用NiFi我预期的JSON输出。

示例JSON

{"name": "SAMPLE_NAME","timeStamp": "1477307252000","value": "-0.06279052","quality": "1090"}

预期的JSON:

{"name": "SAMPLE_NAME","timeStamp": "2016-11-08 14:46:13.674","value": "-0.06279052","quality": "1090","created_ts":"2016-11-08 14:46:13.674"}

请帮助您了解Apache NiFi / HDF中的详细步骤。

1 个答案:

答案 0 :(得分:1)

未实施数据转换。

查看官方文件:

https://github.com/bazaarvoice/jolt#stock-transforms

股票转型

股票转型是:

shift       : copy data from the input tree and put it the output tree
default     : apply default values to the tree
remove      : remove data from the tree
sort        : sort the Map key values alphabetically ( for debugging and human readability )
cardinality : "fix" the cardinality of input data.  Eg, the "urls" element is usually a List, 
                    but if there is only one, then it is a String

目前,所有股票转型只会影响数据的“结构”。

要进行数据操作,您需要编写Java代码。

如果您编写Java“数据操作”代码来实现Transform接口,那么您可以在转换链中插入代码。

因此,为了完成您的任务,我看到两个主要变体:

V1:

使用以下处理器的序列:

EvaluateJsonPath -> UpdateAttributes -> AttributesToJSON

EvaluateJsonPath中的

为每个字段属性定义$.name$.timeStamp,...

等表达式 UpdateAttributes中的

转换timeStamp的格式并定义新属性:

attribute  |   value/expression
-----------------------------------------------------------
timeStamp  |   timeStamp:format('yyyy-MM-dd HH:mm:ss.SSS')
created_ts |   now():format('yyyy-MM-dd HH:mm:ss.SSS')

AttributesToJSON中定义Attributes List以将json对象存储到文件内容

V2:使用ExecuteScript处理器,代码如下:

import groovy.json.JsonSlurper
import groovy.json.JsonBuilder

def ff = session.get()
if(!ff)return
ff = session.write(ff, {rawIn, rawOut->
    // transform streams into reader and writer
    rawIn.withReader("UTF-8"){reader->
        rawOut.withWriter("UTF-8"){writer->
            //parse reader into Map
            def json = new JsonSlurper().parse(reader)
            //change/set values
            json.timeStamp = new Date(json.timeStamp as Long).format('yyyy-MM-dd HH:mm:ss.SSS')
            json.created_ts = new Date().format('yyyy-MM-dd HH:mm:ss.SSS')
            //write changed object to writer
            new JsonBuilder(json).writeTo(writer)
        }
    }
} as StreamCallback)
session.transfer(ff, REL_SUCCESS)