About Dead Connection Detection, Resource Limits, V $ SESSION, V $

Source: Internet
Author: User
Tags dedicated server

Applies to: Oracle Database-Enterprise Edition-Version 8.0.3.0 and later
Oracle Net Services-Version 9.2.0.1 and later
Information in this document applies to any platform.
Goal

Discuss what can be expected when implementing Dead Connection Detection (DCD) along with Database Resource Limits with user Profiles, inactive sessions and the effects on V $ SESSION, V $ PROCESS and OS processes

Solution

Dead Connection Detection (DCD)

These are previusly valid connections with the database but the connection between the client and server processes has terminated abnormally.
Examples of a dead connection:
-A user reboots/turns-off their machine without logging off or disconnecting from the database.
-A network problem prevents communication between the client and the server.

In these cases, the shadow process running on the server and the session in the database may not terminate.

Implemented
* Adding SQLNET. EXPIRE_TIME = <MINUTES> to the sqlnet. ora file

With DCD is enabled, the Server-side process sends a small 10-byte packet to the client process after the duration of the time interval specified in minutes by the SQLNET. EXPIRE_TIME parameter.

If the client side connection is still connected and responsive, the client sends a response packet back to the database server, resetting the timer .. and another packet will be sent when next interval expires (assuming no other activity on the connection ).

If the client fails to respond to the DCD probe packet
* The Server side process is marked as a dead connection and
* PMON performs the clean up of the database processes/resources
* The client OS processes are terminated

NOTE: SQLNET. RECV_TIMEOUT can be set on the SERVER side sqlnet. ora file. This will set a timeout for the server process
To wait for data from the client process.

Inactive Sessions:

These are sessions that remain connected to the database with a status in v $ session of INACTIVE.
Example of an INACTIVE session:
-A user starts a program/session, then leaves it running and idle for an extended period of time.


Database Resource Limits (using user profiles)

Implemented
* Setting RESOURCE_LIMIT = TRUE in the database startup parameter file (spfile or pfile)
* Creating or modifying existing user profiles (DBA_PROFILES) to have one or more resource limit
* Assigning a profile to a user whose resources are wished to be limited

It cocould happen that if the idle_time has been set on the DEFAULT profile, this can lead to an MTS dispatchers being set to 'sniped' and then getting 'cleaned' via the shell script. the removal of the dispatcher will result in other sessions 'dying '. in that case, If you are to implement resource limits, may be advisable to create new profiles
That be assigned to users and not to change the characteristics of DEFAULT.
Alternatively, if you do change DEFAULT, ensure that all the properties that you
Have affected have been fully tested in a development environment.

When a resource limit is exceeded (for example IDLE_TIME)... PMON does the following
* Mark the V $ SESSION as SNIPED
* Clean up the database resources for the session
* Remove the V $ SESSION entry

It is stronugly recommended that both DCD and Resource Limits with Profiles be implemented in order to clean up resources at both the database and OS level

This combinationWill notClean upIDLE/ABANDONED/INACTIVEConnections (OS processes) as these sessions still have active clients

For this case we will see that:
* PMON has cleaned up the V $ SESSION entries .. but both the OS processes and the V $ PROCESS entries will still exist
* SQLNET will continue to be able to send the 10 byte packet successfully until the session is logged off

This condition can be a major problem
* The database exhausts PROCESSES and gives ORA-20 maximum number of processes <num> exceeded
* The OS can become exhausted due to the unneeded resources consumed by the abandoned processes

The SYMPTOMS of this condition are
* The database view V $ PROCESS will have no corresponding V $ SESSION entry
* An OS process/thread still exists for the SNIPED session

The solutions to this scenario can are to cleanup the OS processes... after which the $ PROCESS entries shocould be removed automatically

Methods to cleanup OS processes:

* UNIX: kill-x... the OS process at the OS level (typically kill-9)
* UNIX: if using a dedicated server, use the following shell script to kill the shadow process (script has been tested on Solaris, AIX, Tru64 and HPUX ):
#! /Bin/sh
Tmpfile =/tmp. $
Sqlplus system/manager <EOF
Spool $ tmpfile
Select p. spid from v \ $ process p, v \ $ session s
Where s. paddr = p. addr
And s. status = 'sniped ';
Spool off
EOF
For x in 'cat $ tmpfile | grep "^ [0123456789]"'
Do
Kill-9 $ x
Done
Rm $ tmpfile

NOTE: If you are running in a shared server environment, you need to be careful not to accidentally kill your dispatchers and/or shared servers. in Oracle 10.2 (or higher) a dedicated connections V $ SESSION + V $ PROCESS + OS Process can be cleaned up
Alter system disconnect session '<SID>, <SERIAL> 'immediate
At this point in versions prior to 10.2 and for shared server connections the only solution is to kill the session at the OS level (see Kill and ORAKILL above)
* Windows: use the orakill command... orakill <oracle sid> <Thread ID> (seeNote 69882.1 for details)

On occasions we see conditions where a database session has a V $ SESSION. STATUS = SNIPED... and the entry never goes away. this condition can be achieved by implementing Database Resource Limits + Profiles without DCD and allow the database session to exceed the limit in the profile


Summary of what was discussed here:

1) DCD initiates clean up of OS and database processes that have disconnected/terminated abnormally
2) DCDWill notInitiate clean up sessions that are still connected... but are idle/abandoned/inactive
3) Database Resource Limits + user Profiles clean up database resources for user sessions that exceed resource limits
4) Database Resource Limits + user ProfilesWill notClean up OS processes
5) If DCD and Database Resource Limits + user Profiles are used in combination ..DeadConnections OS and Database Resources will be cleaned up
6)IDLE/ABANDONED/INACTIVESessions OS processesWill notBe cleaned up even if DCD and Database Resource Limits + user Profiles are used in combination... these must be cleaned up manually

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.