问题
I have a PHP application which request a API in every half hour and get chunk of data. The amount of data approximately 30 million every month.
So this data is flooded database every day. And at the end of the year it cross approximately (30*12) = 360 million data or more.
I just store those data and when user request for a specific data I get from it. So what could be the better solution for this kind of application for store those data and get a specific data? I am now using MYSQL. Is MYSQL able to handle those data as per my request or I store those data in a file system ? Because I cannot change MYSQL at this situation.
来源:https://stackoverflow.com/questions/39051226/what-should-be-the-better-solution-for-store-and-manage-big-data