开发者

Terrible SQL reads performance (culprit update stats?)

开发者 https://www.devze.com 2023-02-27 07:37 出处:网络
I\'m running on SQL Server 2008 R2 and am trying to fine-tune performance. I did everything I could from:

I'm running on SQL Server 2008 R2 and am trying to fine-tune performance. I did everything I could from:

  • Code review of SQL code
  • Create or remove indexes as I think appropriate
  • Auto create stats ON
  • Auto update stats ON
  • Auto update stats async ON

I have a 24/7 system that constantly stores data. Sometimes we do reads and that's where the issue is. Sometimes the reads take a couple of seconds or less (which would be expected and acceptable to us). Other times, the reads take several seconds that could amount to a minute before the stored procedure completes and we render data on the UI.

If we do the read again, it would be faster. The SQL profiler would trace the particular stored procedure or query that took several seconds. We would zoom into that stored procedure, and do everything we can do to optimize it if we can.

I also traced the auto stats event and the recompile event. It's hard to tell if a stat is being updated causing the read to take a long time, or if a recompile caused it. Sometimes, I see that the profiler traced a recompile of the read query that took several unacceptable minutes, other times it doesn't trace a recompile.

I tried to prevent the query optimizer from blocking the read until it recompiles or updates stats by using option use plan XML, etc. But I ran into compile errors complaining that the query plan XML isn't valid; that could be true because the query is quiet involved: select + joins that involve a local table var. I开发者_Python百科 sort of hacked the XML and maybe that's why it deemed it invalid. So I gave up on using plan hint.

We tried periodic (every 15 minutes) manual running update stats in order to keep stats up-to-date as much as we can, but that hurt performance. updatestats blocks writes, and I'm sure even reads; updatestats seemed to maintain a bunch of statistics and on average it was taking around 80-90 seconds. A read that waits that long is unacceptable.

So the idea is to let the reads happen and prevent a situation when a recompile/update stat blocks it, correct? Does it make sense to disable auto statistics altogether? Or perhaps disable auto create statistics after deleting all the auto created stats?

This goes against Microsoft recommendations perhaps, since they enable auto create statistics and auto update statistics by default, and performance may suffer, but any ideas/hints you can give would be appreciated.


From what you are explaining, it looks like the below (all or some) might be happening.

  1. You are doing physical reads. The quick way you avoid this is by increasing the amount of RAM you throw at the box. You haven't mentioned the hardware specs of your server. Please add details.
  2. If you trace the SQL calls then you can easily figure out why the RECOMPILE happened. Look at the EventSubClass to figure out the reason and work towards resolving that. ref: http://msdn.microsoft.com/en-us/library/ms187105.aspx
  3. You mentioned table variables. These are notorious for causing performance issues when NOT using at the right place. If you use table variables in a JOIN, parallel plan is out of the question and no stats also. I am NOT sure how and where you are using but try replacing them with temp tables. And starting from SQL Server 2005, you will get only STMT recompilation at best and NOT the complete SP recompile as it happened in 2000.
  4. You mentioned Update Stats ASYNC option and this won't block the query.
  5. What are the TOP WAIT STATS on this server? Have you identified the expensive procedures based on CPU, Logical reads & execution count?
  6. Have you looked the Page Life Expectancy, amount of IO using virtual file stats DMV?
  7. Updating Stats every 15 minutes is NOT a good plan. How often is data inserted into the system? What is the sample rate you are using? What is your index maintenance strategy?
  8. Have you looked at the missing indexes DMV?

There are a bunch of good queries to identify problems in more granular fashion using the below queries.

ref: http://dl.dropbox.com/u/13748067/SQL%20Server%202008%20Diagnostic%20Information%20Queries%20%28April%202011%29.sql

There are so many other things to look at but the above is a good starting point.


OK, here is my IMHO catch on this:

  • DBCC INDEXDEFRAG is worth trying and is an ONLINE function hence can be used on a live system

  • You could be reaching the maximum capacity of your architectural design. You can scale up which can always help but more likely you have to change the architecture to achieve better scalability sacrificing simplicity

  • A common trick is partitioning. You are writing to a table whose index distribution looks nothing like it was a few hours ago - hence degrading performance. This is a massive write, such a table could be divided to daily write and the rest of the data with nightly batches of moving stuff across.

  • More and more, people are being converting to CQRS. You might be the next. This solves the problem by separating reads from writes (a very simplistic explanation).

0

精彩评论

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

关注公众号