码迷,mamicode.com
首页 > 其他好文 > 详细

RESOURCE_SEMAPHORE Waittype

时间:2015-10-24 23:35:26      阅读:416      评论:0      收藏:0      [点我收藏+]

标签:

1, 查看今天的Package执行情况,发现一个Package运行时间过长,为了查看当前DB中正在运行的SQL 语句,使用以下脚本

select    r.session_id,r.blocking_session_id,
        r.request_id,r.start_time,r.status,r.command,
        st.dbid,st.objectid,st.text as SqlStatement, 
        SUBSTRING (st.text, 
                    r.statement_start_offset/2,
                    (CASE WHEN r.statement_end_offset = -1 
                            THEN LEN(CONVERT(NVARCHAR(MAX), st.text)) * 2
                        ELSE r.statement_end_offset END 
                        - r.statement_start_offset)/2
                    ) as IndividualQueryStatement,
        r.database_id,r.user_id,r.connection_id,
        r.wait_type,r.wait_time,r.last_wait_type,r.wait_resource,r.open_transaction_count,
        r.percent_complete,r.estimated_completion_time,
        r.cpu_time,r.total_elapsed_time,r.reads,r.writes,r.logical_reads,
        r.transaction_isolation_level,r.lock_timeout,r.deadlock_priority,r.row_count,
        r.granted_query_memory,p.query_plan
from sys.dm_exec_requests r
outer APPLY sys.dm_exec_sql_text(r.sql_handle) as st
outer apply sys.dm_exec_query_plan(r.plan_handle) as p
where r.last_wait_type<>MISCELLANEOUS
    and r.session_id>50

发现一个SPID运行时间非常长,其last_wait_type = RESOURCE_SEMAPHORE

RESOURCE_SEMAPHORE Wait的含义是:Used to indicate a worker is waiting to be allowed to perform an operation requiring "query memory" such as hashes and sorts .
High wait times indicate too many queries are running concurrently that require query memory. Operations requiring query memory are hashes and sorts. Use DMVs such as dm_exec_query_resource_semaphores and dm_exec_query_memory_grants

 

引用:Troubleshooting SQL Server RESOURCE_SEMAPHORE Waittype Memory Issues

https://www.mssqltips.com/sqlservertip/2827/troubleshooting-sql-server-resourcesemaphore-waittype-memory-issues/

Resource Semaphore Wait

Before moving on, I would like to shed some light on the Resource Semaphore wait so you can better understand how memory is granted to SQL Server queries.

When SQL Server receives a user query, it first creates a complied plan, then an execution plan is created based on the complied plan. When SQL Server creates a complied plan it calculates two memory grant parameters called "required memory" and "additional memory". Required memory is the minimum memory needed to run a sort and hash join. It is known as required because a query would not start without this memory available. Additional memory is the amount of memory needed to store temporary rows in memory. This is known as additional because a query can be stored on disk if there is not enough memory available.

First, the server calculates how much memory is needed for any given query to execute. This is generally the sum of required memory and additional memory, but if your instance is using parallelism then the needed memory would be (required memory * DOP) + additional memory. The server checks if the needed memory exceeds the per query limit, then the server reduces additional memory until the total fits within the limit. This revised size is called requested memory. There is an internal facility within SQL Server known as RESOURCE SEMAPHORE which is used to grant this requested memory to a query. If query is not able to be granted this requested memory by a Resource Semaphore, then that query will be in a waiting state with a RESOURCE_SEMAPHORE wait type if you query the sysprocesses system table or sys.dm_exec_request DMV.

When a Resource Semaphore receives a new request, it first checks if any query is waiting or not. If it finds one, it puts the new query in the queue because the wait queue is designed on a first-come-first-served basis with a small weighting to favor small queries. Resource Semaphore attempts to grant memory when there is no waiting query or when a query returns reserved memory. If it finds enough memory, then the requested memory is granted and the query can start running and if it does not find enough free memory to grant the requested memory then it puts the current query into the waiting queue with a RESOURCE_SEMAPHORE wait type and your server starts facing memory pressure.

 

2,使用sys.dm_exec_query_memory_grants  和 sys.dm_exec_query_resource_semaphores 查看memory grant更详细的信息

出现RESOURCE_SEMAPHORE Waittype的原因是不能得到请求的内存,导致查询语句没有执行下去,表明server存在内存压力。在sql server中,sort和hash join是非常消耗资源的两个操作,优化这两个查询可以缓解内存压力。

 

 

参考文档:

https://www.mssqltips.com/sqlservertip/2827/troubleshooting-sql-server-resourcesemaphore-waittype-memory-issues/

https://msdn.microsoft.com/en-us/library/ms365393.aspx
https://msdn.microsoft.com/zh-cn/library/ms366321(v=sql.120).aspx

 

RESOURCE_SEMAPHORE Waittype

标签:

原文地址:http://www.cnblogs.com/ljhdo/p/4907733.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!