PHP小编子墨为大家带来了关于"mongoDB 时间序列 / golang -"的介绍。MonGodb是一种非关系型数据库,而Golang则是一种高效的编程语言。在时间序列数据处理方面
PHP小编子墨为大家带来了关于"mongoDB 时间序列 / golang -"的介绍。MonGodb是一种非关系型数据库,而Golang则是一种高效的编程语言。在时间序列数据处理方面,Mongodb和Golang的结合可以提供强大的功能和性能。本文将详细介绍如何使用Mongodb和Golang来处理时间序列数据,包括数据的存储、查询和分析等。无论你是初学者还是有一定经验的开发者,本文都会帮助你更好地理解和应用Mongodb和Golang在时间序列数据处理中的优势和技巧。
我有以下示例 go 代码,它将来自 rest 请求 (gin) 的数据插入到 mongodb 中,但失败了:
['timestamp' must be present and contain a valid bson utc datetime value]
代码:
func CreateDevicesReadings(c *gin.Context) {
var devicesReadings DevicesReadings
c.BindJSON(&devicesReadings)
// Connect to MongoDB
client, err := mongo.Connect(context.Background(), clientOptions)
if err != nil {
c.jsON(500, gin.H{
"message": "Internal Server Error. Could not connect to the database.",
})
log.Default().Println(err)
}
collection := client.Database("florly").Collection("devicesReadings")
ctx, _ := context.WithTimeout(context.Background(), 5*time.Second)
// Set timestamp to the current time at the moment of the request
for i := 0; i < len(devicesReadings.DevicesReadings); i++ {
devicesReadings.DevicesReadings[i].Timestamp = time.Now().UTC()
}
_, err = collection.InsertOne(ctx, devicesReadings)
if err != nil {
c.JSON(500, gin.H{
"message": "Internal Server Error. Could not insert the data into the database.",
})
log.Default().Println(err)
} else {
log.Default().Println("Data inserted successfully.")
}
client.Disconnect(context.Background())
}
type DeviceReadings struct {
ID primitive.ObjectID `json:"_id,omitempty" bson:"_id,omitempty"`
Alias string `json:"alias" bson:"alias"`
Timestamp time.Time `json:"timestamp,omitempty" bson:"timestamp"`
SystemReadings SystemReadings `json:"systemReadings" bson:"systemReadings"`
SensorReadings SensorReadings `json:"sensorsReadings" bson:"sensorsReadings"`
}
我做错了什么?我认为 mongodb 完成了将 time.time
类型转换为 mongodb 查找的类型的整个过程。
您调用 Collection.InsertOne()
,可用于插入单个文档。然而,devicesReadings
是多个文档的一部分。
因此,您要么必须迭代所有文档并将它们单独传递给 Collection.InsertOne()
,要么使用 Collection.InsertMany()
,使用要插入的多个文档的切片。
以上就是Mongodb 时间序列 / Golang -的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: Mongodb 时间序列 / Golang -
本文链接: https://www.lsjlt.com/news/563412.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-05
2024-04-05
2024-04-05
2024-04-04
2024-04-05
2024-04-05
2024-04-05
2024-04-05
2024-04-04
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0