[ANNOUNCE] Apache Flink 1.16.3 released

2023-11-29 文章 Rui Fan
The Apache Flink community is very happy to announce the release of Apache Flink 1.16.3, which is the third bugfix release for the Apache Flink 1.16 series. Apache Flink® is an open-source stream processing framework for distributed, high-performing, always-available, and accurate data

Re:回复: flink sql如何实现json字符数据解析?

2023-11-29 文章 casel.chen
社区Flink自带的那些json函数都没有解析一串json string返回一行或多行ROW的 在 2023-11-23 15:24:33,"junjie.m...@goupwith.com" 写道: >可以看下JSON函数 >https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/table/functions/systemfunctions/#json-functions > > > >Junjie.M > >发件人: casel.chen >发送时间:

Re:Re: flink sql如何实现json字符数据解析?

2023-11-29 文章 casel.chen
filed字段数量是固定的,但body_data数组包含的元素个数不固定,所以 Insert into SinkT (result) select Array[ROW(uuid, null,body_data[1]. field1 as body_data.fild1, body_data[1]. Field2 as body_data.fild2), ROW(uuid, null,body_data[2]. field, body_data[2]. field2)] as result 这种写死body_data[X]的sql语句应该不work 在