Dear fellow members.
In my workplace, we have an application using php MySQL which functionality is basically storing data from user input.
The condition is like this, we have one computer act as the server which served about 10-20 clients. each clients is inputting data using PHP application that basically running "INSERT" SQL query everytime a transaction is confirmed.
so far, the table that stores the data has around 130k rows with 38Mb size and growing around 1000 rows per day.
the table which stores our data was recently crashed twice ,fortunately repair table worked in both occasion.
one of my friend suggest that one of the main reason of the crash is because the transaction occurs simultaneously among the clients. is this true?
moreover, is there any way to prevent the table crash again?
oh, btw we have were getting through blackout twice as well, perhaps that also contributed to the crash.
In my workplace, we have an application using php MySQL which functionality is basically storing data from user input.
The condition is like this, we have one computer act as the server which served about 10-20 clients. each clients is inputting data using PHP application that basically running "INSERT" SQL query everytime a transaction is confirmed.
so far, the table that stores the data has around 130k rows with 38Mb size and growing around 1000 rows per day.
the table which stores our data was recently crashed twice ,fortunately repair table worked in both occasion.
one of my friend suggest that one of the main reason of the crash is because the transaction occurs simultaneously among the clients. is this true?
moreover, is there any way to prevent the table crash again?
oh, btw we have were getting through blackout twice as well, perhaps that also contributed to the crash.
Comment