Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions source/core/timeseries-collections.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,31 @@ Time Series Collections
.. versionadded:: 5.0

:term:`Time series collections <time series collection>` efficiently
store sequences of measurements over a period of time. Compared to
normal collections, storing time series data in time series collections
improves query efficiency and reduces the disk usage for time series
data and :term:`secondary indexes <secondary index>`.
store sequences of measurements over a period of time. Time series data
is any data that is collected over time and is uniquely identified by
one or more unchanging parameters. The unchanging parameters that
identify your time series data is generally your data source's metadata.

.. list-table::
:header-rows: 1
:widths: 30, 30, 40

* - **Example**
- **Measurement**
- **Metadata**
* - Weather data
- Temperature
- Sensor identifier, location
* - Stock data
- Stock price
- Stock ticker, exchange
* - Website visitors
- View count
- URL

Compared to normal collections, storing time series data in time series
collections improves query efficiency and reduces the disk usage for
time series data and :term:`secondary indexes <secondary index>`.

Procedures
----------
Expand Down