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
- Open the following gateway table replication definition
file:
$OMNIHOME/gates/objserv_uni/objserv_uni.reader.tblrep.def
- 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';
- Replace these three lines with the following single line:
REPLICATE FT_INSERT,FT_UPDATE FROM TABLE 'alerts.status' USING MAP 'StatusMap';
- 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.