| Installing Upgrading Designing Configuring Deploying Monitoring Administering Troubleshooting Reference JBI Components | |
| Close Print View | |
| Configuring: Implementing Transparent Application Failover |
|
Configuring Java CAPS for SSL Support
Configuring Java CAPS Business Processes
Business Process and Element Properties Overview
Configuring Business Properties
Configuring General Properties
Configuring Business Process Attributes
Configuring Modeling Element Properties
Adding Logging and Alerts to an Element
Configuring Business Processes for XA Transactions
Persisting Reporting Data for Business Processes
Configuring a Business Process for Reporting Persistence
Configuring Database Connection Information
Creating a Business Process Database Table
Dropping a Business Process Database Table
Configuring BPM for the OCI Driver
System Requirements for the Oracle OCI driver
Configuring Environment Components for the Sun Business Process Manager
Configuring Sun Master Indexes (Repository)
Configuring Java CAPS Project Components for Application Adapters
Configuring Java CAPS Project Components for Communication Adapters
Configuring Java CAPS Project Components for Database Adapters
Configuring Java CAPS Project Components for Web Server Adapters
Configuring Java CAPS Environment Components for Application Adapters
Configuring Java CAPS Environment Components for Communications Adapters
Configuring Java CAPS Environment Components for Database Adapters
Configuring Java CAPS Environment Components for Web Server Adapters
Configuring SAP R/3 for the SAP BAPI Adapter
Configuring Secure Network Communications for SAP
Configuring Siebel EAI Workflows
Importing an SNA Custom Handshake Class
Configuring WebLogic for Asynchronous Communication
Configuring Master Index (Repository) Connectivity and Environments
Related Topics for Sun Adapter for Batch/FTP
Oracle RAC is an Oracle database that has two or more instances accessing a shared database using cluster technology. A cluster is a group of machines (or nodes) that work together to perform the same task. To support this architecture, two or more machines that host the database instances are linked by a high-speed interconnect to form the cluster. The interconnect is a physical network used as a means of communication between each node of the cluster.
After Oracle RAC is installed, the Transparent Application Failover (TAF) feature can be configured to ensure the highest levels of availability. TAF compliments all levels of the availability hierarchy. Applications and users are automatically and transparently reconnected to another system, applications and queries continue uninterrupted, and the login context is maintained. Oracle Net Services is configured to allow the listener on each database instance of RAC to failover in case of failure.
Note - Setting up the Oracle RAC/OPS system to test the TAF feature is
beyond the scope of this document. Please contact your DBA to set
up the Oracle RAC/OPS server with the configuration in the tnsnames.ora and
listener.ora files.
The OCI driver works in conjunction with the BPM Engine only. The Worklist Manager uses the DataDirect driver only.
For information about configuring tnsnames.ora to enable the TAF feature when using
the OCI driver, see Before You Begin.
Oracle client must be installed for OCI to work. Since the OCI driver establishes connectivity to the database based on a native C call, the same version of the Oracle client must be installed as packaged with BPM. Version conflicts for OCI would result in problems configuring the OCI driver with BPM.
tnsnames.ora file for TAF.
Below is an example of a tnsnames.ora file configured for a transparent application
failover (TAF).
Option 1: Connect time FAIL OVER and TAF
MY_CLUSTER =
(DESCRIPTION =
(FAILOVER = ON)
(LOAD_BALANCE = OFF)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = Node1)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = Node2)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = my_cluster.my_company.com)
(FAILOVER_MODE =
(TYPE = SELECT)
(METHOD = PRECONNECT)
(BACKUP=Node2)
)
)
)
Option 2: TAF configuration
MY_CLUSTER =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = Node1)(PORT = 1521))
(CONNECT_DATA =
(SERVICE_NAME = my_cluster.my_company.com)
(FAILOVER_MODE =
(TYPE = SELECT)
(METHOD = PRECONNECT)
(BACKUP = Node2)
)
)
)
In the above configuration, MY_CLUSTER has the knowledge of the two nodes that are configured to act as a cluster. The cluster should be configured to share the same disk by RAC/OPS.
In option 1, FAILOVER is set to ON and LOADBALANCE is set to OFF. This is the configuration for a connect time failover. In connect time failover, when the OCI driver tries to connect to Node1 and determines that the node is down, it connects to the other host in the Address list (Node2). Option 2 is shown only to illustrate configuring just the TAF feature in the OCI client. For BPM, both the connect time failover and the TAF configuration is required.
Configuring the TAF option involves adding Oracle Net parameters to the tnsnames.ora file and
the use of parameter values to ascertain the next step in the
failover process when one of the participating nodes encounters failure. The parameter that drives
the TAF option is the FAILOVER_MODE under the CONNECT_DATA section of a connect
descriptor. By using one or more of the following parameters, the full functionality
of TAF can be achieved.
|