I come from an operating system support and monitoring
background so I’ve always been aware of the manageability tools available in
Windows operating systems and the tools available on the market. I also have
learned that the native tools in windows have improved so much over the last
decade that anyone can build a relatively simple yet power monitoring process.
Performance Monitor,
System Monitor, or Reliability and Performance Monitor (or whatever we call it
next)
Performance Monitoring (or whatever we want to call it
today) has been introducing since Windows 3.51 and has gotten better over the
releases on subsequent Windows operating systems. It’s still relatively complex for users that
don’t understand operating systems components, but even with some basic
computer OS knowledge (i.e. I know what I CPU, RAM, and Disk is used for) you can
gather and understand some of the basic information performance statistics. In
our discussion, I’ll speak about SSIS related performance stats.
Data Collector Sets via Permon.exe |
What to Collect?
Adding SSIS Performance Counters |
This will depend heavily on what your role is and what needs
to be monitored from a performance standpoint. From a purely SSIS standpoint
(specifically SSIS 2008), I recommend the following performance counters to be
captured…
- SQLServer:SSIS Pipeline 10.0 - Buffers in use
- SQLServer:SSIS Pipeline 10.0 -Rows read
- SQLServer:SSIS Pipeline 10.0 -Buffers spooled
- SQLServer:SSIS Pipeline 10.0 - Rows written
- SQLServer:SSIS Service 10.0 – SSIS Package Instances
These five counters will give you a good view of the overall
performance of your SSIS package processing. Buffers represent the amount of
memory available to do SSIS work. So if you allocate 1MB for activity the
Buffers is use should present up to 1MB. This is useful because it tells you
how much memory is being used and if it has met the upper limit that has been
allocated. This gets a bit more complicated as you add more packages and run
them in parallel because if you allocate different amounts a memory between
packages it would be difficult to see if one package has maxed out is assigned
amount of memory. Its gets even more complicated if you commonly specify that DefaultMaxBufferRows exceeds the available
to the DefaultBufferRows in the
package setting. Because of this, we need to look at Buffers Spooled to see if we are sending SSIS work to disk (very
bad).
How Frequently?
What Format?
Overall
Get in the habit of using the native OS tools to help access
the performance issues within your BI environment. Although I spoke
specifically on SSIS, Data Collector sets can be created for other BI
applications SSAS and SSRS processing/usage as well.
No comments:
Post a Comment