IS-Notifier

From Gcube Wiki
Revision as of 14:38, 14 April 2011 by Lucio.lelii (Talk | contribs) (Operations)

Jump to: navigation, search

The IS-Notifier is the gCube Service dedicated to manage subscriptions with respect to Topics, i.e. organised items of interest for publishing/subscription . It acts as a subscriptions broker since allows its client to subscribe to a topic while freeing them from the need to know the location of the notifications producer (i.e. its EPR). It also supports subscriptions to Topics that are not yet exposed by their producers. In this case, the IS-Notifier maintains a subscription in a pending state until the notification producer registers the related Topic.

It is important to notice that the design of such a service does not implement the classical brokered notification schema since the IS-Notifier subscribes the consumer directly to the notification producer. In this way, there is no single service that is in charge to receive notifications from producers and then dispatch them to the subscribed client(s). However, the IS-Notifier plays a mediator role because of the subscriptions brokerage. In fact, the IS-Notifier automatically manages the relocation of notification producers by forwarding the client subscription requests to the new instances of the producers. Moreover, the service supports the transparent subscription/re-subscription of the client to the new producer instances that comes up after the initial request of subscription.

Design

The IS-Notifier service adopts a singleton pattern. It implements a notification broker system on top of the WS-Notification standard implemented in GT4. A library that simplifies the interaction with this service is released with the gHN distribution (namely the IS-Notification library).

Role

The IS-Notifier service allows any entity in the GCUBE framework to receive notifications produced by others services in the framework. The most important feature is to determine if a notification producer or a notification consumer has been relocated in a different node. This feature is possible because IS-Notifier service has as main entities topics and not producers or consumer.

Operations

The IS-Notifier follows the singleton pattern, it has only one PortType (NotifierPortType) and implements the following operations:

  • registerTopic: allows client to register as producer of a topic, if the topic already exists his address is added as producer of the topic.
  • unregisterTopic: allows client to unregister a specific topic.
  • subscribeToTopic: allows client to register as consumer of a topic, f the topic already exists his address is added as consumer of the topic.
  • removeSubscription: allows client to remove the subscription to a topic.
  • listTopics: returns the list of all topic registered.
  • removeNotifier: removes a specific host from all the topic it was registered as producer
  • removeSubscriber: removes a specific host from all the topic it was registered as consumer
  • isOngoing: allows client to know which topic registration are still ongoing or finished.