I have a MySQL table that will need to store about 200 million records on a daily basis. The data comes in flat files that I will be bulk uploading using "LOAD DATA INFILE". Most of the data elements are IDs, so not much text. One flat file for a day that consists of 200M records is about 27GB.
My question is should I store all of this information in one table, or should I split each day's data into a separate table. The splitting information would definitely make it harder to analyze, but I am unsure how well MySQL will handle 6 billion records in a single table that would accumulate for a month.
I am currently using an out of the box install for MySQL using MyISAM tables.
(Yes, I am looking to establish a Hadoop solution long term, but wondering if I can make do with MySQL for the short term)
Thanks.