Oracle8i Integration Server Overview
Release 3 (8.1.7)

Part Number A83729-01

Library

Product

Contents

Index

Go to previous page Go to next page

7
Oracle Advanced Queuing and JMS

This chapter contains:

A Brief Review of the Products

This section examines several Oracle products that are involved in Oracle Integration Server. It contains:

Advanced Queuing

Advanced Queuing (AQ) is a database-integrated message queuing component of the Oracle8i Enterprise Edition database management system. It provides an infrastructure that simplifies the task of passing messages within an application or between applications.

Its functional strong points include:

Components of Advanced Queueing

Advanced Queuing has several key components:

Message

A message is the smallest unit of information inserted into and retrieved from a queue. A message consists of:

The control information represents message properties used by AQ to manage messages. The payload data is the information stored in the queue and is transparent to Oracle AQ. A message can reside in only one queue. A message is created by the enqueue call and consumed by the dequeue call.

Queue

A queue is a repository for messages. There are two types of queues: user queues, also known as normal queues, and exception queues. The user queue is for normal message processing. Messages are transferred to an exception queue if they cannot be retrieved and processed. Queues can be created, altered, started, stopped, and dropped by using the Oracle AQ administrative interfaces.

Queue Table

Queues are stored in queue tables. Each queue table is a database table and contains one or more queues. Each queuetable contains a default exception queue.

Agent

An agent is a queue user. This could be an end user or an application.There are two types of agents:

Any number of producers and consumers may be accessing the queue at a given time. Agents insert messages into a queue and retrieve messages from the queue by using the Oracle AQ operational interfaces.

An agent is identified by its name, address and protocol.

where queue_name is of the form [schema.]queue and dblink can be either a fully qualified database link name or the database link name without the domain name.

Recipient

The recipient of a message may be specified by its name only, in which case the recipient must dequeue the message from the queue in which the message was enqueued. The recipient may be specified by name and an address with a protocol value of 0. The address should be the name of another queue in the same database or another Oracle8i database (identified by the database link) in which case the message is propagated to the specified queue and can be dequeued by a consumer with the specified name. If the recipient's name is NULL, the message is propagated to the specified queue in the address and can be dequeued by the subscribers of the queue specified in the address. If the protocol field is nonzero, the name and address field are not interpreted by the system and the message can be dequeued by a special consumer.

Recipient and Subscription Lists

A single message can be designed for consumption by multiple consumers. There are two ways to do this:

Rule

A rule is used to define the interest of one or more subscribers in subscribing to messages that conform to that rule. The messages that meet this criterion are then delivered to the interested subscribers. Put another way: a rule filters for messages in a queue on a topic in which a subscriber is interested.

A rule is specified as a Boolean expression (one that evaluates to true or false) using syntax similar to the WHERE clause of a SQL query. This Boolean expression can include conditions on the following:

Rule-Based Subscriber

A rule-based subscriber has rule associated with it in the default recipient list. A rule-based subscriber is sent a message that has no explicit recipients specified if the associated rule evaluates to TRUE for the message.

Queue Monitor

The queue monitor (QMNn) is a background process that monitors the messages in the queues. It provides the mechanism for message delay, expiration, and retry delay. The QMNn also performs garbage collection for the queue table and its indexes and index-organized tables.

It is possible to start a maximum of 10 multiple queue monitors at the same time. You start the desired number of queue monitors by setting the dynamic init.ora parameter to aq_tm_processes. The queue monitor wakes up every minute, or whenever there is work to be done, for instance, if a message is to be marked as expired or as ready to be processed.

General Features of Advanced Queueing

AQ uses the strength of the Oracle8i database management system (DBMS) to provide these general features:

SQL Access

Messages are placed in normal rows in a database table, and so can be queried using standard SQL. This means that you can use SQL to access the message properties, the message history, and the payload. All available SQL technology, such as indexes, can be used to optimize the access to messages.

Integrated Database Level Operational Support

Standard database features such as recovery, restart, and enterprise manager are supported. Oracle AQ queues are implemented in database tables, hence all the operational benefits of high availability, scalability, and reliability are applicable to queue data. In addition, database development and management tools can be used with queues. For instance, queue tables can be imported and exported.

Structured Payload

Users can use object types to structure and manage message payloads. RDBMSs in general have had a far richer typing system than messaging systems. Since Oracle8i is an object-relational DBMS, it supports both traditional relational types as well as user-defined types. Many powerful features are enabled as a result of having strongly typed content, such as content whose format is defined by an external type system. These include:

Retention and Message History

