Efficiently storing 7.300.000.000 rows

前端 未结 7 1879
感情败类
感情败类 2020-12-12 17:47

How would you tackle the following storage and retrieval problem?

Roughly 2.000.000 rows will be added each day (365 days/year) with the following information per ro

7条回答
  •  生来不讨喜
    2020-12-12 18:13

    If you want to handle huge data with millions of rows it can be considered similar to time series database which logs the time and saves the data to the database. Some of the ways to store the data is using InfluxDB and MongoDB.

提交回复
热议问题