mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.0' into cassandra-2.1
This commit is contained in:
commit
3f6ad3c988
|
|
@ -488,8 +488,8 @@ Table of Contents
|
|||
Currently, events are sent when new nodes are added to the cluster, and
|
||||
when nodes are removed. The body of the message (after the event type)
|
||||
consists of a [string] and an [inet], corresponding respectively to the
|
||||
type of change ("NEW_NODE" or "REMOVED_NODE") followed by the address of
|
||||
the new/removed node.
|
||||
type of change ("NEW_NODE", "REMOVED_NODE", or "MOVED_NODE") followed
|
||||
by the address of the new/removed/moved node.
|
||||
- "STATUS_CHANGE": events related to change of node status. Currently,
|
||||
up/down events are sent. The body of the message (after the event type)
|
||||
consists of a [string] and an [inet], corresponding respectively to the
|
||||
|
|
@ -514,6 +514,9 @@ Table of Contents
|
|||
should be enough), otherwise they may experience a connection refusal at
|
||||
first.
|
||||
|
||||
It is possible for the same event to be sent multiple times. Therefore,
|
||||
a client library should ignore the same event if it has already been notified
|
||||
of a change.
|
||||
|
||||
5. Compression
|
||||
|
||||
|
|
|
|||
|
|
@ -606,8 +606,8 @@ Table of Contents
|
|||
Currently, events are sent when new nodes are added to the cluster, and
|
||||
when nodes are removed. The body of the message (after the event type)
|
||||
consists of a [string] and an [inet], corresponding respectively to the
|
||||
type of change ("NEW_NODE" or "REMOVED_NODE") followed by the address of
|
||||
the new/removed node.
|
||||
type of change ("NEW_NODE", "REMOVED_NODE", or "MOVED_NODE") followed
|
||||
by the address of the new/removed/moved node.
|
||||
- "STATUS_CHANGE": events related to change of node status. Currently,
|
||||
up/down events are sent. The body of the message (after the event type)
|
||||
consists of a [string] and an [inet], corresponding respectively to the
|
||||
|
|
@ -632,6 +632,10 @@ Table of Contents
|
|||
should be enough), otherwise they may experience a connection refusal at
|
||||
first.
|
||||
|
||||
It is possible for the same event to be sent multiple times. Therefore,
|
||||
a client library should ignore the same event if it has already been notified
|
||||
of a change.
|
||||
|
||||
4.2.7. AUTH_CHALLENGE
|
||||
|
||||
A server authentication challenge (see AUTH_RESPONSE (Section 4.1.2) for more
|
||||
|
|
|
|||
|
|
@ -660,8 +660,8 @@ Table of Contents
|
|||
Currently, events are sent when new nodes are added to the cluster, and
|
||||
when nodes are removed. The body of the message (after the event type)
|
||||
consists of a [string] and an [inet], corresponding respectively to the
|
||||
type of change ("NEW_NODE" or "REMOVED_NODE") followed by the address of
|
||||
the new/removed node.
|
||||
type of change ("NEW_NODE", "REMOVED_NODE", or "MOVED_NODE") followed
|
||||
by the address of the new/removed/moved node.
|
||||
- "STATUS_CHANGE": events related to change of node status. Currently,
|
||||
up/down events are sent. The body of the message (after the event type)
|
||||
consists of a [string] and an [inet], corresponding respectively to the
|
||||
|
|
@ -691,6 +691,10 @@ Table of Contents
|
|||
should be enough), otherwise they may experience a connection refusal at
|
||||
first.
|
||||
|
||||
It is possible for the same event to be sent multiple times. Therefore,
|
||||
a client library should ignore the same event if it has already been notified
|
||||
of a change.
|
||||
|
||||
4.2.7. AUTH_CHALLENGE
|
||||
|
||||
A server authentication challenge (see AUTH_RESPONSE (Section 4.1.2) for more
|
||||
|
|
|
|||
Loading…
Reference in New Issue