Docs 菜单
Docs 主页
/ / /
Kotlin Sync 驱动程序
/

时间序列数据

在此页面上

  • Overview
  • 创建时间序列集合
  • 存储时间序列数据
  • 查询时间序列数据
  • 更多信息

在本指南中,您可以学习;了解如何使用Kotlin Sync驾驶员存储时间序列数据并交互。

时间序列数据由以下部分组成:

  • 测量数量

  • 测量的时间戳

  • 描述测量的元数据

下表描述了可以存储时间序列数据的示例情况:

情况
测量数量
Metadata
按行业记录月度销售额
收入(美元)
公司、国家/地区
追踪天气变化
降水量
位置、传感器类型
记录房价波动
月租价格
位置、货币

重要

时间序列集合的服务器版本

要创建时间序列集合并与之交互,必须连接到运行 MongoDB Server 5.0或更高版本的部署。

您可以创建时间序列集合来存储时间序列数据。 要创建时间序列集合,请将以下参数传递给 createCollection()方法:

  • 要创建的新集合的名称

  • 一个 CreateCollectionOptions 对象,其中使用 timeSeriesOptions()方法设立了 TimeSeriesOptions

此示例在fall_weather数据库中创建october2024时间序列集合,并将timeField选项设立为"timestamp"字段:

val database = mongoClient.getDatabase("fall_weather")
val tsOptions = TimeSeriesOptions("timestamp")
val collectionOptions = CreateCollectionOptions().timeSeriesOptions(tsOptions)
database.createCollection("october2024", collectionOptions)

要验证是否已成功创建time-series collection,请对数据库运行listCollections()方法并打印结果:

val results = database.listCollections()
val jsonSettings = JsonWriterSettings.builder().indent(true).build()
results.forEach { result ->
println(result.toJson(jsonSettings))
}
{
"name": "october2024",
"type": "timeseries",
"options": {
"timeseries": {
"timeField": "temperature",
"granularity": "seconds",
"bucketMaxSpanSeconds": 3600
}
},
"info": {
"readOnly": false
}
}
...

您可以使用insertOne()insertMany()方法将数据插入到时间序列集合中,并在每个插入的文档中指定测量值、时间戳和元数据。

提示

要学习;了解有关在集合中插入文档的更多信息,请参阅插入文档指南。

此示例将纽约市温度数据插入到创建时间序列集合示例中创建的october2024时间序列集合中。 每个文档包含以下字段:

  • temperature,以华氏度为单位存储温度测量值

  • location,用于存储位置元数据

  • timestamp,其中存储了测量集合的时间

val collection = database.getCollection<Document>("october2024")
// Temperature data for October 1, 2024
val temperature1 = Document("temperature", 54)
.append("location", "New York City")
.append("timestamp", Date(1727755200000))
// Temperature data for October 2, 2024
val temperature2 = Document("temperature", 55)
.append("location", "New York City")
.append("timestamp", Date(1727841600000))
collection.insertMany(listOf(temperature1, temperature2))

您可以使用与对其他集合执行读取或聚合操作时相同的语法和约定来查询时间序列集合中存储的数据。 要学习;了解有关这些操作的更多信息,请参阅“其他信息”部分。

要学习;了解有关本指南中提到的概念的更多信息,请参阅以下MongoDB Server手册条目:

要学习;了解有关执行读取操作的更多信息,请参阅从MongoDB读取数据。

要学习;了解有关执行聚合操作的更多信息,请参阅《使用聚合转换数据》指南。

要学习;了解有关本指南中提到的方法的更多信息,请参阅以下API文档:

后退

BSON