- Data Models >
- Data Model Examples and Patterns >
- Model Specific Application Contexts >
- Model Time Data
Model Time Data¶
On this page
Overview¶
MongoDB stores times in UTC by default, and will convert any local time representations into this form. Applications that must operate or report on some unmodified local time value may store the time zone alongside the UTC timestamp, and compute the original local time in their application logic.
Example¶
In the MongoDB shell, you can store both the current date and the current client’s offset from UTC.
You can reconstruct the original local time by applying the saved offset:
Use Buckets for Time-Series Data¶
A common method to organize time-series data is to group the data into buckets where each bucket represents a uniform unit of time such as a day or year. Bucketing organizes specific groups of data to help:
- Discover historical trends,
- Forecast future trends, and
- Optimze storage usage.
The Bucket Pattern¶
Consider a collection that stores temperature data obtained from a
sensor. The sensor records the temperature every minute and
stores the data in a collection called temperatures
:
This approach does not scale well in terms of data and index size. For
example, if the application requires indexes on the sensor_id
and
timestamp
fields, every incoming reading from the sensor would need
to be indexed to improve performance.
You can leverage the document model to bucket the data into documents that hold the measurements for a particular timespan. Consider the following updated schema which buckets the readings taken every minute into hour-long groups:
This updated schema improves scalability and mirrors how the application actually uses the data. A user likely wouldn’t query for a specific temperature reading. Instead, a user would likely query for temperature behavior over the course of an hour or day. The Bucket pattern helps facilitate those queries by grouping the data into uniform time periods.
Combine the Computed and Bucket Patterns¶
The example document contains two computed
fields: transaction_count
and sum_temperature
. If the
application frequently needs to retrieve the sum of temperatures for a
given hour, computing a running total of the sum can help save
application resources. This Computed Pattern approach eliminates the
need to calculate the sum each time the data is requested.
The pre-aggregated sum_temperature
and transaction_count
values
enable further computations such as the average temperature
(sum_temperature
/ transaction_count
) for a particular bucket.
It is much more likely that users will query the application for
the average temperature between 2:00 and 3:00 PM rather than querying
for the specific temperature at 2:03 PM. Bucketing and pre-computing
certain values allows the application to more readily provide that
information.
Sample Use Cases¶
In addition to time-series data, the Bucket pattern is useful for Internet of Things projects where you have multiple datasets coming from many different sources. It can be helpful to bucket that data into groups (e.g. based on device type or system) to more easily retrieve and parse the data.
The Bucket pattern is also commonly used in financial applications to group transactions by type, date, or customer.