How to manage MySQL table with huge number of rows -
How to manage MySQL table with huge number of rows -
i have table user_history 7 1000000 records. know how manage table next criteria:
i have more 2 1000000 record of 2012 year, not used now, means user views history sometimes.
now options manage table? should need delete rows year 2012? how social media sites (facebook, twitter) manage user history?
one of best way handle big tables utilize partition.
it's creating lot little tables, except mysql for, reading , writing, based on column, partition key.
more informations here : http://www.chrismoos.com/2010/01/31/mysql-partitioning-tables-with-millions-of-rows
mysql
Comments
Post a Comment