Siebel Performance Tuning Guide > Tuning the Siebel Server Infrastructure >

Configuring SISNAPI Connection Pooling for Siebel Application Object Manager


This topic provides information about how to manage Siebel Internet Session Network Application Programming Interface (SISNAPI) connections for your Siebel Server.

SISNAPI is a messaging format that runs on top of the TCP/IP protocol, is used for network communication between Siebel Application Object Manager and Siebel Web Server Extension (SWSE), installed on the Web server. SISNAPI connections can be configured to use encryption and authentication based on Secure Sockets Layer (SSL).

Each multithreaded process for a Siebel Application Object Manager component uses a pool of SISNAPI connections managed by the SWSE. The process multiplexes (shares) many client sessions over each connection.

Each client session request opens a new connection and adds it to the pool, until the number of connections defined by the value of the parameter SessPerSisnConn have been created. Subsequent requests are then multiplexed over the existing pooled connections. SISNAPI connections persist until one of the following events occur:

  • Web server process terminates.
  • Siebel Application Object Manager component terminates.
  • Value of the parameter SISNAPI Connection Maximum Idle Time (alias ConnIdleTime) is reached. For more information on this parameter, see Siebel System Administration Guide.
  • Your firewall times out the connection.

Multiplexing traffic over a set of SISNAPI connections helps to reduce the number of open network connections.

The SISNAPI connection pool size per multithreaded process for a Siebel Application Object Manager is determined by the combined settings of MaxTasks, MaxMTServers, and SessPerSisnConn.

SessPerSisnConn determines how many sessions can be multiplexed over a single SISNAPI connection. By default, SessPerSisnConn is set to 20 for Siebel Application Object Manager components. This figure is suitable for most deployments and generally does not need to be changed. You might set this differently, depending on how you have calculated think time. For details, see Performance Factors for Siebel Application Object Manager Deployments. For more information about configuring MaxTasks and MaxMTServers, see Tuning Siebel Application Object Manager Components for CPU and Memory Utilization.

The number of actual SISNAPI connections per multithreaded process for the Siebel Application Object Manager is determined by the following formula:

(MaxTasks divided by MaxMTServers) divided by SessPerSisnConn = SISNAPI_conn_per_process

where SISNAPI_conn_per_process represents the number of SISNAPI connections per multithreaded process.

Assume, for example, the following parameter values:

MaxTasks = 600

MaxMTServers = 5

SessPerSisnConn = 20

In this case, the formula would be:

(600 divided by 5) divided by 20 = 120 divided by 20 = 6

Or, if MaxTasks = 540 and SessPerSisnConn = 18, then the formula would be:

(540 divided by 5) divided by 18 = 108 divided by 18 = 6

In each case, six SISNAPI connections will be created and pooled for each Siebel Application Object Manager multithreaded process, from each SWSE. Each Web server and SWSE can potentially have its own set of six connections, so the maximum total number of connections into a Siebel Application Object Manager process is six times the number of Web servers. In the first example, 20 sessions would be multiplexed over each connection. In the second example, 18 would be multiplexed over each connection.

NOTE:  In general, it is recommended that the figures used for the formula be tailored to produce an end result that is an integer. To achieve this, you might need to modify how you define MaxTasks, MaxMTServers, and SessPerSisnConn.

Some Object Manager components are not Siebel Application Object Manager components. Configuration issues for such components can differ from that applicable to Siebel Application Object Manager components. For information about the EAI Object Manager, see Tuning Siebel EAI.

Siebel Performance Tuning Guide Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Legal Notices.