Thursday, March 29, 2012
HOLAP much faster then MOLAP !?
When I process the same cube with the MOLAP (100% performance gain) storage option the same query takes forever.
I'm puzzled. Can someone explain this?
Edwin
P.S. THe cube has a DistinctCount measure in it. Does this have anything to do with the poor MOLAP performance?You are correct - that is unusual. How big are both of the cubes ? Have you tried duplicating the same behavior with the foodmart sample ? Since you are suspicious of the distinctcount - have you eliminated that measure to see how it affects performance ?|||Have you tried it under excel 2000 ?|||Thank for the reply.
Excel 2000 gives me the same problem, as well as the cube data browser in the Analysis Manager itself.
I replaced the Distinct Count by a Sum. Performance was OK in both HOLAP and MOLAP, so the Distinct Count causes the pain (but I really need it).
I couldn't reproduce the same thing in the Foodmart cubes (size perhaps?).
Maybe I stumbled on some undocumented limit.
Another thing: In HOLAP mode with 100% performance gain it still computes aggregation data in Oracle. I know this, because when I shut Oracle I get #value errors. I thougt 100% means 'all aggregations in Analysis Services'. Also I'm often exactly 1 above the exact value with the Distinct Counts, because NULL seams to count a distinct value.
I rfead somewhere that Analysis Services transform a NULL into a 0 when one of the other measures in the source table is not NULL.
Is that correct, and if so, is there a patch for that? Otherwise I must define fact-views for each Distinct Count measure with "WHERE ... IS NOT NULL".
Development Server : PIII 500, 512 MB memory
(should eat this 7.5MB cube for breakfast)
Relational database: Oracle 8.1.7.3
Analysis Services : Service Pack 2
Fact table: : 69000 rows
Measures: : 1 Distinct Count
Dimension data : 1 3000 members, 1 level
2 69000 members, divided in 7 levels
3 Price-dimension (hierarchy 1)
4 Price-dimension (hierarchy 2)
Cube in MB 7.5 MB (in both HOLAP and MOLAP mode)
Edwin
Friday, March 23, 2012
Hight paging activities on the DB server
I am experiencing suddent high paging activities on my
database server on regular bases. I setup an performance
monitor Counter log to monitor the db performance, which
showed that the "Memery-Page/sec" counter jumped from an
average of 50 to 2000 or even more at aound the same time
each hour and "PhysicalDisk-Avg. Disk Queue Length" jumped
from 0.3 to 30 or 40. The high paging lasted for 1 or 2
minutes, then the performance came back to normal. I have
run the profiler to trace all the SQL Batches sent to the
server and I couldn't see any abnormal SQL running which
might have caused the paging. More strange is the
counter "Buffer Cache Hit ratio" had remained 99% all the
time, which indicated that the high paging activities were
not caused by database read and I had very little write
activities on the database when it happened.
The server is dedicated to SQL Server. The server
enviroment I am using is:-
Microsoft SQL Server 2000 - 8.00.194 Enterprise Edition
Windows NT 5.0 (Build 2195: Service Pack 4).
Have anyone experienced the same problem or known what
might have caused the problem.
Any suggestion is very much appreciated.
Cheers
XiaobingTry tracing those counters on a per-process basis. It'll point you toward
where the problem lies.
--
Tom
---
Thomas A. Moreau, BSc, PhD, MCSE, MCDBA
SQL Server MVP
Columnist, SQL Server Professional
Toronto, ON Canada
www.pinnaclepublishing.com/sql
"xy" <xyu@.redfig.com> wrote in message
news:693901c4758f$069f8ff0$a601280a@.phx.gbl...
Hi,
I am experiencing suddent high paging activities on my
database server on regular bases. I setup an performance
monitor Counter log to monitor the db performance, which
showed that the "Memery-Page/sec" counter jumped from an
average of 50 to 2000 or even more at aound the same time
each hour and "PhysicalDisk-Avg. Disk Queue Length" jumped
from 0.3 to 30 or 40. The high paging lasted for 1 or 2
minutes, then the performance came back to normal. I have
run the profiler to trace all the SQL Batches sent to the
server and I couldn't see any abnormal SQL running which
might have caused the paging. More strange is the
counter "Buffer Cache Hit ratio" had remained 99% all the
time, which indicated that the high paging activities were
not caused by database read and I had very little write
activities on the database when it happened.
The server is dedicated to SQL Server. The server
enviroment I am using is:-
Microsoft SQL Server 2000 - 8.00.194 Enterprise Edition
Windows NT 5.0 (Build 2195: Service Pack 4).
Have anyone experienced the same problem or known what
might have caused the problem.
Any suggestion is very much appreciated.
Cheers
Xiaobing
High performance system and table and index structure
I'm working on something a little different at present. Given it's a bit out
of the ordinary, and it relates to some of our indexing discussions lately,
I'd appreciate any thoughts/feedback.
It's a SQL Server box that's receiving a stream of real-time data from oil
drilling rigs all over the world. It needs to perform both fast inserts (ie
10,000 per second) and also have good performance on a fixed list of query
types. The essential part of the table data that has me most intrigued looks
like this:
Well (ID of the well involved - varchar(60))
Wellbore (ID of a specific bore at a wellsite - varchar(60))
Curve (ID of a specific set of measures eg: pressures, gas levels, etc.)
Depth (float)
Time (datetime)
DataValue (float)
This data is defined in an external xsd. The hardware/operating system
requirements are basically a non-issue ie: whatever is needed can be
obtained.
The key thing is that about 100 wellbores with up to 100 curves (of sets of
data) can be active each second, so fast insert performance is critical.
Once inserted, the messiest queries involve:
1. All values for a specific curve within a range of depths
2. All values for a specific curve within a range of times
The things I'm pondering are:
1. Whether to have this in one database or to have a database per well.
There are about 1200 wells, but about 100 active concurrently.
2. Whether to store the data in a heap or a clustered index on either depth
or time.
3. Whether to use a non-clustered index for whichever of depth or time
wasn't the clustered one OR whether to store the data twice ie: once by date
and once by time.
4. Whether to find a way to limit the range of depth values (currently
float) to store them instead as a bigint, if the performance of bigint's in
indexes and range queries, etc. is better than floats.
I'd love to hear anyone's thoughts on this. We're about to start
experimenting to see what works.
Regards,
GregGreg
Is it SQL Server 2005?
Well , if it needs perfom fast inserts I think to store the data in a
heap you can get better performance for inserting , however as you said
you need to have good performance on lits of query , so CI will be a good
candidate for range queries
Actually it is really hard to suggest something , you need to test it and
get a decision
"Greg Low [MVP]" <greglow@.lowell.com.au> wrote in message
news:udZGEsj9GHA.3264@.TK2MSFTNGP04.phx.gbl...
> Hi Folks,
> I'm working on something a little different at present. Given it's a bit
> out of the ordinary, and it relates to some of our indexing discussions
> lately, I'd appreciate any thoughts/feedback.
> It's a SQL Server box that's receiving a stream of real-time data from oil
> drilling rigs all over the world. It needs to perform both fast inserts
> (ie 10,000 per second) and also have good performance on a fixed list of
> query types. The essential part of the table data that has me most
> intrigued looks like this:
> Well (ID of the well involved - varchar(60))
> Wellbore (ID of a specific bore at a wellsite - varchar(60))
> Curve (ID of a specific set of measures eg: pressures, gas levels, etc.)
> Depth (float)
> Time (datetime)
> DataValue (float)
> This data is defined in an external xsd. The hardware/operating system
> requirements are basically a non-issue ie: whatever is needed can be
> obtained.
> The key thing is that about 100 wellbores with up to 100 curves (of sets
> of data) can be active each second, so fast insert performance is
> critical. Once inserted, the messiest queries involve:
> 1. All values for a specific curve within a range of depths
> 2. All values for a specific curve within a range of times
> The things I'm pondering are:
> 1. Whether to have this in one database or to have a database per well.
> There are about 1200 wells, but about 100 active concurrently.
> 2. Whether to store the data in a heap or a clustered index on either
> depth or time.
> 3. Whether to use a non-clustered index for whichever of depth or time
> wasn't the clustered one OR whether to store the data twice ie: once by
> date and once by time.
> 4. Whether to find a way to limit the range of depth values (currently
> float) to store them instead as a bigint, if the performance of bigint's
> in indexes and range queries, etc. is better than floats.
> I'd love to hear anyone's thoughts on this. We're about to start
> experimenting to see what works.
> Regards,
> Greg
>|||Hi...
We had a simmilar problem just alitle bit scaled down.
We implemented like:
- use an autoid for PK -> heap, rows are appended in the pages, no other
indexes, no constrains, all collumns allows null.
- use EE version (sql2005) :)
- use snapshot isolation mode for querying the data. (decrease lockings)
- use for querying a second maschine wich is sync-ing the data each n
sec/min. (you can try a log shipping but we've got no time to checkit)
(decreasing lockings, free cpu).
Have phun,
Radu
"Greg Low [MVP]" <greglow@.lowell.com.au> wrote in message
news:udZGEsj9GHA.3264@.TK2MSFTNGP04.phx.gbl...
> Hi Folks,
> I'm working on something a little different at present. Given it's a bit
> out of the ordinary, and it relates to some of our indexing discussions
> lately, I'd appreciate any thoughts/feedback.
> It's a SQL Server box that's receiving a stream of real-time data from oil
> drilling rigs all over the world. It needs to perform both fast inserts
> (ie 10,000 per second) and also have good performance on a fixed list of
> query types. The essential part of the table data that has me most
> intrigued looks like this:
> Well (ID of the well involved - varchar(60))
> Wellbore (ID of a specific bore at a wellsite - varchar(60))
> Curve (ID of a specific set of measures eg: pressures, gas levels, etc.)
> Depth (float)
> Time (datetime)
> DataValue (float)
> This data is defined in an external xsd. The hardware/operating system
> requirements are basically a non-issue ie: whatever is needed can be
> obtained.
> The key thing is that about 100 wellbores with up to 100 curves (of sets
> of data) can be active each second, so fast insert performance is
> critical. Once inserted, the messiest queries involve:
> 1. All values for a specific curve within a range of depths
> 2. All values for a specific curve within a range of times
> The things I'm pondering are:
> 1. Whether to have this in one database or to have a database per well.
> There are about 1200 wells, but about 100 active concurrently.
> 2. Whether to store the data in a heap or a clustered index on either
> depth or time.
> 3. Whether to use a non-clustered index for whichever of depth or time
> wasn't the clustered one OR whether to store the data twice ie: once by
> date and once by time.
> 4. Whether to find a way to limit the range of depth values (currently
> float) to store them instead as a bigint, if the performance of bigint's
> in indexes and range queries, etc. is better than floats.
> I'd love to hear anyone's thoughts on this. We're about to start
> experimenting to see what works.
> Regards,
> Greg
>|||On 23.10.2006 02:34, Greg Low [MVP] wrote:
> Hi Folks,
> I'm working on something a little different at present. Given it's a bit out
> of the ordinary, and it relates to some of our indexing discussions lately,
> I'd appreciate any thoughts/feedback.
> It's a SQL Server box that's receiving a stream of real-time data from oil
> drilling rigs all over the world. It needs to perform both fast inserts (ie
> 10,000 per second) and also have good performance on a fixed list of query
> types. The essential part of the table data that has me most intrigued looks
> like this:
> Well (ID of the well involved - varchar(60))
> Wellbore (ID of a specific bore at a wellsite - varchar(60))
> Curve (ID of a specific set of measures eg: pressures, gas levels, etc.)
> Depth (float)
> Time (datetime)
> DataValue (float)
> This data is defined in an external xsd. The hardware/operating system
> requirements are basically a non-issue ie: whatever is needed can be
> obtained.
> The key thing is that about 100 wellbores with up to 100 curves (of sets of
> data) can be active each second, so fast insert performance is critical.
> Once inserted, the messiest queries involve:
> 1. All values for a specific curve within a range of depths
> 2. All values for a specific curve within a range of times
> The things I'm pondering are:
> 1. Whether to have this in one database or to have a database per well.
> There are about 1200 wells, but about 100 active concurrently.
What about partitioning by wellid? You should at least create a setup
with allows for as much concurrent processing as possible (i.e.
separating data physically on different disks or at least file groups
etc.) to be able to stream your data into the DB as independently as
possible.
> 2. Whether to store the data in a heap or a clustered index on either depth
> or time.
> 3. Whether to use a non-clustered index for whichever of depth or time
> wasn't the clustered one OR whether to store the data twice ie: once by date
> and once by time.
If you need purging of old data and query according to time range then a
CI with timestamp as leading column is certainly a good idea.
> 4. Whether to find a way to limit the range of depth values (currently
> float) to store them instead as a bigint, if the performance of bigint's in
> indexes and range queries, etc. is better than floats.
I would start out with floats if the data is actually float. Only go
for this type of optimization if you actually need it and it is proved
that bigint is faster.
> I'd love to hear anyone's thoughts on this. We're about to start
> experimenting to see what works.
On a more general level I am thinking that Oracle might be more suited
for this scenario because it offers several features that give you
better control. For example, you do not have a single CI on a table -
basically all indexes are ordered (but you can mimic SQL Server's CI
with an IOT). Another point is partitioning of tables, Oracle is much
more flexible there (IIRC you can do only hash partitioning on SQL 2005).
Just my 0.02EUR...
Kind regards
robert
High Performance SQL Server (article)
performance hierarchies, and have the first two parts of a new series.
Hopefully this is of value to someone.
http://www.yafla.com/papers/SQL_Ser..._sql_server.htm
Thanks.Thank you article!
It make me to know what is bookmark lookup?
and why sometimes use full table scan.
Thank again. I wait and see your PART IIII will come soon.
> I posted a link to a prior article in here, that one about high
> performance hierarchies, and have the first two parts of a new series.
> Hopefully this is of value to someone.
High Performance Online Backup Large DBs
Is there anyone out there willing to discuss their backup strategy / implementation / environment? I am specifically looking for people who are running very large SQL Server 2000 DB's (>250 GB) and backing up with the databases online. I am interested to learn the environment makeup (Hardware / Software) and general performance times. I have an OLTP database that is projected to be terabyte and am looking for backup solutions that will allow near 24/7 availability and decent transaction throughput during backup.
JeremyI've seen BCV splits using EMC's storage solutions work pretty well in 24/7 environments. Go here http://www.emc.com/pdf/products/edm/C799_wp.pdf for more details.
Richard
Originally posted by Jwadzin
Question for any large database DBAs?
Is there anyone out there willing to discuss their backup strategy / implementation / environment? I am specifically looking for people who are running very large SQL Server 2000 DB's (>250 GB) and backing up with the databases online. I am interested to learn the environment makeup (Hardware / Software) and general performance times. I have an OLTP database that is projected to be terabyte and am looking for backup solutions that will allow near 24/7 availability and decent transaction throughput during backup.
Jeremy
High performance isn't always an advantage...
MSSQL 2000 + SP3 on Windows 2000 AS + SP4
I've moved my databases to new server.
IO subsystem now TEN times faster!
I have the system of two jobs performing defragmentation
of my data. One of the jobs issues DBCC INDEXDEFRAG
statements and the second one monitors state of transaction
log and stops first job if log more than 70% full. SQLAgent
can run jobs only with 1 minute intervals. So I can monitor
log status only once in minute. Everything was all right at old
server. Now on new hardware log overfills in couple of seconds
and monitoring job can't catch the moment of overfilling and
correctly stop the defragmentation.
Two questions:
1. Should I increase Tlog size depending on hardware performance
2. Is there any way to monitor log state more ofter than once
in a minute?
Thanks.
Serge ShakhovYou can have a job which uses an endless loop and WAITFOR with, say, 10 seconds.
--
Tibor Karaszi, SQL Server MVP
Archive at: http://groups.google.com/groups?oi=djq&as ugroup=microsoft.public.sqlserver
"Serge Shakhov" <REMOVETHIS_ACETYLENE@.mail.ru> wrote in message
news:83ndmb.5kr.ln@.proxyserver.ctd.mmk.chel.su...
> Hello
> MSSQL 2000 + SP3 on Windows 2000 AS + SP4
> I've moved my databases to new server.
> IO subsystem now TEN times faster!
> I have the system of two jobs performing defragmentation
> of my data. One of the jobs issues DBCC INDEXDEFRAG
> statements and the second one monitors state of transaction
> log and stops first job if log more than 70% full. SQLAgent
> can run jobs only with 1 minute intervals. So I can monitor
> log status only once in minute. Everything was all right at old
> server. Now on new hardware log overfills in couple of seconds
> and monitoring job can't catch the moment of overfilling and
> correctly stop the defragmentation.
> Two questions:
> 1. Should I increase Tlog size depending on hardware performance
> 2. Is there any way to monitor log state more ofter than once
> in a minute?
> Thanks.
> Serge Shakhov
>|||Hello
> You can have a job which uses an endless loop and WAITFOR with, say, 10
seconds.
That's a good idea!
But I'll try to avoid cycling process by executing every minute job wich
will last 58-59 seconds and perform checks say every 5 seconds...
Thank you Tibor.
Serge Shakhovsql
High Performance in Mirror
In this mode, I get that it's asynchronous. Does that just mean it sends the TX over and what happens, happens? Do I at least know it hit the comms stack, or the wire or anything? Or just it will do its est. Thanks.
You are referring to the mode when transaction safety is OFF. In this case, the principal sends the log to the mirror but does not wait for acknowledgement from the mirror. So Mirror can lag the Principal under heavy load. However, if mirror is down or if Principal is not receiving the response to the periodic ping (i.e. communication stack has a problem), the principal takes database offline.
Thanks,
|||When you say 'the principal takes database offline' you mean the MIRROR right, not the Principal database which could still live and service TXs, right?Monday, March 19, 2012
High CPU utilization in SQL Server 2005 SP2 (CTP)
We are having a big performance issue at our site. Here is the configuration of the box running SQL Server 2005:
64 bit Windows Enterprise Edition + SP1
Dual CPU, 16GB RAM
RAID 1 and RAID 5 - internal
SQL Server 2005 64-bit Enterprise Edition
With SP2 (CTP from December)
The "Lock Pages in Memory" is set and is being run under the same account that is being used to run SQL Server Services.
We are noticing that under load, the CPU utilization becomes nearly
100%. I have researched this and have come across a couple of
posts that indicate that this issue was fixed in SP2 - example: One
post talked about the hotfix #716 which is also a part of SP2 but even
after the application of that service pack, we are still having this
issue. I haven't tried setting the parameterization option to
forced for the database yet.
Is this a known issue with SP2? If not, what can we look for and
fix in our environment? Please let me know if I can provide more
information.Some more information:
This can be easily reproduced using the ostress utility by simulating
100 simultaneous concurrent connections...the SQL file that is being
used is a single procedure call. The wait event is "RESOURCE_SEMAPHORE_QUERY_COMPILE"
- we have removed the "SET" options from within the stored
procedure. We have also made sure that all queries are
parameterized queries and that there are no constants involved.
The procedure uses 3 table variables and depending upon the input
parameters, different set of queries are used to populate those table
variables. End result that is returned to the client application
is via a join of 2 out of these 3 table variables.
So, from the wait event it definitely looks like we are hitting a query
recompilation issue (part of it seems to have been fixed in SP2 but we
are not seeing those issues). We have also gone through the
whitepaper:
http://www.microsoft.com/technet/prodtechnol/sql/2005/recomp.mspx#ETD
and have followed the instructions and made sure we are doing the right things.
|||
More information:
We made the forced parameterization change and now in addition to the above wait event, the SOS_SCHEDULER_YIELD is the another prominent wait event that shows up. Nothing else is going on this machine other than that ostress execution which looks like this:
ostress -S xyz -E -d tzxyz -mstress -r1 -iC:\stress.sql -oC:\Stress_Out.txt -eC:\Stress_Err.txt -q -T30 -n100
And the Stress.sql just has a stored procedure call in it. Even if we take the call out and replace it with something as simple as :
declare @.i int
set @.i = 1
select * from table_x where col1 = @.i
we still see the same high CPU issues. The @.i value qualifies for less than 5% of the records in the table. Please advise how to resolve this issue or if this is a known issue in SP2 that will get fixed by release time-frame. This should be very easily reproducible in any environment - all our three environments (32-bit as well as 2 64-bit) exhibit the same behavior.
|||And here is the output from these commands (using DAC) when we ran into this issue:
dbcc memorystatus
select * from sys.dm_os_schedulers
select * from sys.dm_os_ring_buffers where ring_buffer_type like '%RING_BUFFER_SCHEDULER_MONITOR%'
Memory Manager KB
--
VM Reserved 16934872
VM Committed 140496
AWE Allocated 3505168
Reserved Memory 1024
Reserved Memory In Use 0
(5 row(s) affected)
Memory node Id = 0 KB
--
VM Reserved 16929112
VM Committed 134824
AWE Allocated 3505168
MultiPage Allocator 43728
SinglePage Allocator 508608
(5 row(s) affected)
MEMORYCLERK_SQLGENERAL (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 2920
MultiPage Allocator 3784
(7 row(s) affected)
MEMORYCLERK_SQLBUFFERPOOL (Total) KB
- --
VM Reserved 16809984
VM Committed 16384
AWE Allocated 3505168
SM Reserved 0
SM Commited 0
SinglePage Allocator 0
MultiPage Allocator 1160
(7 row(s) affected)
MEMORYCLERK_SQLQUERYEXEC (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 29896
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SQLOPTIMIZER (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 248
MultiPage Allocator 96
(7 row(s) affected)
MEMORYCLERK_SQLUTILITIES (Total) KB
- --
VM Reserved 600
VM Committed 600
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 128
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SQLSTORENG (Total) KB
- --
VM Reserved 1728
VM Committed 1728
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 5912
MultiPage Allocator 560
(7 row(s) affected)
MEMORYCLERK_SQLCONNECTIONPOOL (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8224
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SQLCLR (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SQLSERVICEBROKER (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 96
MultiPage Allocator 304
(7 row(s) affected)
MEMORYCLERK_SQLHTTP (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SNI (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 1080
MultiPage Allocator 16
(7 row(s) affected)
MEMORYCLERK_FULLTEXT (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SQLXP (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_QSRANGEPREFETCH (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 159528
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SQLQERESERVATIONS (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 583680
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_HOST (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16
MultiPage Allocator 0
(7 row(s) affected)
MEMORYCLERK_SOSNODE (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16856
MultiPage Allocator 11432
(7 row(s) affected)
MEMORYCLERK_SQLSERVICEBROKERTRANSPORT (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 48
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_OBJCP (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 189264
MultiPage Allocator 22128
(7 row(s) affected)
CACHESTORE_SQLCP (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 10992
MultiPage Allocator 136
(7 row(s) affected)
CACHESTORE_PHDR (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 4008
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_XPROC (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 72
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_TEMPTABLES (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 880
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_NOTIF (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_VIEWDEFINITIONS (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_XMLDBTYPE (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_XMLDBELEMENT (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_XMLDBATTRIBUTE (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_STACKFRAMES (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 0
MultiPage Allocator 8
(7 row(s) affected)
CACHESTORE_BROKERTBLACS (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 264
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_BROKERKEK (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_BROKERDSH (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_BROKERUSERCERTLOOKUP (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_BROKERRSB (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_BROKERREADONLY (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 72
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_BROKERTO (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_EVENTS (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 16
MultiPage Allocator 0
(7 row(s) affected)
CACHESTORE_SYSTEMROWSET (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 6560
MultiPage Allocator 0
(7 row(s) affected)
USERSTORE_SCHEMAMGR (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 8952
MultiPage Allocator 0
(7 row(s) affected)
USERSTORE_DBMETADATA (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 7656
MultiPage Allocator 0
(7 row(s) affected)
USERSTORE_TOKENPERM (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 784
MultiPage Allocator 0
(7 row(s) affected)
USERSTORE_OBJPERM (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 176
MultiPage Allocator 0
(7 row(s) affected)
USERSTORE_SXC (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 72
MultiPage Allocator 0
(7 row(s) affected)
OBJECTSTORE_LBSS (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 96
MultiPage Allocator 3872
(7 row(s) affected)
OBJECTSTORE_SNI_PACKET (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 18936
MultiPage Allocator 48
(7 row(s) affected)
OBJECTSTORE_SERVICE_BROKER (Total) KB
- --
VM Reserved 0
VM Committed 0
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 272
MultiPage Allocator 0
(7 row(s) affected)
OBJECTSTORE_LOCK_MANAGER (Total) KB
- --
VM Reserved 32768
VM Committed 32768
AWE Allocated 0
SM Reserved 0
SM Commited 0
SinglePage Allocator 67096
MultiPage Allocator 0
(7 row(s) affected)
Buffer Distribution Buffers
--
Stolen 32328
Free 5979
Cached 37052
Database (clean) 343055
Database (dirty) 12222
I/O 0
Latched 52
(7 row(s) affected)
Buffer Counts Buffers
--
Committed 430688
Target 1572864
Hashed 355329
Stolen Potential 1357684
External Reservation 67147
Min Free 64
Visible 1572864
Available Paging File 1600273
(8 row(s) affected)
Procedure Cache Value
--
TotalProcs 127
TotalPages 28325
InUsePages 9418
(3 row(s) affected)
Global Memory Objects Buffers
--
Resource 392
Locks 8390
XDES 424
SETLS 2
SE Dataset Allocators 4
SubpDesc Allocators 2
SE SchemaManager 1118
SQLCache 214
Replication 2
ServerGlobal 48
XP Global 2
SortTables 2
(12 row(s) affected)
Query Memory Objects Value
--
Grants 228
Waiting 0
Available (Buffers) 1096180
Maximum (Buffers) 1169140
Limit 1169140
Next Request 0
Waiting For 0
Cost 0
Timeout 0
Wait Time 0
Last Target 1181940
(11 row(s) affected)
Small Query Memory Objects Value
--
Grants 0
Waiting 0
Available (Buffers) 12800
Maximum (Buffers) 12800
Limit 12800
(5 row(s) affected)
Optimization Queue Value
--
Overall Memory 10327965696
Target Memory 9516032000
Last Notification 1
Timeout 6
Early Termination Factor 5
(5 row(s) affected)
Small Gateway Value
--
Configured Units 8
Available Units 8
Acquires 0
Waiters 0
Threshold Factor 380000
Threshold 380000
(6 row(s) affected)
Medium Gateway Value
--
Configured Units 2
Available Units 2
Acquires 0
Waiters 0
Threshold Factor 12
(5 row(s) affected)
Big Gateway Value
--
Configured Units 1
Available Units 1
Acquires 0
Waiters 0
Threshold Factor 8
(5 row(s) affected)
MEMORYBROKER_FOR_CACHE Value
-- --
Allocations 33612
Rate 6698
Target Allocations 1168790
Future Allocations 0
Last Notification 1
(5 row(s) affected)
MEMORYBROKER_FOR_STEAL Value
-- --
Allocations 20514
Rate 12631
Target Allocations 1161625
Future Allocations 0
Last Notification 1
(5 row(s) affected)
MEMORYBROKER_FOR_RESERVE Value
-- --
Allocations 55680
Rate 35900
Target Allocations 1260738
Future Allocations 292285
Last Notification 1
(5 row(s) affected)
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
scheduler_address parent_node_id scheduler_id cpu_id status is_online is_idle preemptive_switches_count context_switches_count idle_switches_count current_tasks_count runnable_tasks_count current_workers_count active_workers_count work_queue_count pending_disk_io_count load_factor yield_count last_timer_activity failed_to_create_worker active_worker_address memory_object_address task_memory_object_address
-- - - - - - -- -- -- -- -- -- -- --
0x0000000000C2A080 0 0 255 VISIBLE ONLINE 1 0 24264 680297 23197 258 120 127 127 131 0 509 733601 85174671 0 0x0000000003B901C0 0x0000000003806080 0x0000000003808050
0x0000000000EA6080 0 1 255 VISIBLE ONLINE 1 0 23938 639343 21522 260 118 128 125 132 0 508 665244 85174671 0 0x0000000003A461C0 0x0000000003810080 0x0000000003812050
0x0000000000FC0080 0 257 255 HIDDEN ONLINE 1 0 0 0 2 1 0 1 1 0 0 1 4 78393296 0 0x000000000382C1C0 0x0000000003824080 0x0000000003826050
0x0000000003720080 64 255 255 VISIBLE ONLINE (DAC) 1 1 12 25 27 2 0 3 1 0 0 1 51 85053937 0 0x00000000800001C0 0x0000000000FF6080 0x0000000000FF8050
(4 row(s) affected)
ring_buffer_address ring_buffer_type timestamp record
- -- --
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 85120120 <Record id = "143" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="85120120"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>93</ProcessUtilization><SystemIdle>4</SystemIdle><UserModeTime>17968750</UserModeTime><KernelModeTime>3531093750</KernelModeTime><PageFaults>268</PageFaults><WorkingSetDelta>315392</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 85110131 <Record id = "142" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="85110131"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>96</ProcessUtilization><SystemIdle>1</SystemIdle><UserModeTime>6875000</UserModeTime><KernelModeTime>1147656250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 85050114 <Record id = "141" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="85050114"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>93</ProcessUtilization><SystemIdle>3</SystemIdle><UserModeTime>5000000</UserModeTime><KernelModeTime>1122968750</KernelModeTime><PageFaults>66</PageFaults><WorkingSetDelta>24576</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84990106 <Record id = "140" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84990106"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>89</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>4843750</UserModeTime><KernelModeTime>1075937500</KernelModeTime><PageFaults>79</PageFaults><WorkingSetDelta>69632</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84930065 <Record id = "139" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84930065"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>28</ProcessUtilization><SystemIdle>68</SystemIdle><UserModeTime>5781250</UserModeTime><KernelModeTime>332812500</KernelModeTime><PageFaults>9514</PageFaults><WorkingSetDelta>31944704</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84925078 <Record id = "138" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84925078"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-9467</PageFaults><WorkingSetDelta>16384</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84870072 <Record id = "137" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84870072"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>95</ProcessUtilization><SystemIdle>1</SystemIdle><UserModeTime>5312500</UserModeTime><KernelModeTime>1143750000</KernelModeTime><PageFaults>66</PageFaults><WorkingSetDelta>-31739904</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84870072 <Record id = "136" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84870072"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>95</ProcessUtilization><SystemIdle>2</SystemIdle><UserModeTime>45312500</UserModeTime><KernelModeTime>8540781250</KernelModeTime><PageFaults>449</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84809942 <Record id = "135" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84809942"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>5468750</UserModeTime><KernelModeTime>1163125000</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84749920 <Record id = "134" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84749920"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>6718750</UserModeTime><KernelModeTime>1163750000</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84689902 <Record id = "133" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84689902"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>96</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>6250000</UserModeTime><KernelModeTime>1155781250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84629878 <Record id = "132" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84629878"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>96</ProcessUtilization><SystemIdle>1</SystemIdle><UserModeTime>8281250</UserModeTime><KernelModeTime>1150312500</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84569766 <Record id = "131" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84569766"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>94</ProcessUtilization><SystemIdle>3</SystemIdle><UserModeTime>5156250</UserModeTime><KernelModeTime>1127968750</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84509738 <Record id = "130" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84509738"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>90</ProcessUtilization><SystemIdle>6</SystemIdle><UserModeTime>5625000</UserModeTime><KernelModeTime>1084687500</KernelModeTime><PageFaults>59</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84449704 <Record id = "129" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84449704"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>90</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>5937500</UserModeTime><KernelModeTime>1077812500</KernelModeTime><PageFaults>771</PageFaults><WorkingSetDelta>2912256</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84414707 <Record id = "128" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84414707"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-46</PageFaults><WorkingSetDelta>-147456</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84409696 <Record id = "127" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84409696"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>90</ProcessUtilization><SystemIdle>6</SystemIdle><UserModeTime>1093750</UserModeTime><KernelModeTime>271406250</KernelModeTime><PageFaults>690</PageFaults><WorkingSetDelta>2764800</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84389684 <Record id = "126" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84389684"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>16</ProcessUtilization><SystemIdle>79</SystemIdle><UserModeTime>5468750</UserModeTime><KernelModeTime>194062500</KernelModeTime><PageFaults>8760</PageFaults><WorkingSetDelta>28860416</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84389684 <Record id = "125" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84389684"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-11040</PageFaults><WorkingSetDelta>-28852224</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84329685 <Record id = "124" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84329685"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84269692 <Record id = "123" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84269692"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84209700 <Record id = "122" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84209700"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84149708 <Record id = "121" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84149708"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84089715 <Record id = "120" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84089715"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>60</ProcessUtilization><SystemIdle>36</SystemIdle><UserModeTime>2656250</UserModeTime><KernelModeTime>722343750</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>-28672</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84029711 <Record id = "119" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84029711"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>51</ProcessUtilization><SystemIdle>43</SystemIdle><UserModeTime>7187500</UserModeTime><KernelModeTime>611718750</KernelModeTime><PageFaults>1739</PageFaults><WorkingSetDelta>20480</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84009711 <Record id = "118" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84009711"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-1955</PageFaults><WorkingSetDelta>-20480</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 84004713 <Record id = "117" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="84004713"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-1955</PageFaults><WorkingSetDelta>-20480</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83969698 <Record id = "116" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83969698"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83909706 <Record id = "115" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83909706"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83849713 <Record id = "114" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83849713"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83789720 <Record id = "113" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83789720"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>43</ProcessUtilization><SystemIdle>54</SystemIdle><UserModeTime>4062500</UserModeTime><KernelModeTime>514062500</KernelModeTime><PageFaults>61</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83744714 <Record id = "112" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83744714"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-11</PageFaults><WorkingSetDelta>-4096</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83739712 <Record id = "111" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83739712"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-11</PageFaults><WorkingSetDelta>-4096</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83734711 <Record id = "110" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83734711"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>87</ProcessUtilization><SystemIdle>8</SystemIdle><UserModeTime>468750</UserModeTime><KernelModeTime>87500000</KernelModeTime><PageFaults>5</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83729713 <Record id = "109" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83729713"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>17</ProcessUtilization><SystemIdle>79</SystemIdle><UserModeTime>3281250</UserModeTime><KernelModeTime>204375000</KernelModeTime><PageFaults>739</PageFaults><WorkingSetDelta>258048</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83724713 <Record id = "108" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83724713"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-1029</PageFaults><WorkingSetDelta>32493568</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83669719 <Record id = "107" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83669719"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83609726 <Record id = "106" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83609726"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>33</ProcessUtilization><SystemIdle>63</SystemIdle><UserModeTime>5156250</UserModeTime><KernelModeTime>392656250</KernelModeTime><PageFaults>262</PageFaults><WorkingSetDelta>-32751616</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83569737 <Record id = "105" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83569737"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>96</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>1093750</UserModeTime><KernelModeTime>95312500</KernelModeTime><PageFaults>17</PageFaults><WorkingSetDelta>49152</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83559744 <Record id = "104" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83559744"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-35</PageFaults><WorkingSetDelta>192512</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83549737 <Record id = "103" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83549737"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>6093750</UserModeTime><KernelModeTime>1169218750</KernelModeTime><PageFaults>178</PageFaults><WorkingSetDelta>-155648</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83544718 <Record id = "102" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83544718"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>781250</UserModeTime><KernelModeTime>195468750</KernelModeTime><PageFaults>10</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83529662 <Record id = "101" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83529662"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-138</PageFaults><WorkingSetDelta>12288</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83519615 <Record id = "100" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83519615"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-97</PageFaults><WorkingSetDelta>57344</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83514624 <Record id = "99" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83514624"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-97</PageFaults><WorkingSetDelta>57344</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83499628 <Record id = "98" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83499628"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>93</ProcessUtilization><SystemIdle>3</SystemIdle><UserModeTime>59687500</UserModeTime><KernelModeTime>12989687500</KernelModeTime><PageFaults>705</PageFaults><WorkingSetDelta>49152</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83489571 <Record id = "97" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83489571"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>5156250</UserModeTime><KernelModeTime>1168906250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83429485 <Record id = "96" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83429485"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>5468750</UserModeTime><KernelModeTime>1163750000</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83369459 <Record id = "95" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83369459"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>5468750</UserModeTime><KernelModeTime>1164531250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83309426 <Record id = "94" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83309426"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>97</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>5781250</UserModeTime><KernelModeTime>1163593750</KernelModeTime><PageFaults>59</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83249416 <Record id = "93" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83249416"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>96</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>5312500</UserModeTime><KernelModeTime>1154843750</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83189376 <Record id = "92" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83189376"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>95</ProcessUtilization><SystemIdle>2</SystemIdle><UserModeTime>5000000</UserModeTime><KernelModeTime>1146250000</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83129193 <Record id = "91" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83129193"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>94</ProcessUtilization><SystemIdle>3</SystemIdle><UserModeTime>4843750</UserModeTime><KernelModeTime>1132031250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83069126 <Record id = "90" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83069126"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>93</ProcessUtilization><SystemIdle>4</SystemIdle><UserModeTime>3906250</UserModeTime><KernelModeTime>1114062500</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 83009112 <Record id = "89" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="83009112"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>90</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>4062500</UserModeTime><KernelModeTime>1077812500</KernelModeTime><PageFaults>59</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82949130 <Record id = "88" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82949130"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>87</ProcessUtilization><SystemIdle>9</SystemIdle><UserModeTime>6093750</UserModeTime><KernelModeTime>1046718750</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82889131 <Record id = "87" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82889131"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>86</ProcessUtilization><SystemIdle>10</SystemIdle><UserModeTime>5468750</UserModeTime><KernelModeTime>1035781250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82829140 <Record id = "86" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82829140"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>87</ProcessUtilization><SystemIdle>9</SystemIdle><UserModeTime>5781250</UserModeTime><KernelModeTime>1042812500</KernelModeTime><PageFaults>7333</PageFaults><WorkingSetDelta>27795456</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82799139 <Record id = "85" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82799139"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-34</PageFaults><WorkingSetDelta>-102400</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82794137 <Record id = "84" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82794137"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>88</ProcessUtilization><SystemIdle>8</SystemIdle><UserModeTime>1093750</UserModeTime><KernelModeTime>175312500</KernelModeTime><PageFaults>367</PageFaults><WorkingSetDelta>1462272</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82779139 <Record id = "83" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82779139"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-26240</PageFaults><WorkingSetDelta>-40124416</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82769022 <Record id = "82" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82769022"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>6</ProcessUtilization><SystemIdle>85</SystemIdle><UserModeTime>17968750</UserModeTime><KernelModeTime>55781250</KernelModeTime><PageFaults>8949</PageFaults><WorkingSetDelta>18870272</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82708960 <Record id = "81" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82708960"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>1</ProcessUtilization><SystemIdle>95</SystemIdle><UserModeTime>8281250</UserModeTime><KernelModeTime>6718750</KernelModeTime><PageFaults>5511</PageFaults><WorkingSetDelta>19394560</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82648968 <Record id = "80" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82648968"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82588975 <Record id = "79" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82588975"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82528982 <Record id = "78" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82528982"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82468990 <Record id = "77" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82468990"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>64</PageFaults><WorkingSetDelta>12288</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82408997 <Record id = "76" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82408997"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82349005 <Record id = "75" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82349005"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>64</PageFaults><WorkingSetDelta>-385024</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82289012 <Record id = "74" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82289012"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82229020 <Record id = "73" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82229020"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>63</PageFaults><WorkingSetDelta>-11390976</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82169027 <Record id = "72" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82169027"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>-16384</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82109035 <Record id = "71" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82109035"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 82049042 <Record id = "70" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="82049042"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81989050 <Record id = "69" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81989050"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81929057 <Record id = "68" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81929057"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81869065 <Record id = "67" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81869065"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81809072 <Record id = "66" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81809072"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81749079 <Record id = "65" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81749079"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>62</PageFaults><WorkingSetDelta>4096</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81689087 <Record id = "64" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81689087"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81629094 <Record id = "63" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81629094"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81569102 <Record id = "62" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81569102"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81509109 <Record id = "61" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81509109"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81449117 <Record id = "60" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81449117"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>156250</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>-10162176</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81389124 <Record id = "59" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81389124"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81329131 <Record id = "58" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81329131"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81269139 <Record id = "57" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81269139"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81209146 <Record id = "56" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81209146"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81149154 <Record id = "55" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81149154"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81089162 <Record id = "54" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81089162"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 81029169 <Record id = "53" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="81029169"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80969176 <Record id = "52" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80969176"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80909184 <Record id = "51" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80909184"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80849191 <Record id = "50" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80849191"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80789199 <Record id = "49" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80789199"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80729206 <Record id = "48" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80729206"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80669214 <Record id = "47" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80669214"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80609221 <Record id = "46" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80609221"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80549228 <Record id = "45" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80549228"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80489236 <Record id = "44" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80489236"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>61</PageFaults><WorkingSetDelta>4096</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80429243 <Record id = "43" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80429243"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80369251 <Record id = "42" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80369251"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80309258 <Record id = "41" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80309258"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80249266 <Record id = "40" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80249266"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>94</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>156250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80189273 <Record id = "39" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80189273"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80129280 <Record id = "38" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80129280"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80069288 <Record id = "37" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80069288"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 80009295 <Record id = "36" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="80009295"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79949303 <Record id = "35" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79949303"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79889310 <Record id = "34" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79889310"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>97</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79829318 <Record id = "33" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79829318"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>98</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79769325 <Record id = "32" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79769325"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>43</ProcessUtilization><SystemIdle>54</SystemIdle><UserModeTime>2187500</UserModeTime><KernelModeTime>520781250</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>-4730880</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79709332 <Record id = "31" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79709332"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>65</ProcessUtilization><SystemIdle>31</SystemIdle><UserModeTime>4687500</UserModeTime><KernelModeTime>798906250</KernelModeTime><PageFaults>71</PageFaults><WorkingSetDelta>-401408</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79648355 <Record id = "30" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79648355"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>88</ProcessUtilization><SystemIdle>9</SystemIdle><UserModeTime>4687500</UserModeTime><KernelModeTime>1058593750</KernelModeTime><PageFaults>116</PageFaults><WorkingSetDelta>-1662976</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79588359 <Record id = "29" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79588359"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>92</ProcessUtilization><SystemIdle>5</SystemIdle><UserModeTime>7500000</UserModeTime><KernelModeTime>1097343750</KernelModeTime><PageFaults>1889</PageFaults><WorkingSetDelta>4694016</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79543364 <Record id = "28" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79543364"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>90</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>28750000</UserModeTime><KernelModeTime>6288281250</KernelModeTime><PageFaults>3361</PageFaults><WorkingSetDelta>6144000</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79528340 <Record id = "27" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79528340"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>90</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>5468750</UserModeTime><KernelModeTime>1081250000</KernelModeTime><PageFaults>331</PageFaults><WorkingSetDelta>-937984</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79468346 <Record id = "26" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79468346"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>92</ProcessUtilization><SystemIdle>5</SystemIdle><UserModeTime>5156250</UserModeTime><KernelModeTime>1106875000</KernelModeTime><PageFaults>403</PageFaults><WorkingSetDelta>-835584</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79408339 <Record id = "25" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79408339"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>92</ProcessUtilization><SystemIdle>5</SystemIdle><UserModeTime>5000000</UserModeTime><KernelModeTime>1107343750</KernelModeTime><PageFaults>386</PageFaults><WorkingSetDelta>921600</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79348230 <Record id = "24" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79348230"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>92</ProcessUtilization><SystemIdle>5</SystemIdle><UserModeTime>4375000</UserModeTime><KernelModeTime>1105312500</KernelModeTime><PageFaults>703</PageFaults><WorkingSetDelta>2633728</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79288209 <Record id = "23" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79288209"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>89</ProcessUtilization><SystemIdle>8</SystemIdle><UserModeTime>5312500</UserModeTime><KernelModeTime>1070937500</KernelModeTime><PageFaults>890</PageFaults><WorkingSetDelta>2715648</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79228124 <Record id = "22" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79228124"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>66</ProcessUtilization><SystemIdle>29</SystemIdle><UserModeTime>7187500</UserModeTime><KernelModeTime>788906250</KernelModeTime><PageFaults>3422</PageFaults><WorkingSetDelta>9412608</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79188134 <Record id = "21" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79188134"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-5643</PageFaults><WorkingSetDelta>-11755520</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79168131 <Record id = "20" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79168131"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>32</ProcessUtilization><SystemIdle>64</SystemIdle><UserModeTime>7812500</UserModeTime><KernelModeTime>387343750</KernelModeTime><PageFaults>270</PageFaults><WorkingSetDelta>143360</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79108139 <Record id = "19" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79108139"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>18</ProcessUtilization><SystemIdle>78</SystemIdle><UserModeTime>19843750</UserModeTime><KernelModeTime>206406250</KernelModeTime><PageFaults>291</PageFaults><WorkingSetDelta>102400</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 79048146 <Record id = "18" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="79048146"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>29</ProcessUtilization><SystemIdle>67</SystemIdle><UserModeTime>14218750</UserModeTime><KernelModeTime>345312500</KernelModeTime><PageFaults>282</PageFaults><WorkingSetDelta>348160</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78988153 <Record id = "17" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78988153"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>33</ProcessUtilization><SystemIdle>63</SystemIdle><UserModeTime>5000000</UserModeTime><KernelModeTime>401250000</KernelModeTime><PageFaults>475</PageFaults><WorkingSetDelta>1691648</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78928161 <Record id = "16" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78928161"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>95</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>312500</KernelModeTime><PageFaults>167</PageFaults><WorkingSetDelta>405504</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78868168 <Record id = "15" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78868168"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>0</ProcessUtilization><SystemIdle>96</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>312500</KernelModeTime><PageFaults>105</PageFaults><WorkingSetDelta>176128</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78808175 <Record id = "14" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78808175"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>25</ProcessUtilization><SystemIdle>72</SystemIdle><UserModeTime>1562500</UserModeTime><KernelModeTime>303125000</KernelModeTime><PageFaults>60</PageFaults><WorkingSetDelta>-8192</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78753185 <Record id = "13" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78753185"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>90</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>4062500</UserModeTime><KernelModeTime>987968750</KernelModeTime><PageFaults>55</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78748193 <Record id = "12" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78748193"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>83</ProcessUtilization><SystemIdle>10</SystemIdle><UserModeTime>5156250</UserModeTime><KernelModeTime>1082187500</KernelModeTime><PageFaults>1140</PageFaults><WorkingSetDelta>831488</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78688081 <Record id = "11" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78688081"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-957</PageFaults><WorkingSetDelta>-61440</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78683090 <Record id = "10" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78683090"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>53</ProcessUtilization><SystemIdle>42</SystemIdle><UserModeTime>4218750</UserModeTime><KernelModeTime>637343750</KernelModeTime><PageFaults>961</PageFaults><WorkingSetDelta>73728</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78638099 <Record id = "9" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78638099"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>89</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>3437500</UserModeTime><KernelModeTime>894375000</KernelModeTime><PageFaults>50</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78623098 <Record id = "8" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78623098"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>79</ProcessUtilization><SystemIdle>16</SystemIdle><UserModeTime>6406250</UserModeTime><KernelModeTime>950937500</KernelModeTime><PageFaults>1018</PageFaults><WorkingSetDelta>397312</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78583072 <Record id = "7" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78583072"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-1168</PageFaults><WorkingSetDelta>-757760</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78563064 <Record id = "6" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78563064"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>39</ProcessUtilization><SystemIdle>58</SystemIdle><UserModeTime>1875000</UserModeTime><KernelModeTime>469375000</KernelModeTime><PageFaults>176</PageFaults><WorkingSetDelta>323584</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78513072 <Record id = "5" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78513072"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-19</PageFaults><WorkingSetDelta>-36864</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78508074 <Record id = "4" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78508074"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-19</PageFaults><WorkingSetDelta>-36864</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78503075 <Record id = "3" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78503075"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>87</ProcessUtilization><SystemIdle>7</SystemIdle><UserModeTime>8437500</UserModeTime><KernelModeTime>1045000000</KernelModeTime><PageFaults>5867</PageFaults><WorkingSetDelta>19615744</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78503075 <Record id = "2" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78503075"><SchedulerMonitorEvent><DeadlockedSchedulersEnd><Node>0</Node><ProcessUtilization>93</ProcessUtilization><SystemIdle>3</SystemIdle><UserModeTime>2343750</UserModeTime><KernelModeTime>838281250</KernelModeTime><PageFaults>45</PageFaults><WorkingSetDelta>0</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersEnd></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78453078 <Record id = "1" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78453078"><SchedulerMonitorEvent><DeadlockedSchedulersBegin><Node>0</Node><ProcessUtilization>100</ProcessUtilization><SystemIdle>0</SystemIdle><UserModeTime>0</UserModeTime><KernelModeTime>0</KernelModeTime><PageFaults>-28064</PageFaults><WorkingSetDelta>-107360256</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></DeadlockedSchedulersBegin></SchedulerMonitorEvent></Record>
0x0000000000C249A0 RING_BUFFER_SCHEDULER_MONITOR 78443079 <Record id = "0" type ="RING_BUFFER_SCHEDULER_MONITOR" time ="78443079"><SchedulerMonitorEvent><SystemHealth><ProcessUtilization>1</ProcessUtilization><SystemIdle>95</SystemIdle><UserModeTime>3437500</UserModeTime><KernelModeTime>8593750</KernelModeTime><PageFaults>6029</PageFaults><WorkingSetDelta>22028288</WorkingSetDelta><MemoryUtilization>100</MemoryUtilization></SystemHealth></SchedulerMonitorEvent></Record>
(144 row(s) affected)
|||There does not seem to be a memory problem -- less than 5GB of the said 16 is being used. Server is definitely hogging the CPU.
Can you also please attach the output of dbcc sqlperf (spinlockstats)?
Thanks ,Ron D.
|||Here is the information (only those records are shown that had any value in it):