mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
Add PREEMPTIVE_OS_FLUSHFILEBUFFERS to ignore list in waits script (#4030)
* Update waits_paul_randal.sql Added the PREEMPTIVE_OS_FLUSHFILEBUFFERS wait to the list to ignore * Update waits_detail_paul_randal.sql Add PREEMPTIVE_OS_FLUSHFILEBUFFERS to ignore list.
This commit is contained in:
committed by
Kevin Cunnane
parent
49b2e98a8f
commit
a73f5e83ec
@@ -34,6 +34,7 @@ WITH [Waits] AS
|
||||
N'KSOURCE_WAKEUP', N'LAZYWRITER_SLEEP',
|
||||
N'LOGMGR_QUEUE', N'MEMORY_ALLOCATION_EXT',
|
||||
N'ONDEMAND_TASK_QUEUE',
|
||||
N'PREEMPTIVE_OS_FLUSHFILEBUFFERS',
|
||||
N'PREEMPTIVE_XE_GETTARGETSTATE',
|
||||
N'PWAIT_ALL_COMPONENTS_INITIALIZED',
|
||||
N'PWAIT_DIRECTLOGCONSUMER_GETNEXT',
|
||||
@@ -73,4 +74,4 @@ INNER JOIN [Waits] AS [W2]
|
||||
ON [W2].[RowNum] <= [W1].[RowNum]
|
||||
GROUP BY [W1].[RowNum]
|
||||
HAVING SUM ([W2].[Percentage]) - MAX( [W1].[Percentage] ) < 95; -- percentage threshold
|
||||
GO
|
||||
GO
|
||||
|
||||
@@ -34,6 +34,7 @@ WITH [Waits] AS
|
||||
N'KSOURCE_WAKEUP', N'LAZYWRITER_SLEEP',
|
||||
N'LOGMGR_QUEUE', N'MEMORY_ALLOCATION_EXT',
|
||||
N'ONDEMAND_TASK_QUEUE',
|
||||
N'PREEMPTIVE_OS_FLUSHFILEBUFFERS',
|
||||
N'PREEMPTIVE_XE_GETTARGETSTATE',
|
||||
N'PWAIT_ALL_COMPONENTS_INITIALIZED',
|
||||
N'PWAIT_DIRECTLOGCONSUMER_GETNEXT',
|
||||
@@ -73,4 +74,4 @@ INNER JOIN [Waits] AS [W2]
|
||||
ON [W2].[RowNum] <= [W1].[RowNum]
|
||||
GROUP BY [W1].[RowNum]
|
||||
HAVING SUM ([W2].[Percentage]) - MAX( [W1].[Percentage] ) < 95; -- percentage threshold
|
||||
GO
|
||||
GO
|
||||
|
||||
Reference in New Issue
Block a user