public interface FabricServer extends FabricService
FabricServer is a singleton that allows remote clients to connect to
the GemFireXD cluster(distributed system). It is a peer member of the
distributed system. A FabricServer is
started by invoking the start(java.util.Properties) method with configuration parameters
as described
below. Use FabricServiceManager to
get a reference to the FabricServer singleton instance.
When a program calls start(java.util.Properties), if start-locator is configured
then an embedded locator is started. Else, among other things a distribution
manager is started that will attempt to join the distributed system either using
the locators configuration parameter or using mcast (if mcast-port is set).
All connections that are configured to use the same multicast address/port and
the same locators are part of the same distributed FabricServer system.
The current version supports only a single instance of FabricServer
in a virtual machine at a time.
Invoking NetworkInterface on the current virtual machine enables
other programs to connect to this virtual machine using the client JDBC driver.
Attempts to connect to multiple distributed systems (that is calling
start(java.util.Properties) multiple times with different configuration
Properties) will result in an IllegalStateException
being thrown. If start is invoked multiple times with equivalent
Properties, then no action is taken during subsequent calls.
Use FabricServiceManager to access the singleton
instance which can be stopped and reconnected using different
Properties for different distributed system connections.
Note that the application can also start/stop the FabricServer
instance when creating the first JDBC connection with the requisite boot properties.
The properties used to bootstrap the server instance is same as the connection
properties.
Configuration properties are listed in the online documentation.
Example:
Properties p = new Properties();
p.setProperty("mcast-port", "12444"); // All members in the cluster use the same mcast-port
p.setProperty("conserve-sockets", "false"); // Don't conserve socket connections; Go fast
p.setProperty("statistic-sampling-enabled", "true"); // Write out performance statistics
final FabricServer server = FabricServiceManager.getFabricServerInstance();
server.start(p);
// Start the DRDA network server and listen for client connections
server.startNetworkServer(null,-1, null); // use defaults ; port 1527
Properties can be also configured in a file called 'gemfirexd.properties' or defined as system properties. GemFireXD looks for this file in the current working directory, followed by 'gemfirexd.system.home' directory and then in 'user.home' directory. The file name can be overridden using the system property -Dgemfirexd.properties=<property file>. If this value is a relative file system path then the above search is done. If it is an absolute file system path then that file must exist; no search for it is done.
The actual configuration attribute values used to connect comes from the following sources:
gemfirexd.propertyName" is defined
and its value is not an empty string
then its value will be used for the named configuration attribute.
bootProperties
parameter object and its value is not an empty string
then its value will be used for that configuration attribute.
The primary differences between booting a distributed system using a first JDBC connection using boot properties vs. using the FabricServer API are the following:
FabricService.StateNETSERVER_DEFAULT_PORT, STOP_NETWORK_SERVERS| Modifier and Type | Method and Description |
|---|---|
void |
start(java.util.Properties bootProperties)
Start the GemFireXD server singleton instance if not already started.
|
void |
start(java.util.Properties bootProperties,
boolean ignoreIfStarted)
Start the GemFireXD server singleton instance if not already started.
|
FabricService.State |
status()
Returns the fabric server status.
|
getAllNetworkServers, isReconnecting, serviceStatus, startDRDAServer, startNetworkServer, startThriftServer, stop, stopAllNetworkServers, stopReconnecting, waitUntilReconnectedvoid start(java.util.Properties bootProperties)
throws java.sql.SQLException
Properties can be also configured in a file called 'gemfirexd.properties' or defined as system properties. GemFireXD looks for this file in 'gemfirexd.user.home' directory, if set, otherwise in the current working directory, followed by 'user.home' directory. The file name can be overridden using the system property -Dgemfirexd.properties=<property file>. If this value is a relative file system path then the above search is done. If it is an absolute file system path then that file must exist; no search for it is done.
The actual configuration attribute values used to connect comes from the following sources:
gemfirexd.propertyName" is defined
and its value is not an empty string
then its value will be used for the named configuration attribute.
bootProperties
parameter object and its value is not an empty string
then its value will be used for that configuration attribute.
If authentication is switched on, system user credentials must also be passed to start the server
bootProperties - Driver boot properties. If non-null, overrides default properties in
'gemfirexd.properties'.java.sql.SQLExceptionvoid start(java.util.Properties bootProperties,
boolean ignoreIfStarted)
throws java.sql.SQLException
Properties can be also configured in a file called 'gemfirexd.properties' or defined as system properties. GemFireXD looks for this file in 'gemfirexd.user.home' directory, if set, otherwise in the current working directory, followed by 'user.home' directory. The file name can be overridden using the system property -Dgemfirexd.properties=<property file>. If this value is a relative file system path then the above search is done. If it is an absolute file system path then that file must exist; no search for it is done.
The actual configuration attribute values used to connect comes from the following sources:
gemfirexd.propertyName" is defined
and its value is not an empty string
then its value will be used for the named configuration attribute.
bootProperties
parameter object and its value is not an empty string
then its value will be used for that configuration attribute.
If authentication is switched on, system user credentials must also be passed to start the server
bootProperties - Driver boot properties. If non-null, overrides default properties in
'gemfirexd.properties'.ignoreIfStarted - if true then reuse any previous active instance,
else stop any previous instance and start a new
one with given propertiesjava.sql.SQLExceptionFabricService.State status()
status in interface FabricServiceCopyright © 2010-2015 Pivotal Software, Inc. All rights reserved.