gpt4 book ai didi

json - 从 kinesis firehose 解析 json

转载 作者:IT王子 更新时间:2023-10-29 02:36:17 26 4
gpt4 key购买 nike

您好,我正在尝试将 kinesis firehose 与 S3 结合使用。我试着阅读那些 s3 文件。我正在使用 GO 阅读它。

但是,我无法解析 JSON,因为值只是在没有任何分隔符的情况下附加。

这是文件的示例(请注意,原始输入是相互附加的,为了格式化目的,我用换行符将它们分开):

{"ticker_symbol":"PLM","sector":"FINANCIAL","change":-0.16,"price":19.99}
{"ticker_symbol":"AZL","sector":"HEALTHCARE","change":-0.78,"price":16.51}
{"ticker_symbol":"IOP","sector":"TECHNOLOGY","change":-1.98,"price":121.88}
{"ticker_symbol":"VVY","sector":"HEALTHCARE","change":-0.56,"price":47.62}
{"ticker_symbol":"BFH","sector":"RETAIL","change":0.74,"price":16.61}
{"ticker_symbol":"WAS","sector":"RETAIL","change":-0.6,"price":16.72}

我的问题是,如何在 Go 中解析它?我能想到的一种解决方案是将它们拆分为 }{ 并再次附加它们。但这很老套。

或者 kinesis firehose 是否提供定界符?

------更新------

目前我已经实现了解决方案,将所有 }{ 替换为 },{ 然后在开头添加 [ ] 最后。然后解析它。

但是我仍在寻找替代方案,因为此解决方案会限制 json 对象内容中的任何 }{

最佳答案

创建一个简单的结构来解码分批传入的 json。所以每批 json 都被解码到一个 json 对象中。然后创建一个结构 slice ,将解析后的 json 附加到 slice 中。这会将您的结果 json 全部附加到结构的 slice 中。

package main

import (
"encoding/json"
"fmt"
)

type Ticker struct {
TickerSymbol string `json:"ticker_symbol"`
Sector string `json:"sector"`
Change float64 `json:"change"`
Price float64 `json:"price"`
}

var jsonBytes = []byte(`{"ticker_symbol":"PLM","sector":"FINANCIAL","change":-0.16,"price":19.99}`)

func main() {
var singleResult Ticker
var result []Ticker
if err := json.Unmarshal(jsonBytes, &singleResult); err != nil {
fmt.Println(err)
}

if len(result) == 0 {
result = append(result, singleResult)
}
fmt.Printf("%+v", result)
}

已编辑:

如果数据是批量传入的,其中包含相互附加的 json 对象,那么您可以使用正则表达式将 } 替换为 },,然后最右边进行修剪, 使对象的有效 json 数组为:

package main

import (
"fmt"
"regexp"
"strings"
)

type Ticker struct {
TickerSymbol string `json:"ticker_symbol"`
Sector string `json:"sector"`
Change float64 `json:"change"`
Price float64 `json:"price"`
}

var str = `{"ticker_symbol":"PLM","sector":"FINANCIAL","change":-0.16,"price":19.99}
{"ticker_symbol":"AZL","sector":"HEALTHCARE","change":-0.78,"price":16.51}
{"ticker_symbol":"IOP","sector":"TECHNOLOGY","change":-1.98,"price":121.88}
{"ticker_symbol":"VVY","sector":"HEALTHCARE","change":-0.56,"price":47.62}
{"ticker_symbol":"BFH","sector":"RETAIL","change":0.74,"price":16.61}
{"ticker_symbol":"WAS","sector":"RETAIL","change":-0.6,"price":16.72}`

func main() {

r := regexp.MustCompile("}")
output := strings.TrimRight(r.ReplaceAllString(str, "},"), ",")
output = fmt.Sprintf("[%s]", output)
fmt.Println(output)
}

使用 r := regexp.MustCompile("}") 将帮助您不必担心 }{ 之间的空格会干扰替换字符串。因此,只需将 } 替换为 },,然后向右修剪即可。

此外,我使用 MustCompile 的原因是:

When creating constants with regular expressions you can use the MustCompile variation of Compile. A plain Compile won’t work for constants because it has 2 return values.

Go playground 上使用 json 解析的完整工作代码

关于json - 从 kinesis firehose 解析 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52638176/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com