epadmin-cluster
epadmin cluster target — Manages StreamBase Runtime clusters.
DESCRIPTION
Use the cluster target to display information about a StreamBase Runtime cluster, to remove a node from the cluster, or to wait for remote nodes to be discovered.
The cluster target has three commands:
The designation [
in syntax examples is a reminder that this
command requires either the global parameter sn
|ad
]‑‑servicename
or the ‑‑adminport
and
‑‑hostname
combination to identify the node or cluster
of interest.
epadmin display cluster
Displays information about a specified cluster. Use the
type
parameter to narrow the returned information.
Valid values are:
-
classmismatches — Display any class mismatch information between the local and discovered remote nodes.
-
configuration — Display local node configuration information.
-
local — Display local node status information.
-
remote — Display information about discovered remote nodes.
epadmin[
display cluster epadminsn
|ad
][
display cluster --type=configuration epadminsn
|ad
][
display cluster --type=local epadminsn
|ad
][
display cluster --type=remote epadminsn
|ad
][
display cluster --type=classmismatchessn
|ad
]
Command Parameter | Description | Required |
---|---|---|
type
|
Specifies optional information type to display. Valid values are one of
classmismatches , configuration , local , or
remote .
|
No. The default value is remote .
|
epadmin remove cluster
Removes a discovered node. This command allows a node to removed from a cluster if it is never going to be part of the cluster again, such as when it was permanently removed from service.
epadmin [sn
|ad
]
remove cluster --remotenode=A
Command Parameter | Description | Required |
---|---|---|
remotenode
|
Remote node name. The node must be in the Down state. | Yes. |
epadmin wait cluster
Waits for remote nodes to be discovered. This command waits for
every node specified in the nodes
parameter to be
specified. The command reports Discovered
from every
active node in the cluster if the specified nodes are discovered, and eventually
reports Undiscovered
if not.
For example, for a two node cluster, sbuser
, with
nodes A and B, consider the following command:
epadmin --servicename=sbuser wait cluster --remotenode=A.sbuser,B.sbuser,C.sbuser
This command quickly returns the first four lines below for the A and B nodes (one response from each active node), then pauses to discover the C node. After a few moments, the command times out and returns the last two lines, one from each active node.
[A.sbuser] Discovered node A.sbuser [A.sbuser] Discovered node B.sbuser [B.sbuser] Discovered node A.sbuser [B.sbuser] Discovered node B.sbuser Unable to discover node C.sbuser: Remote node 'C.sbuser' cannot be accessed, current state is 'Undiscovered' Unable to discover node C.sbuser: Remote node 'C.sbuser' cannot be accessed, current state is 'Undiscovered'
epadmin[
wait cluster --nodes=sn
|ad
]nodename1,nodename2,...
Command Parameter | Description | Required |
---|---|---|
nodes
|
Comma-separated list of nodes without spaces, each node in the form
nodename.clustername . Quotes
around the list of nodes are accepted but not required.
|
Yes. |