MongoDB Timeseries
Supports MongoDB time series data instead of ordinary collections. It takes advantage of the nature of time-based data ingested into INTELIE Live, whether ordered by timestamp or other fields, like ad
MongoDB
For more information about classic INTELIE MongoDB plugin configuration and features, access Plugin MongoDB docs.
MongoDB Timeseries
Time series is a collection of data that changes over time. That way, the time when the data was recorded plays a significant role when querying and analyzing this data. MongoDB introduced in version 5.0 a new type of collection that stores time series data in an efficient way, called time series collections.
From the user's perspective, time series behaves the same as normal collections, just stored efficiently. This plugin uses time series collections instead of normal collections, since most of the data in Live is time-based, whether it's based on the usual timestamp, or other fields, like adjusted_index_timestamp, which will be used to create the time series collection.
In order to create a MongoDB time series collection, it's necessary to specify a timeField
configuration indicating the document field to be used as the temporal mark. However, other immutable configurations are also crucial to be prepared before the time series creation:
metaField
: The name of the field which contains metadata in each time series document, identifying a unique series of documents.granularity
: Value that most closely matches the time between consecutive incoming timestamps, possible values are seconds (default), minutes, and hours.
Know more about time series configurations at https://www.mongodb.com/docs/manual/core/timeseries/timeseries-procedures/#time-series-field-reference.
Benefits
MongoDB uses a columnar storage format for time series collections, providing the following benefits:
Improved query efficiency
Reduced disk usage
Reduced I/O for read operations
Know more about its benefits at https://www.mongodb.com/docs/manual/core/timeseries-collections/#benefits.
This plugin takes advantages from these benefits, for example:
Queries that use a timestamp hint have been improved.
Total collection storage size, including indexes, decreased by 90%.
Risks and limitations
When developing this new plugin, we faced many risks because of time series collections limitations, but most of them were solved at MongoDB version 7.0. But we still have some risks or limitations:
Legacy collections (collections created using the plugin MongoDB) are not supported, since they are not time series collections and cannot be converted.
Managing multiple integrations requires some additional attention, as explained at Multiple integrations subsection.
Each integration must have its dedicated database on MongoDB.
MongoDB version 7+ must be used.
Sparse index support was removed.
Difference from plugin MongoDB
For users
Sparse indexes are not supported.
Removed
eval
support, both from endpoints and the Query Provider.Configuring an integration, as explained at Integration config subsection.
For developers
To store events in a time series collection, the
timeField
must beDate
type. To solve this issue, a new field is created when encoding the event,intelie_time_field
, which contains the value of the configuredtimeField
asDate
. When decoding the event, this extra field is removed.Pipes queries using the configured
timeField
as timestamp hint use theintelie_time_field
when querying on MongoDB.Because of the
intelie_time_field
extra field, indexes requests containing the configuredtimeField
are mapped to the extra field.Upserts are not supported yet in time series collections. To keep our support to
__overwrite
, we perform a delete followed by an insert.The
_id
field was not being generated when inserting an event, so the plugin generates one before inserting it.Java and MongoDB have different maximum values when using the
Long
type, causing overflow when querying by JavaLong.MAX_VALUE
for example. Because of that, the plugin defines a maximum and minimum values, respectively8640000000000000L
and-8640000000000000L
.
Requirements
Live 3.30+.
MongoDB server version 7+.
Configuration
INTELIE Live Integration
Three new configurations were added when compared to the plugin MongoDB:
timeSeriesTimestamp
: temporal field to be used astimeField
when creating the time series collection. The value must be the field used as timestamp hint when querying for better performance, examples:timestamp
,adjusted_index_timestamp
.timeSeriesGrouping
: grouping field to be used asmetaField
when creating the time series collection. The value should be the field used in where clauses when querying for better performance, example:mnemonic
.timeSeriesGranularity
: frequency of data, to be used asgranularity
when creating the time series collection.
In addition, an automatic configuration is done. Since each integration can have events following the same time series configuration, the integration field is concatenated with adjusted_index_timestamp:*
filter (supposing the timeSeriesTimestamp
is adjusted_index_timestamp
). So, to be stored at that integration, an event must contain the field specified as timeSeriesTimestamp
.
Note that all these configurations are applied to all collections stored in that integration.
Multiple timestamp hints are not supported and the usage of storage timestamp hint other than the temporal field will rely on MongoDB on-the-fly sorting and it will be time-consuming.
Multiple integrations
Since each integration is configured using only one timeSeriesTimestamp
, multiple integrations must be created if the user wants to manage multiple time-based fields. Also, each integration must have its own dedicated database, otherwise events will show up twice on the queries. Each integration will filter events based on the presence of the time field. This can lead to some problematic situations:
an event contains more than one time field, each field configured at a different integration. There's no way to predict which integration will store the event and the performance will be affected depending on the query.
an integration is configured with
timestamp
astimeSeriesTimestamp
. Like the situation above, since all events containtimestamp
as a mandatory field. In this case, the integration filter should exclude all other fields configured astimeSeriesTimestamp
in any integration.
Last updated