开发者

MySQL performance - 100Mb ethernet vs 1Gb ethernet

I've just started a new job and noticed that the analysts computers are connected to the network at 100Mbps. The ODBC queries we run against the MySQL server can easily return 500MB+ and it seems at times when the servers are under high load the DBAs kill low priority jobs as they are taking too long to run.

My question is this... How much of this server time is spent executing the request, and how much time is spent returning the data to the client? Could the query speeds be improved by upgrading the network connections to 1Gbps?

(Updated for the why): The database in question was built to accomodate reporting needs and contains massive amounts of data. We usually work with subsets of this data at a granular level in external applications such as SAS or Excel, hence the reason for the large amounts of data being transmitted. The queries are not poorly structured - they are very simple and the appropriate joins/indexes etc are being used. I've removed 'query' from the Title of the post as I realised this question is more to do with general MySQL performance rather than query related performance. I was kind of hoping that someone with a Gigabit connection may be able to actually quantify some results for me here by running a query that returns a decent amount of data, then they could limit their connection speed to 100Mb and r开发者_如何学Cerun the same query. Hopefully this could be done in an environment where loads are reasonably stable so as not to skew the results.

If ethernet speed can improve the situation I wanted some quantifiable results to help argue my case for upgrading the network connections.

Thanks Rob


  1. Benchmark. MySQL has many tools for determining how long queries take. Odds are you have really bad queries. Use the slow query log.
  2. Why are you transmitting/storing 500MB of data from/in MySQL?


Divide the amount of data by the time of your query, you'll get your answer. If you're nearing the capacity of 100Mbps , you'll have IO problems.


My suspicion is yes. It should be.

In the MySQL shell, I would run:

show full processlist

on the machine and check out the state of the queries. If you see any states similar to: "reading from net" or "writing to net" that would imply that network transmission is directly impacting MySQL. You can also look at IOStat results to see how much IO the system is using. If the system is on a managed switch, you might also want to check the load there.

Ref: show processlist

Ref: Status definitions

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