Users of AQ can specify that messages be retained after consumption. The systems administrator can specify the duration for which messages will be retained. Oracle AQ stores information about the history of each message, preserving the queue and message properties of delay, expiration, and retention for messages destined for local or remote recipients. The information contains the ENQUEUE/DEQUEUE time and the identification of the transaction that executed each request. This enables users to keep a history of relevant messages. The history can be used for tracking, data warehouse and data mining operations.

Tracking and Event Journals

If messages are retained, they can be related to each other. For example, if a message m2 is produced as a result of the consumption of message m1, m1 is related to m2. This allows users to track sequences of related messages. These sequences represent event journals, which are often constructed by applications. Oracle AQ is designed to let applications create event journals automatically.

Integrated Transactions

The integration of control information with content (data payload) simplifies application development and management.

Queue- Level Access Control

With Oracle8i, an owner of an 8.1 style queue can grant or revoke queue- level privileges on the queue. DBAs can grant or revoke new AQ system level privileges to any database user. DBAs can also make any database user an AQ administrator.

Non-Persistent Queues

AQ can deliver non-persistent messages asynchronously to subscribers. These messages can be event-driven and do not persist beyond the failure of the system (or instance). AQ supports persistent and non-persistent messages with a common API.

Publish-Subscribe Support

A combination of features enable a publish-subscribe style of messaging between applications. These features include rule-based subscribers, message propagation, the listen feature, and notification capabilities.

Two Contexts for Developing Queueing Operations

Oracle AQ offers two development contexts:

A comprehensive graphical interface supports the administration of Advanced Queuing objects through the Enterprise Manager DBA Studio (Schema Management), part of the DBA Management pack, which is in the 8.1.7. database release.

See Also:

 

Oracle Java Messaging Service (OJMS)

Oracle Corporation has extended the JMS API to leverage those Oracle Advanced Queuing features that cannot be accessed through a standard JMS API. We are working with the standards body to include these extensions in the JMS standard.

We have extended the standard JMS API in the following areas:

Agents

The standard JMS definition expects each message to be delivered to a single recipient. Because AQ can record, manage, and track the delivery of a message to more than one recipient without having to copy the message, the OJMS API supports the use of agents.

An agent is associated with the message for each recipient of the message. The agent is an object that has a name, a transport protocol, and an address that is specific to the transport protocol.

The agent model is particularly important for the publish-subscribe capability of AQ and for the interoperability of AQ with other messaging technologies.

Additional Message Control Properties

To use standard AQ features that are not supported by the standard JMS message properties definition, OJMS has extended the message control property set to include:

Additional Message Type

AQ is unique among messaging technologies in supporting strongly typed message payloads that you can access using standard SQL while they are in the queues and that support content-based routing. AQ uses Oracle Object Types (also known as ADTs) to do this. To support this feature, OJMS has an additional message type called an ADTMessage.

Transactional Session

AQ messages can be created within the context of an Oracle database COMMIT transaction. The same transaction can include SQL operations such as table inserts and SAVEPOINTs without requiring a two-phase or XA-compliant commit.

We extended the JMS Transacted Session feature to support this unique Oracle feature, which is useful in developing adapters to interface to Oracle-based applications.

Administration

The JMS standard includes a concept of administered objects. Chapter 4, "Key Integration Concepts", describes Oracle JMS implementation in depth. The Oracle JMS implementation has an API for creating and managing these objects.

The Session interface now supports administrative functions such as the creation of Queue Tables and Queues and Topics and the modification of their properties.

The Destination interface now supports administration of Queues and Topics and AQ propagation of messages between destinations. This has significance to a hub and spoke architecture that is used for the hardware configuration, security model, or persistence schema.

Restrictions

The first release of the OJMS interface (with release 8.1.6 of the database) has a small number of standard JMS features that are not supported or are supported in a non-standard manner:

Oracle Procedural Gateway for IBM MQSeries

Oracle Procedural Gateway for IBM MQSeries enables Oracle applications to create MQSeries messages directly or to convert AQ messages into MQSeries messages and vice-versa. It has a graphical interface called Visual Workbench that you can use to define the mapping of Oracle object types to MQSeries structures and to import Oracle Object Types and COBOL Copybook definitions.

You then complete the configuration by generating PL/SQL packages that provide a seamless transactional API to the MQSeries queue that you can access from SQL*Plus, PL/SQL packages, Pro*Series languages, and so on.

TIB Adapter for Oracle

TIBCo sells an adapter that you can use to transform AQ messages into TIB Rendezvous messages and vice-versa. The product was developed in collaboration with Oracle and provides a code-free transformation solution between Oracle Advanced Queuing and TIB Rendezvous (TIBrv).

