Code Profiling in Oracle
Code Profiling in Oracle
Why profile?
Oracle Profiling
DBMS_SESSION
DBMS_SESSION has many useful utilities but
the one we are interested in for profiling is:
SET_INDENTIFIER
– Set a user or session name
– Set to application user if possible
– Can be set via logon trigger, JDBC or OCI
– 64 bytes of case-sensitive, free form text
DBMS_SESSION.SET_IDENTIFIER ('Lewis');
Slide 8
DBMS_APPLICATION_INFO
DBMS_APPLICATION_INFO provides several
procedures that are useful for profiling:
SET_MODULE
– Set a module name
– Module is similar to business activity
– MODULE_NAME is 48 bytes of free form text
– Can be NULL
– Can also set an optional ACTION_NAME at the
same time
Slide 9
DBMS_APPLICATION_INFO
DBMS_APPLICATION_INFO provides several
procedures that are useful for profiling:
SET_ACTION
– An action within a module
– Actions are the individual steps within a
procedure
– Every line in the procedure does NOT need to
be an action, but can be
– ACTION_NAME is 32 bytes of free form text
– Can be NULL
Slide 10
DBMS_APPLICATION_INFO
BEGIN
DBMS_APPLICATION_INFO.set_module(
module_name=>'HR_Add_a_bunch_of_loops',
action_name=>'Begin');
DBMS_APPLICATION_INFO.set_action(
action_name=>'Loop 1000000 times');
-- Loop 1000000 times
FOR i IN 1..1000000
LOOP
v_num_variable := v_num_variable + 1;
END LOOP;
END;
Slide 11
DBMS_MONITOR
DBMS_MONITOR offers several procedures
to assist with profile and statistics gathering.
While there are several useful procedures, I
will concentrate on just two.
CLIENT_ID_STAT_ENABLE
– Gathers statistics for job monitoring
– Dynamic performance stats
DBMS_MONITOR.
client_id=>client_id_stat_enable( 'Lewis');
Slide 12
DBMS_MONITOR
CLIENT_ID_STAT_ENABLE
select * from v$client_stats
Slide 13
DBMS_MONITOR
CLIENT_ID_TRACE_ENABLE
– Turns tracing on
– Equivalent of
●
alter session set events '10046 trace name context
forever, level 8' (or 12, depending)
– Tracing puts performance and diagnostic
information in a text file
DBMS_MONITOR.
DBMS_MONITOR.client_id_trace_enable(
client_id=> 'Lewis',
waits=>TRUE,
binds=>TRUE);
Slide 14
DBMS_MONITOR
CLIENT_ID_TRACE_ENABLE
Sample Trace File
Slide 15
trcsess
Combines multiple trace files into a single file
trcsess
trcsess [output=output_file_name] [session=session_id]
[clientid=client_id] [service=service_name]
[action=action_name] [module=module_name] [trace_files]
where
output specifies the file where the output is generated. If this
option is not specified, then standard output is used for the
output.
session consolidates the trace information for the session
specified.
clientid consolidates the trace information given client Id.
service consolidates the trace information for the given
service name.
action consolidates the trace information for the given action
name.
module consolidates the trace information for the given
module name.
trace_files is a list of all the trace file names. The wild card
character * can be used to specify the trace file names.
Slide 17
tkprof
Tkprof is the “pretty print” for trace files
tkprof
tkprof filename1 filename2 [waits=yes|no]
[sort=option] [print=n] [aggregate=yes|no]
[insert=filename3] [sys=yes|no]
[table=schema.table] [explain=user/password]
[record=filename4] [width=n]
tkprof
Slide 20
Tips
Use the DBMS_APPLICATION_INFO procedures
READ_MODULE and READ_ACTION to save off
previous values at the beginning of your routine
Sample Code
create or replace
PROCEDURE do_a_bunch_of_loops
AS
v_old_action VARCHAR2(32);
v_old_module VARCHAR2(48);
BEGIN
Slide 24
Sample Code
DBMS_APPLICATION_INFO.
READ_MODULE(
module_name=>v_old_module,
action_name=>v_old_action);
DBMS_APPLICATION_INFO.
set_module(
module_name=>
‘HR_Add_a_bunch_of_loops',
action_name=>'Begin');
Slide 25
Sample Code
DBMS_APPLICATION_INFO.
set_action(
action_name=>'Loop 1000000 times');
Sample Code
DBMS_OUTPUT.PUT_LINE(
'v_num_variable=' ||
to_char( v_num_variable ) );
DBMS_APPLICATION_INFO.
set_module(v_old_module,v_old_action);
END;
Slide 27
DBMS_MONITOR.client_id_stat_enable( 'Lewis');
DBMS_MONITOR.client_id_trace_enable(
'Lewis', TRUE, TRUE);
do_a_bunch_of_loops;
DBMS_MONITOR.client_id_stat_disable( 'Lewis');
DBMS_MONITOR.client_id_trace_disable( 'Lewis');
END;
Slide 28
Hotsos ILO
●
What is ILO?
– Open Source Instrumentation Library for Oracle
●
What does ILO do?
– ILO abstracts the DBMS_APPLICATION_INFO
and DBMS_SESSION calls into a higher level
library
– Developer’s don’t need to worry about when to
set a trace
●
What are the downsides to ILO?
– Requires SYSDBA to install/configure
– Uses internal objects (such as
SYS.Dbms_System.ksdddt;)
– You don’t own the code; it is released as LGPL
Slide 29
Hotsos ILO
●
Why use it? (from the read me)
●
With HOTSOS_ILO, you can track the performance of any
business task on your system, and you can report on
system performance in exactly the language your
management wants to hear: response time for specific
business tasks.
●
With HOTSOS_ILO, your Oracle trace files will be properly
time-scoped and won't contain unwanted events like the
'SQL*Net message from client‘s events that commonly
plague trace files.
●
HOTSOS_ILO contains hooks to other Hotsos tools that
allow you to do things like store response time histories and
report on performance trends for specific tasks, and profile
specific tasks or subtasks within large trace files.
Slide 30
Hotsos ILO
Is ILO that different from directly calling the Oracle
procedures?
– Not really. This blurb is from the readme:
All the application developer needs to do is mark the beginnings and
endings of business tasks. For example, imagine that a developer
is writing code that a user will later regard as code that adds an
employee to the HR database. Using HOTSOS_ILO, the developer
will mark the code path as follows:
BEGIN
HOTSOS_ILO_TASK.BEGIN_TASK(
'HR', 'Add employee', '', rec.name);
-- code to add the employee goes here
HOTSOS_ILO_TASK.END_TASK;
END;
– That doesn’t look much different, does it?
– ILO does not provide a trace file parser.
Slide 31
Summary
●
Instrument your code!
●
Instrumentation allows you to proactively look for
performance issues
●
Instrumentation allows you to better debug your
applications
●
Oracle provides plenty of instrumentation support
●
Third parties provide plenty of assistance in
instrumenting and parsing the resultant trace files
●
It’s really not hard once you do it
Slide 32