Hello Miguel,

Thanks for reaching out. I work with the time-series product team here at MongoDB. From an initial look, your use-case sounds like a good fit for time-series collections. Here are some reasons why:

a. You mentioned there’s no need to modify the data already inserted for your use-case. TSCs are built exactly for such append-only use-cases where we offer other optimizations in tradeoff for updates and deletes.
b. Query optimizations - Given your data model and finance use-case, it’s likely your query patterns leverage range and meta-field based filtering and querying. TSCs are natively designed to optimize on these kinds of queries, which might not be as straightforward to achieve with regular collections.
c. TSCs also take advantage of the nature of time-series data with data collocation and columnar storage format. This means that it allows for more effective compression algorithms. Your time-series data can expect significant storage reduction compared to regular collections, even if your data is already pre-processed.
d. We also designed TSCs to make it easier to work with time-stamped data. So you have access to native temporal functionalities like date-time truncation, densification, gap filling features etc, which can save your development cost.

Happy to clarify further about time-series and learn more about your use-case . You can also check out our page here – MongoDB Time Series | MongoDB to learn more.


Nishith