Configuring a gateway for accelerated event notification

You can choose to use a dedicated gateway to forward accelerated events mainly for performance reasons or to send the events to a particular ObjectServer. If using a dedicated gateway, you must update its table replication definition file so that only accelerated inserts and updates are replicated forward.

About this task

To configure a unidirectional ObjectServer gateway for accelerated event notification:

Procedure

  1. Open the following gateway table replication definition file:

    $OMNIHOME/gates/objserv_uni/objserv_uni.reader.tblrep.def

  2. Locate the following lines:
    REPLICATE ALL FROM TABLE 'alerts.status' USING MAP 'StatusMap';
    REPLICATE ALL FROM TABLE 'alerts.journal' USING MAP 'JournalMap';
    REPLICATE ALL FROM TABLE 'alerts.details' USING MAP 'DetailsMap';
    
  3. Replace these three lines with the following single line:
    REPLICATE FT_INSERT,FT_UPDATE FROM TABLE 'alerts.status' USING MAP 'StatusMap';
  4. Save the file.

What to do next

For a bidirectional gateway, you must modify the corresponding files in a similar manner. The gateway table replication definition file for a bidirectional gateway is $OMNIHOME/gates/objserv_bi/objserv_bi.reader.tblrep.def.