Skip Headers
Oracle® Coherence Getting Started Guide
Release 3.5

Part Number E14510-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

22 The Coherence Ecosystem

The purpose of this document is to describe the:

Breakdown of Coherence editions

The Coherence ecosystem is divided into two subsections: Coherence client editions and Coherence server editions. There are two different client editions:

And there are three different server editions:

Each edition has a different (graduated) list of features which can be found in Appendix A, "Coherence Features by Edition".

Coherence Client and Server Connections

Figure 22-1 illustrates which client editions can connect to which server editions. It illustrates two important points:

Figure 22-1 Client/Server Features by Edition

Description of Figure 22-1 follows
Description of "Figure 22-1 Client/Server Features by Edition"

Coherence Modules Involved in Connecting Client and Server Editions

There are two Coherence modules involved in connecting Coherence client and server editions:

How a Single Coherence Client Process Connects to a Single Coherence Server

Note:

Coherence provides cross-platform client support by providing native clients for Java, .NET (C#), and C++. This allows different platforms to access, modify, query, (and so on), data between programming languages by connecting to the Coherence data grid. For more information on a data grid, see Chapter 1, "Defining a Data Grid".

Figure 22-2 illustrates how a request is passed from a Coherence client process to internal data storage:

  1. A Coherence client process uses Extend*TCP to initiate and maintain a connection to the Coherence (server-side) Data Grid.

  2. Extend*TCP connects to the Coherence Server JVM process, specifically the Extend*Proxy service that is running within the process space.

  3. The Extend*Proxy service routes the client requests to the internal data storage.

Figure 22-2 Single Client, Single Server

Description of Figure 22-2 follows
Description of "Figure 22-2 Single Client, Single Server"

Considering Multiple Clients and Servers

This section assumes that the components involved remain the same as in the previous example. Figure 22-3 illustrates how requests are passed from the client processes to internal data storage where there are multiple Coherence server JVM processes:

  1. The Coherence client processes use Extend*TCP to initiate and maintain a connection to the Coherence (server-side) Data Grid.

  2. Extend*TCP connects to a single Coherence server JVM process, specifically the Extend*Proxy service that is running within the process space. In the event of failure the client process will connect to another Coherence server JVM process that is running the Extend*Proxy service.

  3. The Extend*Proxy service then routes the client requests to the correct Coherence server JVM process (that is, the process or processes that hold the data relevant to the client request) represented by the "internal data storage" in the diagram.

Figure 22-3 Multiple Clients and Servers

Description of Figure 22-3 follows
Description of "Figure 22-3 Multiple Clients and Servers"