The software is designed to convert messages from AQ to TIBrv, to transport them across the TIB bus, and to convert them back into AQ without losing any of the AQ message properties. Messages are converted transactionally using a version of the TIB Rendezvous Certified Messaging and the Oracle commit model.

Applying the Products in an Integration Solution

This section examines the ways in which these products interface in an integration solution. It contains:

Advanced Queuing

Business Event Integration

Within an integration solution based on business events, the AQ message queuing functionality provides the backbone for the solution and supports business event requirements not previously expected of messaging technologies such as:

Advanced Queuing supports business events by using the Oracle8i database to provide a repository for messages, transactional support, and recovery. Most of the other products in the Oracle Integration Server can be accessed directly through a delivered AQ interface. This reinforces the position of AQ as the backbone of the solution.

AQ keeps a history by determining and recording the recipients of the message when the message is created. Each time a recipient attempts to collect the message, the attempt is recorded automatically. This guarantees that a message is collected only once by each recipient and that you always know when a message has been collected.

AQ messages have three main components: a header, a payload, and a history. All three are stored in queue tables that consist of a set of regular database objects in the database. Provided that the database is protected by a suitable backup and recovery routine, messages can be recovered to a consistent state in the event of a system failure.

AQ messages are accessed through an API that prevents the message header, payload, or history from being changed directly by the user accessing the message. This design feature, when combined with the retention of messages after they have been consumed, enables you to construct an audit trail.

Although AQ uses a sophisticated set of database objects to implement this rich functionality, it also includes a set of views for each queue table so that you can easily interrogate the header, payload, and history of the messages using SQL.

If the payload structure is defined as a simple object type, SQL can access the attributes directly. However, if a generic object type containing a CLOB is used to store the payload in, for example, XML format, then the character string must be translated into a more strongly typed structure before it can be interrogated easily.

As already mentioned, AQ uses a set of regular database objects to implement the logical construct of a queue table. We have engineered this set of objects to ensure that retaining consumed messages does not adversely affect the creation or collection of other messages.

The ability to determine the recipients of messages according to predefined rules is comprehensively supported by Advanced Queuing.

See Also:

Chapter 4, "Key Integration Concepts" 

Multiconsumer queues provide publish-subscribe routing for durable subscribers:

You can also use propagation to route messages to groups of recipients within a publish-subscribe context as shown in the following scenario:

  1. Recipients receive messages about red cars by subscribing to Queue Red Cars.

  2. Queue Red Cars subscribes to Queue Sports Cars with a rule of tab.user_data.color = RED.

  3. Publisher creates a message in Queue Sports Cars.

  4. If a car has the attribute color set to RED, Queue Red Cars is recorded as a recipient of the message.

  5. AQ propagates the message to the Queue Red Cars and records all the recipients on the subscription list as recipients of the propagated message.

Advanced Queuing is the most appropriate mechanism for routing if the subscribers are durable but change frequently (daily or more often).

If the subscription is static and the rules for routing are complex, Workflow (Chapter 10, "Workflow") provides a better alternative to develop your solution.

Data integration

If Oracle Replication does not provide the required functionality, use Advanced Queuing technology to develop a predefined replication environment.

You can do this in two ways:

Developing your own replication software using AQ requires a special understanding of replication issues and a commitment to maintain and upgrade predefined software.

OJMS

If you use Java as the development language for the programmable aspects of the solution and if you employ JMS as a standard for communicating with messaging technologies, then OJMS offers an effective API to Advanced Queuing.

In a B2B-oriented solution, you can use AQ features additional to those included in the JMS standard, such as object type payloads, transacted sessions, and the agent model. The OJMS extensions to the JMS standard make it possible to use these extra AQ features. If you use these features, OJMS offers an excellent alternative to the JMS implementation of Oracle Message Broker.

Procedural Gateway for MQSeries

The Procedural Gateway for MQSeries is the only gateway to another messaging technology offered by Oracle.

Use it to transform messages between MQSeries and Advanced Queuing. In its current form, this requires you to develop a simple PL/SQL bridging procedure to call the MQSeries dequeue package or the AQ enqueue API. It supports only the conversion of simple payloads and does not support collections or LOBs.

The message throughput across a single queue bridge varies depending on system specification and message size. Do not choose Procedural Gateway for MQSeries if you anticipate hundreds of messages per second.

Interoperability

The products that make up the Oracle Integration Server interface smoothly with Advanced Queuing to provide asynchronous services comparable to those provided by many third-party application integration tools.

