Is there a command in MySQL that returns the read-to-write ratio of queries so that I’m able to know on what MySQL spends time, and whether the load would lower significantly by splitting data over two servers?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the “show status” and check the “Com_%” variables for read/write ratios.
As for splitting the data, you’ll have to check the slow query log (Google mysqlsla) and find out if those queries are amicable to being split.