Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Overhead of Statspack at Level 7 in 10gR2 with RAC
Hi Tim, Folks
What would be the Overhead of taking statspack snapshots at Level 7 (using the following 2 Statspack parameter) Sets for a RAC 10gR2 setup?
Is it ill-advised to collect Statspack Snapshots while taking final readings of Performance Benchmark Runs (OLTP & Batch nature of Transactions) as it may affect the Transaction per second (TPS) Results?
Statspack at default Level of 5 seemingly has negligible Overhead.
SQL Trace seemingly has a 25% Overhead approx.
Cheers
Vivek
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Tim Gorman
Sent: Wednesday, February 07, 2007 2:20 AM
Vivek,
I'd continue to recommend the settings of "spparms.sql" for busy applications. Yes, the definition of "busy" is completely subjective. For "quiet" or low-intensity environments in terms of resource utilization, I'd recommend leaving the thresholds at their default and changing only the two following things:
PARAMETER SET 1 for "Quiet" applications
exec statspack.modify_statspack_parameter( - i_snap_level => 7, - i_seg_itl_waits_th => 1) PARAMETER SET 2 for "Busy" applications exec statspack.modify_statspack_parameter( - i_snap_level => 7, ->
> i_executions_th => 1000, -
> i_parse_calls_th => 1000, -
> i_disk_reads_th => 10000, -
> i_buffer_gets_th => 100000, -
> i_sharable_mem_th => 1048576, -
> i_version_count_th => 20, -
> i_seg_itl_waits_th => 1)
...
Thanks!
-Tim
On Wed, 7 Feb 2007 01:47:00 +0530, VIVEK_SHARMA wrote
> Thanks Tim as always for the support & explanation in such simple
language.
>
> It worked. I simply executed "exec statspac.snap" from the 2nd
instance & the 2nd started appearing thereafter in the sprepins.sql
Output
> Would you still recommend the following parameters (as picked up from
your site) for RAC with 10gR2 & advised by Barbara?
> exec statspack.modify_statspack_parameter( -
> i_snap_level => 7, -
> i_executions_th => 1000, -
> i_parse_calls_th => 1000, -
> i_disk_reads_th => 10000, -
> i_buffer_gets_th => 100000, -
> i_sharable_mem_th => 1048576, -
> i_version_count_th => 20, -
> i_seg_itl_waits_th => 1)
>
> NOTE - We aim to collect Statspack for Benchmark Runs on a Hybrid
Banking Application product
![]() |
![]() |