1.1.1

Table Of Contents
An integer value that sets the buffer size in bytes of the socket connection for this gateway
receiver. If you supply a null value, SQLFire uses the default of 32768 bytes.
MAXTIMEBETWEENPINGS
An integer value that species the time interval to use between pings to connected WAN sites.
This value determines the maximum amount of time that can elapse before a remote WAN
site is considered ofine. The default value is 60000 milliseconds.
SERVER GROUPS
A comma-separated list of server groups on which to deploy the gateway receiver.
Note: The server group names that you specify are converted to all-uppercase
characters, even if you specify the names as quoted identiers.
Example
Create a gateway receiver on any available port between 1530 and 1540, on data stores that
are members of testreceivers:
create gatewayreceiver testreceiver (startport 1530 endport
1541) server groups (testreceivers);
0 rows inserted/updated/deleted
Create a second gateway receiver on in the server group productionreceivers:
create productionreceiver (startport 1540 endport 1551) server
groups (productionreceivers);
0 rows inserted/updated/deleted
Query the GATEWAYRECEIVERS to determine the port number that SQLFire selected:
sqlf> select id, running_port, server_groups from
sys.gatewayreceivers;
ID |RUNNING_PORT |SERVER_GROUPS
------------------------------------------------------------
TESTRECEIVER |1538 |TESTRECEIVERS
PRODUCTIONRECEIVER |1544 |PRODUCTIONRECEIVERS
2 rows selected
CREATE GATEWAYSENDER
Creates a gateway sender to replicate data to a remote SQLFire cluster.
Syntax
CREATE GATEWAYSENDER sender-name
(
REMOTEDSID integer-constant
[ SOCKETBUFFERSIZE integer-constant ]
[ SOCKETREADTIMEOUT integer-constant ]
[ MANUALSTART boolean-constant ]
[ ENABLEBATCHCONFLATION boolean-constant ]
[ BATCHSIZE integer-constant ]
[ BATCHTIMEINTERVAL integer-constant ]
[ ENABLEPERSISTENCE boolean-constant ]
[ DISKSTORENAME disk-name ]
[ MAXQUEUEMEMORY integer-constant ]
[ ALERTTHRESHOLD integer-constant ]
vFabric SQLFire User's Guide484
vFabric SQLFire Reference