Hyrax - Configuring The OLFS To Work With Multiple BES's: Difference between revisions

From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽
Line 33: Line 33:
'''''Remember''''': There '''must''' be one (but only one) BES configured with the <''prefix''> set to "/" in your '''olf.xml''' file.
'''''Remember''''': There '''must''' be one (but only one) BES configured with the <''prefix''> set to "/" in your '''olf.xml''' file.


==2 BES example==
==Multiple BES examples==


Here is the <''BESConfig''> section of an '''olfs.xml''' file that defines two BES's:
Here is the <''BESConfig''> section of an '''olfs.xml''' file that defines two BES's:

Revision as of 20:32, 23 March 2007

Configuring Hyrax to use multiple BES backends is straight forward. It will require that you edit the olfs.xml file and possible the catalog.xml file.


Top Level BES

Every installation of Hyrax requires a top level (or root level) BES.** This BES has a prefix of "/" (the forward slash character).

In a single BES deployment this BES would contain all of the data resources to be made visible in Hyrax. In the THREDDS catalog.xml file each top level directory/collection would have it's own <datasetScan> element.


**Note: The word root here has absolutely nothing to do with the login account called root associated with the super user or system administrator.

Mount points

In a multiple BES installation each additional BES must have a mount point within the exposed hierarchy of collections for it to be visible in Hyrax. Eh? What's that you said? Allow me to explain by example.

Single BES Example (Default)

Here is the <BESConfig> section of an olfs.xml file that configures the OLFS to use a single BES, the default configuration arrangement for Hyrax:

    <BESConfig>
        <BES>
            <prefix>/</prefix>
            <host>localhost</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>
    </BESConfig>

The BES is running on the same system as the OLFS, and it's prefix is correctly set to "/". This BES will handle all data requests direct at the OLFS and will expose it's top level directory/collection/catalog in the URI space of the OLFS here:

http://localhost:8080/opendap/

The THREDDS catalog.xml file for this should contain a <datasetScan> element for each of the top level directories/collections/catalogs that the BES exposes at the above URI.

Remember: There must be one (but only one) BES configured with the <prefix> set to "/" in your olf.xml file.

Multiple BES examples

Here is the <BESConfig> section of an olfs.xml file that defines two BES's:

    <BESConfig>
        <BES>
            <prefix>/</prefix>
            <host>localhost</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>
        
        <BES>
            <prefix>/sst</prefix>
            <host>comet.test.org</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>
    </BESConfig>

The first one is running on the same system as the OLFS< the second on comet. test.org. The second BES is mapped to the prefix /sst. So the URL:

http://localhost:8080/opendap/

Will return the directory view at the top level of the first BES, running on the same system ads the OLFS. The URL:

http://localhost:8080/opendap/sst

Will return the directory view at the top level of the second BES, running on comet.test.org.

You can repeat this parrtn to add more BES's to the configuration. This next example shows a configuration with 4 BES's: The root BES, and 3 others:

    <BESConfig>
        <BES>
            <prefix>/</prefix>
            <host>server0.test.org</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>
        
        <BES>
            <prefix>/sst</prefix>
            <host>server1.test.org</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>

        <BES>
            <prefix>/chl-a</prefix>
            <host>server2.test.org</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>

        <BES>
            <prefix>/salinity</prefix>
            <host>server3.test.org</host>
            <port>10002</port>
            <ClientPool maximum="10" />
        </BES>

    </BESConfig>

Note that in this example:

  1. The root' BES is not necessarily running on the same host as the OLFS.
  2. Every BES has a different prefix.
  3. The OLFS would direct requests so that requests to:

olfs.xml for multiple BES installations

Examples

Simple

Complex

Example: