6 Setting Up ASAP for High Availability
Learn how to set up ASAP for high availability.
This chapter describes how to set up and manage ASAP for high availability.
This chapter includes the following sections:
- Overview of Setting Up ASAP for High Availability
- About Order Balancer
- Connecting Order Balancer with Multiple ASAP Instances to a Remote Application
- Setting Up Order Balancer for High Availability
- Planning Your Installation
- Installing Order Balancer
- About Order Balancer JMS Queues
- Order Balancer Web Services
- About Member Instance States
- Managing Member Instances
- Importing ASAP Order Data into Order Balancer
- Purging Order Balancer Data
- Managing Order Balancer Logs
- Accessing and Updating Order Balancer using REST APIs
- Modifying Properties
- Uninstalling Order Balancer
- Updating and Redeploying Order Balancer
- Troubleshooting
Overview of Setting Up ASAP for High Availability
You can set up multiple instances of ASAP for high availability and upgrade them in succession with zero down-time. With multiple independent ASAP instances, you can distribute and balance the load. You can also deploy new ASAP instances with new cartridges in the same environment without down time.
You can set up your highly available ASAP environment using virtual machines. The database could be centrally located, with independent table spaces for each ASAP instance.
When you set up multiple ASAP instances, when an instance goes down, the incoming orders are routed to the other available running instances in the environment. Tasks such as routing the requests to the corresponding ASAP instance queue and monitoring the ASAP instance states are performed by Order Balancer. Order Balancer stores the Order ID-to-instance mapping information in its database. Based on the work order ID, a change order or a rollback order would be routed to the instance that initially processed that order.
Note:
Order Balancer does not generate IDs for orders. Order Balancer requires Order IDs for incoming orders.- Uninterrupted service: If an ASAP member instance goes down, new incoming orders are routed to the other available instances. The processing of the orders on the instance that is down would resume when the instance is restored.
- Zero-downtime for patching and deployment: You can install patches and deploy cartridges on one ASAP member instance while the other available instances in the environment process the incoming orders.
- Horizontal scaling: You can add additional ASAP member instances, which increases the throughput of the system.
- Server affinity: The follow-up requests (for example,
cancel request
andquery order
) for a previously submitted order are sent automatically to the same instance that initially processed them.
About Order Balancer
Order Balancer primarily consists of Order Balancer Queue, a queue where the requests from upstream systems are sent to. Order Balancer routes the requests to the registered ASAP instances and monitors the status of the instances.
- Non-Sticky: These are requests that are server-independent.
For example,
createOrderByValue
is a non-sticky request. - Sticky: These are requests that are server-dependent. For
example,
suspendOrderByKey
is a sticky request.
For list of supported sticky and non-sticky requests, see "Sticky and Non-Sticky Requests Supported by Order Balancer".
- Even distribution of create type orders (non-sticky) among the member instances. Order Balancer distributes orders to ASAP instances in a round-robin fashion.
- Zero order loss: When sending an order to a member instance fails, Order Balancer marks the member instance as down and attempts to send the same order to a member instance that is available.
- Order dependency: Order Balancer saves the details of the Order ID of an order and the instance that processed the order in the database. It caches these details locally on the server and to a database. The modify or rollback orders (sticky orders) are sent to the member instance fetched from the database for the current Order ID.
- Add a new member instance to or remove an existing member instance from Order Balancer.
- Instance health: When the sending of an order to a member instance fails, Order Balancer marks the member instance as down and polls for its state periodically. When the instance is reachable, Order Balancer automatically sets the member instance state to up and starts routing orders to it.
- Instance pausing: Pause and resume order flow to a specific instance for maintenance purposes.
The ASAP instances that you want to register with Order Balancer should have the same configuration and cartridges. Any instance can service any non-sticky request.
Connecting Order Balancer with Multiple ASAP Instances to a Remote Application
Oracle recommends that you create an SAF agent between Order Balancer, all ASAP WebLogic Servers, and the remote application WebLogic Server. Oracle recommends this SAF agent for JMS to ensure reliable communication.
Figure 6-1 illustrates SAF configuration between Order Balancer with multiple ASAP instances and a client on a remote application. In this illustration, OSM is used as an example of a remote application.
Figure 6-1 Connecting Order Balancer with Multiple ASAP Instances to a Remote Application
In this example, an OSM SAF agent sends requests to the Order Balancer request queue. Based on the order type in the requests, Order Balancer routes the requests to the message queue of the corresponding ASAP member instance. The ASAP instance processes the requests and returns responses through the ASAP SAF agent to the OSM reply-to queue. In case of exceptions in Order Balancer, such as ASAP server is down, and invalid order sent in the request, Order Balancer sends the error responses from Response Queue with an SAF agent to OSM reply-to-queue. Each ASAP member instance sends work order state changes from their respective JSRP XVTEventTopic through a JMS bridge with an SAF agent to the OSM event queue.
For detailed instructions on creating SAF and JMS bridges between ASAP and OSM, see the Configuring WebLogic Resources for OSM Integration With ASAP And UIM On Different Domains (Doc ID 1431235.1) knowledge article on My Oracle Support. This article is applicable to any remote application that uses a WebLogic JMS server to send and receive web service messages or JMS messages.
Note:
Order Balancer supports the OSS/J JMS interface and the web services interface for both traditional and cloud native deployments. Other interfaces such as Custom SRP, SRT and JVT (RMI) are not supported.Setting Up Order Balancer for High Availability
You can set up and run multiple Order Balancer instances for high availability. Each Order Balancer handles the requests for all the registered ASAP instances. For example, if two independent Order Balancer instances are running, Order Balancer OB1 fails, the other Order Balancer OB2 distributes the requests to all the registered ASAP instances. All the Order Balancer instances use the same database.
- How often do you perform administrative tasks?
- What is the optimum duration that data can be inconsistent across Order Balancer instances?
When you pause the ASAP instances for maintenance activities such as ASAP upgrade, you must wait until the CACHE_EXPIRY interval expires after the pause request and before proceeding with the maintenance activity on ASAP for the changes to reflect in all the Order Balancer instances.
Planning Your Installation
You can plan your installation based on the available resources and your business requirements.
WebLogic Server
You can install Order Balancer on an existing ASAP WebLogic Server or on a separate WebLogic Server. If you choose to install Order Balancer on an existing ASAP WebLogic Server, install it in a separate domain. If you choose to use a separate WebLogic Server, install WebLogic Server and create a domain for Order Balancer.
Database User
You can use the same database as the ASAP database or a different database. In both the cases, create a separate tablespace and a user.
For example:
create tablespace "OBDATA_TS" logging datafile '/u01/app/oracle/oradata/ASAP72/OBDATA_TS1.dbf' size 31999M reuse autoextend on next 5120K maxsize unlimited default storage (initial 256K next 256K minextents 1 maxextents 2147483645 pctincrease 0);
CREATE USER "OB_SYS_USR" PROFILE "DEFAULT" IDENTIFIED BY "OB_SYS_USR" DEFAULT TABLESPACE "OBDATA_TS" TEMPORARY TABLESPACE "TEMP" ACCOUNT UNLOCK;
GRANT UNLIMITED TABLESPACE TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT "CONNECT" TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT "RESOURCE" TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT CREATE VIEW TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT EXECUTE ON SYS.UTL_FILE TO "OB_SYS_USR" WITH GRANT OPTION;
GRANT CREATE PROCEDURE TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT CREATE TRIGGER TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT CREATE TABLE TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT CREATE TYPE TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT CREATE SEQUENCE TO "OB_SYS_USR" WITH ADMIN OPTION;
GRANT CREATE SESSION TO "OB_SYS_USR" WITH ADMIN OPTION;
For more details about creating tablespaces, users, and granting permissions, see "Creating Oracle Database Tablespaces, Tablespace User, and Granting Permissions".
Installing Order Balancer
You install Order Balancer by running the Order Balancer installer. The installer is a command line interface tool, which connects and deploys the Order Balancer application (ASAPOrderBalancer.ear) to the WebLogic Server and creates the required components such as a JMS server, JDBC resources, and wallet files. You run the installer in silent mode.
- JAVA_HOME: Java home path
- WEBLOGIC_HOME: WebLogic Server home path
- Go to the Oracle Software Delivery Cloud website:
- Download the ASAP.R7_4_0_Px.Byy.ob.tar file.
- Copy the tar file to the machine where the WebLogic Server, into
which Order Balancer needs to be deployed, is running.
Note:
In a distributed WebLogic Servers environment with Admin and Managed Servers running on different machines, to deploy Order Balancer in Managed Server, copy the installer to the machine where Managed Server is running. Run the installer on the same machine as the server. - Run the following command, which extracts the tar file:
tar -xvf ASAP.R7_4_0_Px.Byy.ob.tar
The components in the installer are extracted to the ob directory.
- In the ob directory, update the
sampleConfig.properties file with the values required for the
installation and save it as config.properties. For more details about the
properties, see Table 6-1.
Note:
- You can save the properties file with any name. In this chapter, config.properties is used as an example.
- To change the default configuration of Order Balancer application, add or modify variables in the OBPlan.xml deployment plan present in the ob_installer/plan directory before installing Order Balancer. For more information, see "Sample Variable Update XML Snippets".
- Navigate to the extracted ob directory.
cd ob_installer/ob
where ob_installer is the directory that contains the extracted files.
- Run the following command:
installOB –properties config.properties
The installer prompts for the required passwords.
- Enter the password.
The installer deploys Order Balancer. You can access installer logs from the logs folder or on the console.
Note:
To run the installer in demo (silent) mode, use the below syntax and configure password parameters in the input configuration file:installOB -properties config.properties -d
You can find the password parameters (commented) at the bottom of the config file. This mode should be used in a development environment only and not recommended for production environment.
- Secure store: The installer creates a new Oracle wallet as a secure store to store the ASAP member instance details. Oracle wallet is created in the WEBLOGIC_HOME/Domain_Path/oracle_communications/asap directory.
- Database tables: When Order Balancer is installed for the
first time, the tables are created in the database. If the ASAP member instance
data is also provided in the configuration properties file, then the installer
registers the instances to Order Balancer as well after it is deployed
successfully.
The installer creates the database table in a single transaction. If the installer fails to create the tables, the whole transaction is rolled back. You should then re-run the command for installing Order Balancer.
- WebLogic components: The installer creates the following
WebLogic Server components:
- Data Store
Name: System.ASAPOB.ApplicationType.ServiceActivation.Application;ASAP.Comp.OBDatasource
A new Data Store is created with the database configuration properties provided as input to the installer.
- JMS Components
- JMS server: asap_ob_jms_server
- JMS module: asap_ob_jms_module
- JMS queues. For details about the queues, see "About Order Balancer JMS Queues".
- User groupsThe following user groups are created as part of the default security realm. The groups are mapped to security roles. Order Balancer creates roles to restrict access to its members.
- ASAP_OB_USERS_GROUP: Members of this group can access the Order Balancer JMS queues. These members can send requests to Order Balancer. These members can also use scripts to add and remove instances and update instance states.
- ASAP_OB_REST_GROUP: Members of this group can access the Order Balancer RESTful API.
- ASAP_OB_WS_GROUP: Members of this group can access the Order Balancer Web Services API.
The installer adds the configured OB_USER user to all the above groups. You can also add more users to the corresponding groups.
- Data Store
Note:
On successful installation, installer saves some properties from input configuration properties at ob/scripts/OB.properties. These properties are used by instance management scripts as described in "Managing Member Instances".Table 6-1 lists the configuration properties that you should specify in the sampleConfig.properties file for installing Order Balancer.
Table 6-1 Configuration Properties
Parameter | Description |
---|---|
WLS_PROTOCOL | WebLogic Server protocol for Order Balancer.
For example, WLS_PROTOCOL=t3s. |
WLS_HOST | The host name or IP address of the Admin Server of the WebLogic Server (cluster). |
WLS_PORT | The port of the Admin Server. |
WLS_USERNAME | The username to log in to WebLogic Server |
WLS_TARGET_SERVER | The name of the server where you want to deploy Order Balancer. For example, AdminServer or ManagedServer1. |
WLS_SSL_ENABLED | Set this parameter to true if SSL is enabled on Order Balancer WebLogic Server. |
WLS_ALLOW_CRYPTO_JDEFAULT_PRNG | Set the JVM property
weblogic.security.allowCryptoJDefaultPRNG to connect to Order
Balancer WebLogic Server.
For example, WLS_ALLOW_CRYPTO_JDEFAULT_PRNG=true. |
WLS_IGNORE_HOSTNAME_VERIFICATION | Set the JVM property
weblogic.security.SSL.ignoreHostnameVerification to connect to Order
Balancer WebLogic Server.
For example, WLS_IGNORE_HOSTNAME_VERIFICATION=true. |
WLS_TRUST_KEYSTORE | Set the JVM property weblogic.security.TrustKeyStore
to connect to Order Balancer WebLogic Server.
For example, WLS_TRUST_KEYSTORE=CustomTrust. |
WLS_CUSTOM_TRUST_KEYSTORE_TYPE | Set the JVM property
weblogic.security.CustomTrustKeyStoreType to connect to Order
Balancer WebLogic Server.
For example, WLS_CUSTOM_TRUST_KEYSTORE_TYPE=JKS. |
WLS_CUSTOM_TRUST_KEYSTORE_FILE | Set the JVM property weblogic.security.CustomTrustKeyStoreFileName to connect to Order Balancer WebLogic Server. |
OB_ID | The unique ID for the Order Balancer application when multiple instances are run. This ID is used to create a unique JNDI Data Store for the JMS server for each Order Balancer in the database. |
OB_USER | The default JMS user that is created and used by Order Balancer. |
DB_HOST | The database host name or IP address |
DB_PORT | The database port |
DB_SERVICE_NAME | The database service name |
DB_USER | The database user name |
Table 6-2 lists the optional configuration parameters that you specify for installing Order Balancer.
Table 6-2 Optional Configuration Parameters
Parameter | Description |
---|---|
ASAP_MEMBER_COUNT | Number of ASAP instances you want to add for high
availability. The URL, Username and Password details are to be
provided for each instance that you want to add.
You can also add instances using scripts after the installation. For more information, see "Managing Member Instances". |
ASAP_URL_<x> |
The WebLogic Server URL of the ASAP instance. For example: ASAP_URL_1 = t3s://asap_host1:port1 ASAP_URL_2 = t3s://asap_host2:port2 |
ASAP_USER_<x> |
The WebLogic Server user for the ASAP instance. Example: ASAP_USER_1 = user |
ASAP_QUEUE_<x> |
The ASAP server queue. Example: ASAP_QUEUE_1 = System.<ENV_ID>.ApplicationType.ServiceActivation.Application.1-0;7-4;ASAP.Comp.MessageQueue |
CACHE_EXPIRY |
Duration in seconds that Order Balancer JPA shared/query refreshes the cache. The cache is refreshed upon the next request after the duration expires. For more information on this parameter, see Setting Up Order Balancer for High Availability. Default value: 60 |
SERVER_POLL_INTERVAL |
Order Balancer polls for the ASAP member instance state once it has been marked as down. Server poll interval is the duration in seconds Order Balancer waits before it retries to check the ASAP instance status. Default value: 60 |
SERVER_DOWN_RETRY_INTERVAL |
Duration in seconds Order Balancer waits before re-attempting to route the order to the same instance. If the re-attempt fails, the instance is marked as down. Default value: 2 |
ALL_SERVERS_DOWN_WAIT_INTERVAL |
Duration in seconds Order Balancer waits before putting the request back to queue when all the ASAP instances are down. Default value: 3600 |
ALL_SERVERS_DOWN_RETRY_INTERVAL |
Duration in seconds Order Balancer waits before retrying to connect to fetch for an active ASAP member instance while waiting when all servers are down. Default value: 120 |
LOGGER_LEVEL |
The log level for initializing the Order Balancer application root logger. The options are:
|
WEB_SERVICE_RESPONSE_WAIT_TIMEOUT |
Duration in seconds that Order Balancer waits for a response before the read times-out. Order Balancer Web Service waits for a response from the ASAP member instance after invoking the operation. A value of zero means Order Balancer will wait indefinitely until it receives a response from ASAP. Default value: 0 |
Note:
All the optional configuration parameters except WEB_SERVICE_RESPONSE_WAIT_TIMEOUT is applicable for both Web Services and JMS. WEB_SERVICE_RESPONSE_WAIT_TIMEOUT parameter is applicable only for Web Services.About Order Balancer JMS Queues
Order Balancer queues enable you to route the requests from upstream systems to Order Balancer, which distributes the requests among the ASAP instances for high availability. Table 6-3 describes the Order Balancer queues that the installer configures automatically.
Table 6-3 Order Balancer JMS Queues
JMS Resource | Queue | Description |
---|---|---|
Request Queue | System.ASAPOB.ApplicationType.ServiceActivation.Application;ASAP.Comp.OBRequestQueue | The input Queue to send ASAP orders to Order Balancer. |
Connection Factory | System.ASAPOB.ApplicationType.ServiceActivation.Application;ASAP.Comp.TopicConnectionFactory | This is the Order Balancer connection factory. |
Response Topic | System.ASAPOB.ApplicationType.ServiceActivation.Application;ASAP.Comp.ASAP.OBResponseTopic | In case of exceptions in Order Balancer and if the replyTo queue is not set in the incoming message, the exception responses are sent to this queue. |
Error Queue | System.ASAPOB.ApplicationType.ServiceActivation.Application;ASAP.Comp.OBErrorQueue | If the message delivery on request queue exceeds the queue's re-delivery limit, the message gets redirected to this queue. |
Order Balancer Web Services
Order Balancer provides the Web Services interface through which external applications can manage service activation activities and operations. The supported external transport protocols are HTTP and HTTPS and the data service formats are SOAP v1.1 and 1.2. Order Balancer Web Services are of type JAX-RPC.
Note:
Order requests must have Order IDs in the Order Balancer Web Service.
Web Services Interface
The Web Service interface is defined in the Web Service Definition Language (WSDL) file of the Order Balancer Web Services. Order Balancer exposes WLHttpTransport (HTTP) port interface using HTTP(S) protocol. Order Balancer Web Service supports only HTTP(s) protocol.
Type the following URL in your web browser and access the Order Balancer Web Services WSDL:
http://server:port/OB/Oracle/CGBU/Mslv/Asap/Ws/Http?WSDL
where:
- server is the Order Balancer server address.
- port is the port number of the Oracle WebLogic Server installation.
HTTP protocol is used for a handshake with the application server to authenticate and request a web service client stub, which is used as the launch pad to talk to Web Services. Then the client can communicate with the Order Balancer Web Services using HTTP or HTTPS protocols.
Security
Note:
WebLogic Server access control security only protects WebLogic Server resources and does not cover secure communication with Order Balancer Web Services. As a result, Order Balancer Web Service must use HTTPs to encrypt the SOAP messages for secure communication.All the Order Balancer Web Services are secured using Basic authentication. The users who are part of the ASAP_OB_WS_GROUP group can access Web Services. ASAP_OB_WS_GROUP group is created by the installer when the Order Balancer application is installed. The default user that is created when deploying Order Balancer is added as a member of ASAP_OB_WS_GROUP along with ASAP_OB_USERS_GROUP and ASAP_OB_REST_GROUP. This user is configurable in the installation properties file. For more information on the default user, see "About the Default User".
About Order Management Web Service Operations
For the list of supported and unsupported Web Services operations, see "Sticky and Non-Sticky Requests Supported by Order Balancer".
About Member Instance States
When routing a request to an ASAP member instance queue, Order Balancer attempts to connect to the instance queue using the connection factory details. If the connection attempt fails in the first attempt, Order Balancer reattempts the connection after the configured time interval. If the connection attempt fails again, Order Balancer marks the instance as down and sets the instance status to DOWN. If the request is a non-server dependent request, Order Balancer attempts to route the request to the next available instance.
Once an instance is marked as down, Order Balancer polls the instance for its status at the configured interval. After Order Balancer makes a successful connection to the member instance, the instance status is set to UP.
When a member instance is marked as down, no further requests are routed to
it until it is marked back to UP. When a sticky type of request comes in, but the
corresponding instance is down, then an error response with
serverDownException
type is sent to the Order Balancer's response
queue after two attempts. When all the instances are down, all the requests are blocked
by Order Balancer until at least one instance becomes available or till time-out. An
instance becomes available (state set to UP) when Order Balancer successfully
makes a connection in its periodical attempts.
Use the ALL_SERVERS_DOWN_WAIT_INTERVAL parameter to configure the duration of the time out interval. In case of time-out before at least one member instance becomes available, the request is forwarded to the error queue.
Managing Member Instances
You can add a new member instance to Order Balancer or remove an existing member instance from Order Balancer. When you add a member instance to Order Balancer, the instance is registered to Order Balancer. Upon successful addition, Order Balancer will start routing subsequent orders to the ASAP member instance.
The scripts for managing member instance are located in installer_location/ob/scripts directory.
For all the scripts mentioned below, the common Order Balancer WebLogic Server properties are taken from the ob/scripts/OB.properties file saved by the installer after successful installation.
when routing the order requests, Order Balancer connects to the ASAP instance using the respective ASAP user ID that is provided while adding ASAP instance. The ASAP user ID must be part of ASAP_WS_USER_GROUP for accessing Web Services and ASAP_Operators or Administrators for accessing ASAP JMS services. You can provide this ASAP user ID that is part of these two groups while adding the ASAP instance to Order Balancer. Order Balancer routes the upstream order requests to the registered ASAP member instances using the ASAP Web Services interface or the ASAP JMS queue based on the incoming channel.
Add ASAPServer
To add a new member instance to Order Balancer, run the addASAPServer script.
Usage:
addASAPServer -asapSrvName asap_Srv_Name -asapSrvURL asap_Srv_URL -asapSrvUser asap_Srv_User -asapSrvRequestQueue "asap_Srv_Request_Queue"
- asap_Srv_Name is the name of the ASAP instance that you want to register to Order Balancer. For example, use MY_ASAP1.
- asap_Srv_URL is the ASAP instance URL. For example, t3s://ASAP_HOST:ASAP_PORT.
- asap_Srv_User is the ASAP instance user name.
- asap_Srv_Request_Queue is the ASAP instance input JMS queue name. For example, for ASAP 7.4 with ENV ID A12, the queue name will be System.A12.ApplicationType.ServiceActivation.Application.1-0;7-4;ASAP.Comp.MessageQueue.
Change ASAPServer States
On the registered ASAP instances, for maintenance or for any other reason, you can perform actions such as pausing new requests, pausing all requests, and resuming the processing of requests to a given ASAP instance.
You can perform the following tasks using scripts provided with Order Balancer:
-
Pause routing any new non-sticky orders to the given instance. The Sticky orders are still routed to the instance. Order Balancer changes the order state to PAUSE-NEW. You can pause an instance for new orders even when it is down. New non-sticky Orders are not sent to this instance by Order Balancer until a further action of resume is performed. Use the pauseNewForASAPServer script to do this.
Usage:
pauseNewForASAPServer -asapSrvName asap_Srv_Name
where:- asap_Srv_Name is the name of the ASAP instance that you want to register to Order Balancer. For example, use MY_ASAP1.
-
Pause routing any new order (both sticky and non-sticky) to the given instance. Order Balancer changes the order state to PAUSE-ALL. Orders are not sent to this instance by Order Balancer until a further action of resume is performed. You can pause an instance for all orders only if it is paused for new non-sticky orders first. Use the pauseAllForASAPServer script to do this.
Usage:
pauseAllForASAPServer -asapSrvName asap_Srv_Name
where:- asap_Srv_Name is the name of the ASAP instance that you want to register to Order Balancer. For example, use MY_ASAP1.
-
Resume routing any new order (both sticky and non-sticky) to the given instance. Order Balancer changes the order state to UP. You can resume an instance for all orders only if it is paused for new non-sticky orders or paused for all orders first. An instance can be successfully resumed even if it is down but it will be marked as down if Order Balancer fails to send orders to the instance after resuming it. Use the resumeASAPServer script to do this.
Usage:
resumeASAPServer -asapSrvName asap_Srv_Name
where:- asap_Srv_Name is the name of the ASAP instance that you want to register to Order Balancer. For example, use MY_ASAP1.
Remove ASAPServer
Note:
When you want to remove or upgrade a member instance, it is recommended that you first run the pauseNewForASAPServer script and then run the pauseAllForASAPServer script to gracefully bring down a member instance.Usage:
removeASAPServer -asapSrvName asap_Srv_Name
- asap_Srv_Name is the name of the ASAP instance that you want to register to Order Balancer. For example, use MY_ASAP1.
Migrate ASAPServer to New URL
Note:
The ASAP instance should be in PAUSE-ALL state to run the migrate script. After successful migration, Order Balancer will route sticky orders to new ASAP instance whose dependent orders where previously processed by the old ASAP instance.Usage:
migrateASAPServer -migrateFromSrvName migrate_From_Srv_Name -migrateToSrvURL migrate_To_Srv_URL [-migrateToSrvUser migrate_To_Srv_User] [-migrateToSrvRequestQueue migrate_To_Srv_Request_Queue]
- migrate_From_Srv_Name is the registered name of the ASAP instance which needs to be migrated.
- migrate_To_Srv_URL is the ASAP instance URL to migrate to. For example, t3s://ASAP_HOST:ASAP_PORT.
- migrate_To_Srv_User (optional) is the ASAP instance user name to migrate to. If not given, existing credentials are used to connect to the new URL.
- migrate_To_Srv_Request_Queue (optional) is the ASAP instance Queue name to migrate to. If not given, existing queue name is used to connect to the new URL.
Order Balancer periodically checks the status of all the member instances that are down. When a member instance is up, Order Balancer adds it back to the round-robin distribution.
When you run the script for resuming an instance, the instance does not resume if the instance is marked as Pause_down. Order Balancer marks an instance as Pause_down if the instance is down. Order Balancer does not route requests to this instance until it is resumed, but it polls for the instance state. When the instance is restored, Order Balancer changes the state to previous state PAUSE-NEW. You can then resume the instance.
Importing ASAP Order Data into Order Balancer
Order Balancer saves order details in its database table for every ASAP instance that is registered. When Order Balancer receives a sticky order, it checks the saved data to determine the correct ASAP instance to route the order to. For a green-field ASAP instance (ASAP instance that did not process any order before), Order Balancer has all the order related data corresponding to the ASAP instance.
For a non-green field ASAP instance, ASAP contains order data in its database tables. When an instance is added to Order Balancer, Order Balancer will not have any ASAP data corresponding to the previous orders sent to ASAP. If a sticky order dependent on the previous orders is sent to ASAP directly, Order Balancer cannot route it to the corresponding ASAP instance unless the ASAP order data is copied to Order Balancer. All the orders should be copied from the ASAP database to the Order Balancer database when it is added to Order Balancer.
After adding an ASAP instance to Order Balancer, orders could be sent to Order Balancer and Order Balancer routes the orders accordingly. In some unpredicted cases, orders could also be sent to ASAP directly while it is still registered with Order Balancer, resulting in mismatched data between ASAP and Order Balancer. The data in the ASAP database and Order Balancer must be in sync when they are found to be out-of-sync after some orders are processed by Order Balancer and some by ASAP directly. Only those orders that are not present in Order Balancer need to be copied from ASAP to Order Balancer.
Prerequisites for Importing Order Data
To import order data from the ASAP database to Order Balancer, ensure that the ASAP instance that is registered with Order Balancer is in the PAUSE-ALL state.
Running the Script to Import Order Data in ASAP to Order Balancer
To import order data in ASAP to Order Balancer, run the following script:
importASAPData -properties <import.properties>
Note:
When you run the script, the script promts for the Order Balancer database password (DB_PASSWORD) and the ASAP SARM database password (ASAP_DB_PWD).Table 6-4 Configuration Properties
Property | Description |
---|---|
DB_HOST |
Order Balancer database host name or IP address. |
DB_PORT |
Order Balancer database port. |
DB_SERVICE_NAME |
Order Balancer database service name. |
DB_USER |
Order Balancer database user name (as configured while installing Order Balancer). |
ASAP_DB_HOST |
ASAP SARM database host name or IP address. |
ASAP_DB_PORT |
ASAP SARM database port. |
ASAP_DB_SERVICE_NAME |
ASAP SARM database service name. |
ASAP_DB_USER |
ASAP SARM database user name. |
ASAP_NAME |
Name of the ASAP instance as configured while adding to Order Balancer. |
ASAP_FROM_DATE ASAP_TO_DATE |
These are optional data filters. Orders between the configured dates are selected from ASAP database table and imported to Order Balancer. Both dates should be configured to filter data to import. If no dates are configured, all the orders from ASAP server DB are imported. Date Format: dd-MM-yyyy Example: 01-05-2021 ASAP_FROM_DATE: ASAP orders whose UPDATE_DTS is later than or equal to ASAP_FROM_DATE are selected to import. ASAP_TO_DATE: ASAP orders whose UPDATE_DTS is before or equal to ASAP_TO_DATE are selected to import. |
You import data any time after adding an ASAP instance to Order Balancer. It is recommended to import ASAP data right after it is added to Order Balancer using the addASAPServer script.
- Register the ASAP instance to Order Balancer by running the addASAPServer script.
- Verify that the state of the registerd ASAP instance is in the UP state.
- Run the pauseNewForASAPServer script to set the status of the instance to the PAUSE-NEW state.
- Run the pauseAllForASAPServer script to set the state to the PAUSE-ALL state.
- Run the importASAPData script to import data.
- Run the resumeASAPServer script to set the state back to the UP state.
In case of errors during the import operation, the import process stops. You can run it again. The script ignores the data that is successfully imported in the failed run and imports only the remaining orders.
Purging Order Balancer Data
You can purge Order Balancer routing data from the database. You can purge all the order data with order date before a specific date.
To purge data from the database, run the installer_location/ob/scripts/purgeDbData script.
purgeDbData -dbHost DBHost -dbPort DBPort -dbServiceName ServiceName -purgeAllBeforeDate DD-MM-YYYY
- DBHost: Order Balancer database host
- DBPort: Order Balancer database port
- ServiceName: Order Balancer database service name
- DD-MM-YYYY: Purge all the order data with order date before the given date. Date format: DD-MM-YYYY
Managing Order Balancer Logs
The Order Balancer installer logs are stored in the logs directory in the installer location. You can change the installer logging level by modifying the config/logging.properties file.
The Order Balancer application logs are added to the WebLogic Server log file. The logs are also added to an additional Order Balancer log file Domain_Root/ASAP_OB/logs.
Changing Logger Levels
Order Balancer uses java.util.logging for logging. By default, the logger levels are configured with the INFO option. You can change the default logger level before deploying Order Balancer by modifying the LOGGER_LEVEL property in the config.properties file.
You can use WebLogic Server Administration Console to change the logger levels at runtime.
To change the logger levels at runtime:
-
In the WebLogic Administration Console, in the Change Center pane, click Lock & Edit.
-
In the Domain Structure tree, expand Environment and then select Servers.
The Summary of Servers pane appears.
-
In the Summary of Servers pane, select the Order Balancer server.
-
Select the Logging tab and then click the General subtab.
-
In the General subtab, expand the Advanced section.
-
In the Platform Logger Levels field, enter oracle.communications.activation.asap.orderbalancer = ALL.
-
Click Save to change the logging level to ALL.
Note:
You need not restart the server after changing the logging levels.
Accessing and Updating Order Balancer using REST APIs
You can use REST APIs to view and update data about the ASAP member instances in Order Balancer.
Member Instance Data Service
- PAUSE-NEW
- PAUSE-ALL
- UP
Table 6-5 ASAP Instances Data Service
URI Path | HTTP Request Type | Description |
---|---|---|
/ASAPOB/asapinstances |
GET |
Returns the list of all ASAP instances currently registered with Order Balancer as JSON Object containing JSON Array. The list consists of the URIs for each ASAP instance. |
/ASAPOB/asapinstances/{instanceid} |
GET |
Returns the details of the ASAP instance as JSON object whose
instance ID matches the ID given in the URI path. JSON
details:
|
/ASAPOB/asapinstances |
POST |
Adds the ASAP instance to Order Balancer. The password is stored in the secure store. The API consumes JSON object where the following entry is expected: { "asapSrvName":[ASAP Instance Name], "asapSrvURL":[ASAP Instance URL], "asapSrvUser":[ASAP Instance WebLogic user], "asapSrvPwd":[ASAP Instance WebLogic password], "asapSrvRequestQueue":[ASAP Instance JMS request queue] } A JSON response is returned for the successful addition of the ASAP instance. In case of failures, appropriate HTTP response codes with the failure details are returned. |
/ASAPOB/asapinstances/{instanceid} |
PUT |
Updates the state of the ASAP instance whose instance ID matches the ID given in the URI path. The state is updated to the State String provided as input in the request. The API consumes JSON object where the following entry is expected: {"instanceState":[State String]} Allowed state strings:
|
/ASAPOB/asapinstances/{instanceid} |
DELETE |
Removes the ASAP instance from Order Balancer whose instance ID matches the ID given in the URI path. A JSON response is returned for the successful removal of the ASAP instance. In case of failures, appropriate HTTP response codes with the failure details are returned. |
Order Balancer Metrics Service
This service exposes Order Balancer metrics for monitoring in Prometheus. It serves as the metric end point where Prometheus can scrape data from. This service queries order metrics using ASAPOrderBalancer EntityManager which is injected into the current service.
The Order Balancer request queue metrics are queried from the Weblogic Management MBeans.
Table 6-6 lists metrics that the HTTP GET operation on the URI /ASAPOB/metrics provides.
Table 6-6 Order Balancer Metrics
Metric Name | Label | Description |
---|---|---|
ob_orders_routed |
to_asap |
This metric is provided for each ASAP instance registered with Order Balancer. The metric represents the total number of orders routed by Order Balancer to the ASAP instance identified by the label to_asap. The label's value contains the name of the ASAP instance. |
ob_asap_state |
asap |
This metric is provided for each ASAP instance
registered with Order Balancer. The metric represents the state
of the ASAP instance identified by the label asap. The
label's value contains the name of the ASAP instance. ASAP
instance state metric representation is as follows:
|
ob_orders_received |
NA |
This metric represents the total number of messages received by the Order Balancer JMS queue OBRequestQueue. This metric is read from the attribute MessagesReceivedCount of the JMS queue. Note: This metric is available for only one Order Balancer instance. This is not applicable when multiple instances of Order Balancer are run. |
About Order Balancer RESTful Web Services Security
All the Order Balancer RESTful web services are secured using Basic authentication. The users who are part of ASAP_OB_REST_GROUP and Administrators can access the REST APIs. The ASAP_OB_REST_GROUP group is created by the installer when the Order Balancer application is installed.
About the Default User
A default user is created when Order Balancer is deployed which is added as a member of both ASAP_OB_USERS_GROUP and ASAP_OB_REST_GROUP. This user is configurable in the installation properties file. Being part of ASAP_OB_USERS_GROUP, the default user complies with the role condition for asap_ob_jms_role. This role protects the OB JMS module. Clients can send messages to the Order Balancer request queue using this user. By default, the same user is also added to the ASAP_OB_REST_GROUP group during Order Balancer installation. This enables the default user to also access the Order Balancer RESTful services. You can create different users later on for each purpose by adding them to the corresponding group.
Accessing the Order Balancer REST APIs over SSL
Note:
In testing environments, to access the REST services with-out SSL, the constraint value can be changed to NONE. A sample variable update xml snippet (commented for non-SSL access) is provided with the default Order Balancer deployment plan, which is provided at Domain_Home/servers/AdminServer/upload/ASAPOrderBalancer/7.4.0.0.0/plan/, upon successful installation of Order Balancer. The snippet can be un-commented and Order Balancer can be redeployed to achieve non-SSL access.Modifying Properties
When you deploy Order Balancer using the configuration properties file, a subset of properties are copied to the obConfig.properties file. Order Balancer uses these properties during runtime. On the successful deployment of Order Balancer, the obConfig.properties file is copied to the Domain_Home/servers/AdminServer/upload/ASAPOrderBalancer/7.4.0.0.0/plan/AppFileOverrides/ASAPOrderBalancer directory. Order Balancer reads this file using the generic file loading overrides. For more information about the overrides, see "Generic File Loading Overrides" in Oracle Fusion Middleware Deploying Applications to Oracle WebLogic Server.
To change the behavior of Order Balancer, you can modify the properties in the obConfig.properties file. After modifying the properties, redeploy Order Balancer for your changes to take effect. For example, to increase the time interval between the instance health polls, in the obConfig.properties file, increase the value of SERVER_POLL_INTERVAL and redeploy or restart the Order Balancer application.
Uninstalling Order Balancer
- Navigate to the ob directory on the machine where Order Balancer is installed.
- Run the following command:
uninstallOB –properties config.properties
The configuration parameters are loaded from the config.properties file. Order Balancer is undeployed and the WebLogic Server components such as MessageQueue, JMS module, JMS server, and Data Source are removed.Note:
If the deletion of the WebLogic component fails, an exception is raised.
Updating and Redeploying Order Balancer
Upgrading Order Balancer
You can upgrade Order Balancer with zero downtime while it continues to process the orders requests. For upgrading while continuously processing the client requests, Order Balancer deploys a newer version of Order Balancer alongside of an older version.
You can also upgrade Order Balancer with a planned downtime. In this upgrade strategy, to manage order processing, you pause the order requests before the upgrade. Firstly, you must undeploy the older version of Order Balancer and then redeploy the newer version of Order Balancer. You can choose between the two upgrade strategies as applicable to your environment.
Upgrading Order Balancer with Zero Downtime
You can upgrade Order Balancer to a newer version with zero downtime. You can deploy a new version of an updated Order Balancer alongside an old version of Order Balancer. After installation, the new incoming order requests are processed by the newer version of Order Balancer, while the in-progress order requests are processed by the older version Order Balancer. When you deploy a newer version of Order Balancer, the newly-deployed version is the active version, and the older version is retired. After the order requests are processed, the older version of Order Balancer is retired automatically. The retired application is deactivated after the completion of active sessions and in-progress transactions. You can undeploy the older version completely or roll back to the older version. To undeploy the older version of the Order Balancer application, see "Undeploying the Older Version Order Balancer". You can roll back the production redeployment process by making the older application version active. To roll back to the older Order Balancer version, see "Rolling back to the Older Version Order Balancer".
Note:
You cannot upgrade from ASAP 7.4.0.1 to ASAP 7.4.0.2 with zero downtime as it requires WebLogic server restart.To upgrade Order Balancer with zero downtime:
- Download the latest version of the Order Balancer Installer file and
unzip the contents to a directory, for example, newversion-D
directory where newversion is the latest release version of the Order
Balancer.
Note:
The older version of the Order Balancer installer file contents must be unzipped to a different directory, for example, oldversion-D directory where oldversion is the active installed release version of the Order Balancer. - Update the values in the sampleConfig.properties file. You can use the same values from the oldversion sampleConfig.properties file.
- Run the following command to upgrade from oldversion to the
newversion:
installOB –properties config.properties –updateInPlace
Order Balancer installer creates the required WebLogic resources and deploys the newer version alongside the old version. After successful deployment, the newer version becomes active and the older version is retired after the in-progress order requests are processed. You can undeploy the older version or roll back to the older version.
Undeploying the Older Version Order Balancer
You can undeploy Order Balancer using the WebLogic Server Administration Console. In the WebLogic Server Administration Console, you can view the version and the state information for all the deployed applications and the modules by clicking Deployments in the left hand pane. You can undeploy Order Balancer, when it is in Retired or stop Running states.
- In the Retired state: Undeploy by selecting the older version Order Balancer application and clicking the Delete button.
- In the stop Running state: When the older version in the
stop Running state, you can wait until it changes to the
Retired state or you can gracefully stop it using WebLogic Server
Administration Console. The application stays in the stop Running state,
if there are pending sessions that are not deactivated. The WebLogic Server
waits till they are deactivated or timed-out and then change the Order Balancer
application to the Retired state. You can configure the time out period
using the Session Timeout parameter in WebLogic Server Administration
Console.
To retire the older version Order Balancer from the stop Running state:
- In the WebLogic Server Administration Console, in the Summary of Deployments pane, click the Control tab.
- Click the Stop menu and then select the When work completes option to gracefully change the Older Version Order Balancer application to the Retired state.
- After the application is in Retired state, click the Delete button to undeploy the application.
Rolling back to the Older Version Order Balancer
You can roll back to the older version Order Balancer application. Go to the unzipped tar folder of the older version Order Balancer installer and run the following command:
installOB –properties config.properties –updateInPlace
Note:
Use this command from ASAP version 7.4.0.1 or later. To roll back to 7.4.0 version, copy the asapOBInstaller.jar from the newer version -D/ob/lib to the older version -D/ob/lib directory and then run the above command.Upgrading Order Balancer by Pausing the Order Requests
To upgrade the Order Balancer application to a new version, unzip the new installer and perform the steps described in "Installing Order Balancer". Before reinstalling Order Balancer, it is recommended to pause submitting orders to Order Balancer until the update completes. When reinstalling, the installer first undeploys the Order Balancer application from the WebLogic Server. It then checks if the required components such as database tables, Oracle wallet, and WebLogic components exist and skips creating them if they already exist. The installer then deploys the new Order Balancer application EAR. The updated Order Balancer automatically detects and adds the already registered ASAP member (if any) from the database. The ASAP instances are added in the same state as they were before upgrade.
Migrating Order Balancer to a Different Domain or a Machine
You can migrate a running Order Balancer application, with the same database user, to a different domain on the same machine or a different virtual machine.
To migrate a running Order Balancer:
- Pause submitting orders to Order Balancer by running the appropriate script.
- Uninstall Order Balancer from the existing domain as described in "Uninstalling Order Balancer".
-
Copy the wallet files from the previous domain to the new domain.
- Wallet Files: cwallet.sso and cwallet.sso.lck
- Location: DOMAIN_HOME/oracle_communications/asap
- If you are installing Order Balancer on a different machine, copy and unzip the Order Balancer installer to the new server.
- Update the Installer config.properties with details about the new domain.
- Install Order Balancer on the new domain as described in "Installing Order Balancer".
Note:
If Order Balancer is uninstalled from a WebLogic domain but needs to be reinstalled to the same domain with a different database user (new), then the domain needs to be cleaned up by deleting the wallet files before reinstalling.Changing Order Balancer Application Configuration with Deployment Plan
To change the Order Balancer application configuration using a deployment plan, you can use Order Balancer installer or WebLogic console.
Using Order Balancer Installer to Change the Configuration
The Order Balancer Installer includes a default deployment plan OBPlan.xml file in the ob/plan directory. To change the Order Balancer application configuration, update the OBPlan.xml file with the required variables and values and then reinstall the application as described in "Updating and Redeploying Order Balancer".
Using WebLogic Console to Change the Configuration
When Order Balancer is successfully installed, the installer copies the Order Balancer application EAR and the deployment plan to DOMAIN_HOME/servers/AdminServer/upload/ASAPOrderBalancer/7.4.0.0.0.
To update the Order Balancer application configuration using WebLogic console:
- Update the OBPlan.xml deployment plan with the required values.
- In the WebLogic console, select deployments and then select ASAPOrderbalancer application.
- Select Update and then select the updated deployment plan and finish the update.
Sample Variable Update XML Snippets
- Sample 1: To increase the number of concurrent threads or consumers listening on the Order Balancer input JMS queue, uncomment the variable assignment snippet provided under uncomment below variable assignments to increase concurrent threads for OB MDB section in the deployment plan and deploy or redeploy Order Balancer.
- Sample 2: For testing purposes, to achieve non-SSL access to Order Balancer RESTful APIs, uncomment the variable update xml snippet provided under uncomment below variable assignment for non-SSL section in the deployment plan and deploy or redeploy Order Balancer.
Troubleshooting
Issue: Error while saving order details to the database.
While Order Balancer attempts to save order processing details to the database, it is possible that some orders return errors and are not saved to the database.
Resolution: Order Balancer saves the details of the failed entries to the ASAPOB_DB_Fallbackxxx.log file located in the OB_Domain/oracle_communications/asap/ directory. This log file contains details of the failed entries, which you can use for correction.
The failed entries are saved to the log file in the following format:
SEVERE: Database persist failed for entry : OrderID,InstanceID,TimeStamp
Issue: Invalid Message Type
Order Balancer does not validate the incoming request message XML, but only parses and fetches the Order ID and the request type. Order Balancer extracts the request type from the message and compares it with the expected types. In case of an unknown or unsupported request type, Order Balancer sends a response with an exception to the replyTo queue that is configured in the request.
The exception that Order Balancer sends is: Exception: RemoteException
The message that Order Balancer displays is: Message: "Unsupported order request:…"
Issue: An exception response while invoking the Web Services Operation.
FaultCode [http://schemas.xmlsoap.org/soap/envelope/Client. Authentication] FaultString [Failed to receive message weblogic.wsee.util.AccessException: The server at https://ASAP1:1234/<ENVID>/Oracle/CGBU/Mslv/Asap/Ws/Http returned a 403 error code (Forbidden)
Resolution: The ASAP member instance user does not have the required User Groups to route the Web Services request. Add the ASAP member instance user to be part of ASAP_WS_USERS_GROUP and ASAP_Operators/Administrator groups. For more information on the Web Services user, see "Security".
Issue: work:WorkContext
Element appears in SOAP
Response Header while invoking the Order Balancer Web Services.
FaultCode [http://schemas.xmlsoap.org/soap/envelope/Client. Authentication] FaultString [Failed to receive message weblogic.wsee.util.AccessException: The server at https://ASAP1:1234/<ENVID>/Oracle/CGBU/Mslv/Asap/Ws/Http returned a 403 error code (Forbidden)
Resolution: Set the system property
weblogic.wsee.workarea.skipWorkAreaHeader
to True, to not
send work area header in the SOAP messages. The property value is False by
default.
This WorkContext is not part of the WSDL, but it is a part of the response message. You can remove it using a handler. There are two options to solve this issue:
- Use a server handler to remove the header before it passes to the client.
- Do not use the version in the application
If these options are not workable, you can introduce a system flag to not add this SOAP header. Use the system flag with caution because you may lose any WorkContext information in the SOAP message.