如何使用 ksql 将 String 类型转换为结构数组

发布于 2025-01-09 11:21:33 字数 671 浏览 1 评论 0 原文

我在 Kafka 中有一个主题,其架构如下:

    Name              Type
    ID               STRING
   ORDER_STATUS       INTEGER
   ORDER_ITEM_JSON    STRING

ORDER_ITEM_JSON 本身是一个项目字符串:

 "ORDER_ITEM_JSON":"[{\"item_id\":\"943\",\"category_id_fk\":\"42\",\"item_count\":\"1\",\"item_price\":55900,\"item_price_without_discount\":55900},{\"item_id\":\"1235\",\"category_id_fk\":\"42\",\"item_count\":\"1\",\"item_price\":25500,\"item_price_without_discount\":25500},{\"item_id\":\"1250\",\"category_id_fk\":\"42\",\"item_count\":\"1\",\"item_price\":37500,\"item_price_without_discount\":37500}]"

如何将此字符串字段转换为 ksql 中的结构数组?

I have a topic in Kafka which have a schema like:

    Name              Type
    ID               STRING
   ORDER_STATUS       INTEGER
   ORDER_ITEM_JSON    STRING

ORDER_ITEM_JSON is a string of items itself:

 "ORDER_ITEM_JSON":"[{\"item_id\":\"943\",\"category_id_fk\":\"42\",\"item_count\":\"1\",\"item_price\":55900,\"item_price_without_discount\":55900},{\"item_id\":\"1235\",\"category_id_fk\":\"42\",\"item_count\":\"1\",\"item_price\":25500,\"item_price_without_discount\":25500},{\"item_id\":\"1250\",\"category_id_fk\":\"42\",\"item_count\":\"1\",\"item_price\":37500,\"item_price_without_discount\":37500}]"

How can I cast this string field to an array of struct in ksql?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪眸﹌ 2025-01-16 11:21:33

我认为您应该使用已定义的 ARRAY 重新创建流,而不是事后进行强制转换。

处理嵌套 json

I think you should re-create the stream with ARRAY<STRUCT already defined rather than cast afterwards.

Examples on dealing with nested json

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文