Difference between revisions of "IS-Registry"

From Gcube Wiki
Jump to: navigation, search
(Configuration)
(Configuration)
Line 25: Line 25:
 
* '''getProfileString()''' – which returns the resource profile represented by its WS-Resource;
 
* '''getProfileString()''' – which returns the resource profile represented by its WS-Resource;
  
==== Configuration ====
 
 
The configuration of an IS-Registry instance is a two-step process:
 
 
* since a IS-Registry can act in one and only one scope, its JNDI file (<em>$GLOBUS_LOCATION/etc/org.gcube.informationsystem.registry/jndi-config.xml</em>) must be configure to join only one scope. In the following example, the instance is configure to join the scope named <em>/testing/vo1</em>:
 
<pre lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<jndiConfig xmlns="http://wsrf.globus.org/jndi/config">
 
 
<service name="gcube/informationsystem/registry">
 
       
 
                <environment
 
                        name="configDir"
 
                        value="etc/org.gcube.informationsystem.registry"
 
                        type="java.lang.String"
 
                        override="false" />
 
               
 
                <environment
 
                        name="securityManagerClass"
 
                        value="org.gcube.common.core.security.GCUBESimpleServiceSecurityManager"
 
                        type="java.lang.String"
 
                        override="false" />
 
               
 
                <!-- Lifetime for temporary resources, after this period temporary resources are destroyed-->
 
                <environment
 
                        name="temporaryResourceLifetimeInMs"
 
                        value="480000"
 
                        type="java.lang.Long"
 
                        override="false" />   
 
                               
 
                                       
 
                       
 
                <environment
 
                        name="startScopes"
 
                        value=" /testing/vo1"
 
                        type="java.lang.String"
 
                      override="false" />       
 
                       
 
</service>
 
....
 
</pre>
 
 
* due to its role, the IS-Registry requires a special Service Map for its scope. In that map, the EPR of the RegistryFactory of itself must be reported. Let's suppose that an instance running on a node named grid5.4dsoft.hu joins the <em>/testing/vo1 scope</em>, the <em>$GLOBUS_LOCATION/config/ServiceMap_vo1.xml</em>  file must be filled as follows (the EPRs are here just for the sample purposes):
 
 
<pre lang="xml">
 
<ServiceMap>
 
        <Service name ="ISICAllQueryPT" endpoint ="http://grid1.4dsoft.hu:8080/wsrf/services/diligentproject/informationservice/disic/DISICService"/>
 
        <Service name ="ISICAllRegistrationPT" endpoint ="http://grid1.4dsoft.hu:8080/wsrf/services/diligentproject/informationservice/disic/DISICRegistrationService"/>                       
 
        <Service name ="ISRegistry" endpoint="http://grid5.4dsoft.hu:8080/wsrf/services/gcube/informationsystem/registry/RegistryFactory" />
 
</ServiceMap>
 
 
</pre>
 
 
[[Category:Information System]]
 
[[Category:Information System]]

Revision as of 21:37, 20 June 2009

The IS-Registry is a gCube Service called upon to manage gCube Resources by managing the registration/unregistration of their profiles. Its internals are structures as depicted in Figure 1, i.e. it mainly follows a Factory pattern.

Figure 1. IS-Registry Architecture

Resources and Properties

This Service creates and manage a WS-Resource for each gCube resource that has to be considered part of the e-Infrastructure the IS-Registry is responsible for. Such WS-Resources (ProfileResource) implement the Resource Model described in the Resource Model, in fact each of them consists of four parts:

  • A unique identifier identifying the resource univocally;
  • A type characterising the class the resource belong to, e.g. Running Instance, gHN;
  • A scope identifying the operational scope of such a resource;
  • A profile describing the resource by resource-specific attributes.

In addition to such WS-Resources the service publishes a set of properties about its operational status including the number of resources of a certain type currently registered, the last operation performed including operation type, resource ID and time (RegistryFactoryResource). Such properties are also registered as Topics managed by the IS-Notifier thus making possible for interested clients to subscribe on events representing the changes of status of Infrastructure constituents (e.g. the disappearance of a Running Instance).

Operations

The main operations supported by the Service Factory (RegistryFactory) are:

  • createResource() – which takes as input parameter a message containing a resource profile and a set of registration directives (e.g. VO membership and VRE membership) and returns a string containing the whole profile of the new resource including the automatically assigned ID;
  • updateResource() – which takes as input parameter a message containing the new profile that is supposed to replace an existing one. The key to identify the old profile to be replaced is contained in the profile itself, it is the resource ID. By relying on the internal mapping between IDs and EPRs it identifies the WS-Resource it has to interact with in order to implement such update operation;
  • removeResource() – which takes as input parameter a message containing the resource ID identifying the resource to be removed;


The only operation supported by the IS-Registry Service (RegistryService), i.e. the WSRF service managing the WS-Resource instances representing gCube resources, is:

  • getProfileString() – which returns the resource profile represented by its WS-Resource;