However, some applications require interaction with other messaging technologies, such as MQSeries and Rendezvous from TIBCo, because of a decoupling requirement, an application platform, an existing interface, or a previous choice of strategic technology.

If the application has an interface that extracts messages to a messaging technology other than AQ, you must decide whether to integrate the messaging technology to AQ, OMB, or Workflow directly by using a programming language or through specialized software.

Alternative methods for integrating to Advanced Queuing are:

Programmatic 1: If both message queuing products have an API for a particular language, write a program that collects the message from one product, transforms the message properties, and creates the message in another product.

Programmatic 2: Choose two languages that can communicate with each other and that have APIs to message queuing products.

Software: Choose a specialized product that enables conversion between the two messaging products.

MQSeries Example

The example given here is used solely to illustrate the process and should not be taken as a recommendation of any one solution over any other.

Scenario

One of the applications included in a hub-and-spoke integration solution has a ready-made message-based interface that places messages in a set of MQSeries queues and that expects business events in the form of MQSeries messages. The application interface is written in C and creates and consumes messages using the native MQSeries API.

The objective is to transport messages from MQSeries to AQ and from AQ to MQSeries.

The solution depends upon the architectural principles, the language or languages used in the integration solution, the approach to modularization, the standards used, and so on.

If the second message queuing product is TIB Rendezvous from TIBCo rather than MQSeries, then the scenarios are similar except that TIBCo and not Oracle is the software provider and the software is called The TIB Adapter for Oracle.

Business Intelligence and Message Warehousing

As discussed earlier in this chapter, Advanced Queuing can manage two types of queues: persistent queues and nonpersistent or volatile queues.

This section contains:

Persistent Queues

Persistent queues are ideally suited to manage messages that flow between applications (when integrating applications with an enterprise) or between two business processes (when integrating businesses for B2B commerce). There are two reasons why such messages must be stored persistently:

The message payload of AQ can also be an unstructured data type such as RAW or BLOB for flat-file-oriented data such as SAP TDOCs and XML-based business object documents. Consider three issues when warehousing message payloads:

The messaging infrastructure must maintain a persistent message store to guarantee message delivery even when message propagation or transport fails.

Volatile Queues

In contrast to a persistent messaging environment, volatile queues are ideal for best-effort delivery of messages. For instance, a message sent to confirm that a B2B message has been received does not need to be stored persistently.

Basic Principles of Message Storage

As previously described, each message passed through AQ is stored in a queue. You can store the contents of single or multiple queues in a queue table. Four basic principles govern the storage of messages for business analysis and intelligence:

Business Intelligence Tools

The Oracle Business Intelligence Tools are a set of three Oracle products that provide simple, intuitive access to business information in Oracle databases. Use them to analyze business intelligence stored in message warehouses.

Oracle Reports, Oracle Discoverer, and Oracle Express have graphical interfaces that can be accessed from anywhere through a standard Internet browser. They deliver decision support information to business users (usually from a data warehouse or data mart). Recently, we've enhanced them to enable operational monitoring for throughput analysis and service level monitoring in an asynchronous messaging integration solution.

The tools can be used to generate and view dynamically created reports, to perform dynamic queries against virtual and materialized data structures, and to analyze and forecast trends.

Reports

Oracle Reports is a graphical tool for developers of sophisticated, high-quality reports. Its rich functionality enables reports with complex hierarchic structures and matrices to be defined quickly and easily, using the full power of SQL.

Users can then view these dynamically generated reports through a standard web browser.

Discoverer

Oracle Discoverer is an easy-to-use browser-based tool, primarily aimed at business users, that can be used to perform dynamic queries, to provide reports and charts, and to enable Web publishing.

It employs the End User Layer, an abstraction layer over database objects, to simplify queries and enable predefinition of queries. It provides drag-and-drop functionality that removes the need for the user to be versed in the grammatical constructs of SQL.

Powerful, integrated charting illustrates trends and exceptions and enables users to drill down through charts to view specific data more closely.

Some of its more sophisticated features include:

Express

Oracle Express is a decision-support tool with an online analytical processing (OLAP) engine. It employs a multidimensional data model that expands rows and columns into multiple categories of data called dimensions.

This type of data model is optimized for decision support, uses array arithmetic to provide quick access to the data for "slice and dice" type queries, and offers built-in functions for analysis, forecasting, modeling, and what-if scenario playing.

The data model can be interrogated using intuitive tools that are accessible through a standard Web browser. The OLAP engine can use a data cache to store dimensional data as an aid to query performance.


Go to previous page Go to next page
Oracle
Copyright © 1996-2000, Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index