Hello,
I am wondering at which point would my MySQL table be considered too big.
The table is this:
- id
- customer_id (int)
- value (float)
- timestamp_1 (datetime)
- tmestampt_2 (datetime)
so the row size is not too great, but would be constantly being added. In my estimation I am looking at around 17000 new rows a day, so about 500,000 a month. The data is likely to be polled quite constantly in large quantities.
Should I be looking at ways to split this or am I still OK at this point?
Thanks,