Documentation ¶
Overview ¶
Package gossip implements a protocol for sharing information between Cockroach nodes using an ad-hoc, peer-to-peer network. The self-assembled network aims to minimize time for new information to reach each node, and minimize network traffic required.
Gossiped information is identified by key. Gossip information is captured by info objects.
Single-valued info values can have any type.
A map of info objects is kept by a Gossip instance. Single-valued info objects can be added via Gossip.AddInfo(). Info can be queried for single-valued keys via Gossip.GetInfo.
Package gossip is a generated protocol buffer package. It is generated from these files: cockroach/pkg/gossip/gossip.proto It has these top-level messages: BootstrapInfo Request Response InfoStatus Info
Index ¶
- Constants
- Variables
- func IsNodeIDKey(key string) bool
- func MakeDeadReplicasKey(storeID roachpb.StoreID) string
- func MakeKey(components ...string) string
- func MakeNodeIDKey(nodeID roachpb.NodeID) string
- func MakeNodeLivenessKey(nodeID roachpb.NodeID) string
- func MakePrefixPattern(prefix string) string
- func MakeStoreKey(storeID roachpb.StoreID) string
- func NodeIDFromKey(key string) (roachpb.NodeID, error)
- func RegisterGossipServer(s *grpc.Server, srv GossipServer)
- type BootstrapInfo
- func (*BootstrapInfo) Descriptor() ([]byte, []int)
- func (m *BootstrapInfo) Marshal() (dAtA []byte, err error)
- func (m *BootstrapInfo) MarshalTo(dAtA []byte) (int, error)
- func (*BootstrapInfo) ProtoMessage()
- func (m *BootstrapInfo) Reset()
- func (m *BootstrapInfo) Size() (n int)
- func (m *BootstrapInfo) String() string
- func (m *BootstrapInfo) Unmarshal(dAtA []byte) error
- type Callback
- type Gossip
- func (g *Gossip) AddInfo(key string, val []byte, ttl time.Duration) error
- func (g *Gossip) AddInfoProto(key string, msg proto.Message, ttl time.Duration) error
- func (g *Gossip) EnableSimulationCycler(enable bool)
- func (s Gossip) GetClusterID() uuid.UUID
- func (g *Gossip) GetInfo(key string) ([]byte, error)
- func (g *Gossip) GetInfoProto(key string, msg proto.Message) error
- func (g *Gossip) GetInfoStatus() InfoStatus
- func (s Gossip) GetNodeAddr() *util.UnresolvedAddr
- func (g *Gossip) GetNodeDescriptor(nodeID roachpb.NodeID) (*roachpb.NodeDescriptor, error)
- func (g *Gossip) GetNodeIDAddress(nodeID roachpb.NodeID) (*util.UnresolvedAddr, error)
- func (g *Gossip) GetNodeMetrics() *Metrics
- func (g *Gossip) GetResolvers() []resolver.Resolver
- func (g *Gossip) GetSystemConfig() (config.SystemConfig, bool)
- func (s Gossip) Gossip(stream Gossip_GossipServer) error
- func (g *Gossip) Incoming() []roachpb.NodeID
- func (g *Gossip) LogStatus()
- func (g *Gossip) MaxHops() uint32
- func (g *Gossip) Outgoing() []roachpb.NodeID
- func (g *Gossip) RegisterCallback(pattern string, method Callback) func()
- func (g *Gossip) RegisterSystemConfigChannel() <-chan struct{}
- func (g *Gossip) SetBootstrapInterval(interval time.Duration)
- func (s Gossip) SetClusterID(clusterID uuid.UUID)
- func (g *Gossip) SetCullInterval(interval time.Duration)
- func (g *Gossip) SetNodeDescriptor(desc *roachpb.NodeDescriptor) error
- func (g *Gossip) SetStallInterval(interval time.Duration)
- func (g *Gossip) SetStorage(storage Storage) error
- func (g *Gossip) SimulationCycle()
- func (g *Gossip) Start(advertAddr net.Addr, resolvers []resolver.Resolver)
- type GossipClient
- type GossipServer
- type Gossip_GossipClient
- type Gossip_GossipServer
- type Info
- type InfoStatus
- func (*InfoStatus) Descriptor() ([]byte, []int)
- func (m *InfoStatus) Marshal() (dAtA []byte, err error)
- func (m *InfoStatus) MarshalTo(dAtA []byte) (int, error)
- func (*InfoStatus) ProtoMessage()
- func (m *InfoStatus) Reset()
- func (m *InfoStatus) Size() (n int)
- func (m *InfoStatus) String() string
- func (m *InfoStatus) Unmarshal(dAtA []byte) error
- type Metrics
- type Request
- func (*Request) Descriptor() ([]byte, []int)
- func (*Request) GetUser() string
- func (m *Request) Marshal() (dAtA []byte, err error)
- func (m *Request) MarshalTo(dAtA []byte) (int, error)
- func (*Request) ProtoMessage()
- func (m *Request) Reset()
- func (m *Request) Size() (n int)
- func (m *Request) String() string
- func (m *Request) Unmarshal(dAtA []byte) error
- type Response
- func (*Response) Descriptor() ([]byte, []int)
- func (m *Response) Marshal() (dAtA []byte, err error)
- func (m *Response) MarshalTo(dAtA []byte) (int, error)
- func (*Response) ProtoMessage()
- func (m *Response) Reset()
- func (m *Response) Size() (n int)
- func (m *Response) String() string
- func (m *Response) Unmarshal(dAtA []byte) error
- type Storage
Constants ¶
const ( // KeyClusterID is the unique UUID for this Cockroach cluster. // The value is a string UUID for the cluster. The cluster ID is // gossiped by all nodes that contain a replica of the first range, // and it serves as a check for basic gossip connectivity. The // Gossip.Connected channel is closed when we see this key. KeyClusterID = "cluster-id" // KeyStorePrefix is the key prefix for gossiping stores in the network. // The suffix is a store ID and the value is roachpb.StoreDescriptor. KeyStorePrefix = "store" // KeyDeadReplicasPrefix is the key prefix for gossiping dead replicas in the // network. The suffix is a store ID and the value is // roachpb.StoreDeadReplicas. KeyDeadReplicasPrefix = "replica-dead" // KeyNodeIDPrefix is the key prefix for gossiping node id // addresses. The actual key is suffixed with the decimal // representation of the node id and the value is the host:port // string address of the node. E.g. node:1 => 127.0.0.1:24001 KeyNodeIDPrefix = "node" // KeyNodeLivenessPrefix is the key prefix for gossiping node liveness info. KeyNodeLivenessPrefix = "liveness" // KeySentinel is a key for gossip which must not expire or // else the node considers itself partitioned and will retry with // bootstrap hosts. The sentinel is gossiped by the node that holds // the range lease for the first range. KeySentinel = "sentinel" // KeyFirstRangeDescriptor is the descriptor for the "first" // range. The "first" range contains the meta1 key range, the first // level of the bi-level key addressing scheme. The value is a slice // of storage.Replica structs. KeyFirstRangeDescriptor = "first-range" // KeySystemConfig is the gossip key for the system DB span. // The value if a config.SystemConfig which holds all key/value // pairs in the system DB span. KeySystemConfig = "system-db" )
Constants for gossip keys.
Variables ¶
var ( MetaConnectionsIncomingGauge = metric.Metadata{ Name: "gossip.connections.incoming", Help: "Number of active incoming gossip connections"} MetaConnectionsOutgoingGauge = metric.Metadata{ Name: "gossip.connections.outgoing", Help: "Number of active outgoing gossip connections"} MetaConnectionsRefused = metric.Metadata{ Name: "gossip.connections.refused", Help: "Number of refused incoming gossip connections"} MetaInfosSent = metric.Metadata{ Name: "gossip.infos.sent", Help: "Number of sent gossip Info objects"} MetaInfosReceived = metric.Metadata{ Name: "gossip.infos.received", Help: "Number of received gossip Info objects"} MetaBytesSent = metric.Metadata{ Name: "gossip.bytes.sent", Help: "Number of sent gossip bytes"} MetaBytesReceived = metric.Metadata{ Name: "gossip.bytes.received", Help: "Number of received gossip bytes"} )
Gossip metrics counter names.
var ( ErrInvalidLengthGossip = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowGossip = fmt.Errorf("proto: integer overflow") )
var ( // GossipStoresInterval is the interval for gossipping storage-related info. GossipStoresInterval = envutil.EnvOrDefaultDuration("COCKROACH_GOSSIP_STORES_INTERVAL", defaultGossipStoresInterval) )
Functions ¶
func IsNodeIDKey ¶
IsNodeIDKey returns true iff the provided key is a valid node ID key.
func MakeDeadReplicasKey ¶
MakeDeadReplicasKey returns the dead replicas gossip key for the given store.
func MakeKey ¶
MakeKey creates a canonical key under which to gossip a piece of information. The first argument will typically be one of the key constants defined in this package.
func MakeNodeIDKey ¶
MakeNodeIDKey returns the gossip key for node ID info.
func MakeNodeLivenessKey ¶
MakeNodeLivenessKey returns the gossip key for node liveness info.
func MakePrefixPattern ¶
MakePrefixPattern returns a regular expression pattern that matches precisely the Gossip keys created by invocations of MakeKey with multiple arguments for which the first argument is equal to the given prefix.
func MakeStoreKey ¶
MakeStoreKey returns the gossip key for the given store.
func NodeIDFromKey ¶
NodeIDFromKey attempts to extract a NodeID from the provided key. The key should have been constructed by MakeNodeIDKey. Returns an error if the key is not of the correct type or is not parsable.
func RegisterGossipServer ¶
func RegisterGossipServer(s *grpc.Server, srv GossipServer)
Types ¶
type BootstrapInfo ¶
type BootstrapInfo struct { // Addresses of other nodes in the cluster. Addresses []cockroach_util.UnresolvedAddr `protobuf:"bytes,1,rep,name=addresses" json:"addresses"` // Timestamp at which the bootstrap info was written. Timestamp cockroach_util_hlc.Timestamp `protobuf:"bytes,2,opt,name=timestamp" json:"timestamp"` }
BootstrapInfo contains information necessary to bootstrap the gossip network from a cold start.
func (*BootstrapInfo) Descriptor ¶
func (*BootstrapInfo) Descriptor() ([]byte, []int)
func (*BootstrapInfo) Marshal ¶
func (m *BootstrapInfo) Marshal() (dAtA []byte, err error)
func (*BootstrapInfo) ProtoMessage ¶
func (*BootstrapInfo) ProtoMessage()
func (*BootstrapInfo) Reset ¶
func (m *BootstrapInfo) Reset()
func (*BootstrapInfo) Size ¶
func (m *BootstrapInfo) Size() (n int)
func (*BootstrapInfo) String ¶
func (m *BootstrapInfo) String() string
func (*BootstrapInfo) Unmarshal ¶
func (m *BootstrapInfo) Unmarshal(dAtA []byte) error
type Callback ¶
Callback is a callback method to be invoked on gossip update of info denoted by key.
type Gossip ¶
type Gossip struct { Connected chan struct{} // Closed upon initial connection // contains filtered or unexported fields }
Gossip is an instance of a gossip node. It embeds a gossip server. During bootstrapping, the bootstrap list contains candidates for entry to the gossip network.
func New ¶
func New( ambient log.AmbientContext, nodeID *base.NodeIDContainer, rpcContext *rpc.Context, grpcServer *grpc.Server, stopper *stop.Stopper, registry *metric.Registry, ) *Gossip
New creates an instance of a gossip node. The higher level manages the NodeIDContainer instance (which can be shared by various server components). The ambient context is expected to already contain the node ID.
func NewTest ¶
func NewTest( nodeID roachpb.NodeID, rpcContext *rpc.Context, grpcServer *grpc.Server, stopper *stop.Stopper, registry *metric.Registry, ) *Gossip
NewTest is a simplified wrapper around New that creates the NodeIDContainer internally. Used for testing.
func (*Gossip) AddInfo ¶
AddInfo adds or updates an info object. Returns an error if info couldn't be added.
func (*Gossip) AddInfoProto ¶
AddInfoProto adds or updates an info object. Returns an error if info couldn't be added.
func (*Gossip) EnableSimulationCycler ¶
EnableSimulationCycler is for TESTING PURPOSES ONLY. It sets a condition variable which is signaled at each cycle of the simulation via SimulationCycle(). The gossip server makes each connecting client wait for the cycler to signal before responding.
func (Gossip) GetClusterID ¶
func (*Gossip) GetInfo ¶
GetInfo returns an info value by key or an error if specified key does not exist or has expired.
func (*Gossip) GetInfoProto ¶
GetInfoProto returns an info value by key or an error if specified key does not exist or has expired.
func (*Gossip) GetInfoStatus ¶
func (g *Gossip) GetInfoStatus() InfoStatus
GetInfoStatus returns the a copy of the contents of the infostore.
func (Gossip) GetNodeAddr ¶
func (s Gossip) GetNodeAddr() *util.UnresolvedAddr
GetNodeAddr returns the node's address stored in the Infostore.
func (*Gossip) GetNodeDescriptor ¶
GetNodeDescriptor looks up the descriptor of the node by ID.
func (*Gossip) GetNodeIDAddress ¶
GetNodeIDAddress looks up the address of the node by ID.
func (*Gossip) GetNodeMetrics ¶
GetNodeMetrics returns the gossip node metrics.
func (*Gossip) GetResolvers ¶
GetResolvers returns a copy of the resolvers slice.
func (*Gossip) GetSystemConfig ¶
func (g *Gossip) GetSystemConfig() (config.SystemConfig, bool)
GetSystemConfig returns the local unmarshalled version of the system config. The second return value indicates whether the system config has been set yet.
func (Gossip) Gossip ¶
func (s Gossip) Gossip(stream Gossip_GossipServer) error
Gossip receives gossiped information from a peer node. The received delta is combined with the infostore, and this node's own gossip is returned to requesting client.
func (*Gossip) LogStatus ¶
func (g *Gossip) LogStatus()
LogStatus logs the current status of gossip such as the incoming and outgoing connections.
func (*Gossip) MaxHops ¶
MaxHops returns the maximum number of hops to reach any other node in the system, according to the infos which have reached this node via gossip network.
func (*Gossip) Outgoing ¶
Outgoing returns a slice of outgoing gossip client connection node IDs. Note that these outgoing client connections may not actually be legitimately connected. They may be in the process of trying, or may already have failed, but haven't yet been processed by the gossip instance.
func (*Gossip) RegisterCallback ¶
RegisterCallback registers a callback for a key pattern to be invoked whenever new info for a gossip key matching pattern is received. The callback method is invoked with the info key which matched pattern. Returns a function to unregister the callback.
func (*Gossip) RegisterSystemConfigChannel ¶
func (g *Gossip) RegisterSystemConfigChannel() <-chan struct{}
RegisterSystemConfigChannel registers a channel to signify updates for the system config. It is notified after registration, and whenever a new system config is successfully unmarshalled.
func (*Gossip) SetBootstrapInterval ¶
SetBootstrapInterval sets a minimum interval between successive attempts to connect to new hosts in order to join the gossip network.
func (Gossip) SetClusterID ¶
SetClusterID sets the cluster ID to prevent nodes from illegally connecting to incorrect clusters, or from allowing nodes from other clusters to incorrectly connect to this one.
func (*Gossip) SetCullInterval ¶
SetCullInterval sets the interval between periodic shutdown of outgoing gossip client connections in an effort to improve the fitness of the network.
func (*Gossip) SetNodeDescriptor ¶
func (g *Gossip) SetNodeDescriptor(desc *roachpb.NodeDescriptor) error
SetNodeDescriptor adds the node descriptor to the gossip network.
func (*Gossip) SetStallInterval ¶
SetStallInterval sets the interval between successive checks to determine whether this host is not connected to the gossip network, or else is connected to a partition which doesn't include the host which gossips the sentinel info.
func (*Gossip) SetStorage ¶
SetStorage provides an instance of the Storage interface for reading and writing gossip bootstrap data from persistent storage. This should be invoked as early in the lifecycle of a gossip instance as possible, but can be called at any time.
func (*Gossip) SimulationCycle ¶
func (g *Gossip) SimulationCycle()
SimulationCycle cycles this gossip node's server by allowing all connected clients to proceed one step.
func (*Gossip) Start ¶
Start launches the gossip instance, which commences joining the gossip network using the supplied rpc server and previously known peer addresses in addition to any bootstrap addresses specified via --join and passed to this method via the resolvers parameter.
The supplied advertised address is used to identify the gossip instance in the gossip network; it will be used by other instances to connect to this instance.
This method starts bootstrap loop, gossip server, and client management in separate goroutines and returns.
type GossipClient ¶
type GossipClient interface {
Gossip(ctx context.Context, opts ...grpc.CallOption) (Gossip_GossipClient, error)
}
func NewGossipClient ¶
func NewGossipClient(cc *grpc.ClientConn) GossipClient
type GossipServer ¶
type GossipServer interface {
Gossip(Gossip_GossipServer) error
}
type Gossip_GossipClient ¶
type Gossip_GossipServer ¶
type Info ¶
type Info struct { Value cockroach_roachpb1.Value `protobuf:"bytes,1,opt,name=value" json:"value"` // Wall time of info when generated by originating node (Unix-nanos). OrigStamp int64 `protobuf:"varint,2,opt,name=orig_stamp,json=origStamp,proto3" json:"orig_stamp,omitempty"` // Wall time when info is to be discarded (Unix-nanos). TTLStamp int64 `protobuf:"varint,3,opt,name=ttl_stamp,json=ttlStamp,proto3" json:"ttl_stamp,omitempty"` // Number of hops from originator. Hops uint32 `protobuf:"varint,4,opt,name=hops,proto3" json:"hops,omitempty"` // Originating node's ID. NodeID github_com_cockroachdb_cockroach_pkg_roachpb.NodeID `` /* 141-byte string literal not displayed */ // Peer node ID which passed this info. PeerID github_com_cockroachdb_cockroach_pkg_roachpb.NodeID `` /* 141-byte string literal not displayed */ }
Info is the basic unit of information traded over the gossip network.
func (*Info) Descriptor ¶
func (*Info) ProtoMessage ¶
func (*Info) ProtoMessage()
type InfoStatus ¶
InfoStatus contains information about the current status of the infoStore.
func (*InfoStatus) Descriptor ¶
func (*InfoStatus) Descriptor() ([]byte, []int)
func (*InfoStatus) Marshal ¶
func (m *InfoStatus) Marshal() (dAtA []byte, err error)
func (*InfoStatus) ProtoMessage ¶
func (*InfoStatus) ProtoMessage()
func (*InfoStatus) Reset ¶
func (m *InfoStatus) Reset()
func (*InfoStatus) Size ¶
func (m *InfoStatus) Size() (n int)
func (*InfoStatus) String ¶
func (m *InfoStatus) String() string
func (*InfoStatus) Unmarshal ¶
func (m *InfoStatus) Unmarshal(dAtA []byte) error
type Metrics ¶
type Metrics struct { ConnectionsRefused *metric.Counter BytesReceived *metric.Counter BytesSent *metric.Counter InfosReceived *metric.Counter InfosSent *metric.Counter }
Metrics contains gossip metrics used per node and server.
type Request ¶
type Request struct { // Requesting node's ID. NodeID github_com_cockroachdb_cockroach_pkg_roachpb.NodeID `` /* 141-byte string literal not displayed */ // Address of the requesting client. Addr cockroach_util.UnresolvedAddr `protobuf:"bytes,2,opt,name=addr" json:"addr"` // Map of high water timestamps from infos originating at other // nodes, as seen by the requester. HighWaterStamps map[github_com_cockroachdb_cockroach_pkg_roachpb.NodeID]int64 `` /* 241-byte string literal not displayed */ // Delta of Infos originating at sender. Delta map[string]*Info `` /* 137-byte string literal not displayed */ // Cluster ID to prevent illegal connections. ClusterID github_com_cockroachdb_cockroach_pkg_util_uuid.UUID `` /* 141-byte string literal not displayed */ }
Request is the request struct passed with the Gossip RPC.
func (*Request) Descriptor ¶
func (*Request) GetUser ¶
GetUser implements security.RequestWithUser. Gossip messages are always sent by the node user.
func (*Request) ProtoMessage ¶
func (*Request) ProtoMessage()
type Response ¶
type Response struct { // Responding Node's ID. NodeID github_com_cockroachdb_cockroach_pkg_roachpb.NodeID `` /* 141-byte string literal not displayed */ // Address of the responding client. Addr cockroach_util.UnresolvedAddr `protobuf:"bytes,2,opt,name=addr" json:"addr"` // Non-nil means client should retry with this address. AlternateAddr *cockroach_util.UnresolvedAddr `protobuf:"bytes,3,opt,name=alternate_addr,json=alternateAddr" json:"alternate_addr,omitempty"` // Node ID of the alternate address, if alternate_addr is not nil. AlternateNodeID github_com_cockroachdb_cockroach_pkg_roachpb.NodeID `` /* 170-byte string literal not displayed */ // Delta of Infos which are fresh according to the map of Node info messages // passed with the request. Delta map[string]*Info `` /* 137-byte string literal not displayed */ // Map of high water timestamps from infos originating at other // nodes, as seen by the responder. HighWaterStamps map[github_com_cockroachdb_cockroach_pkg_roachpb.NodeID]int64 `` /* 241-byte string literal not displayed */ }
Response is returned from the Gossip.Gossip RPC. Delta will be nil in the event that Alternate is set.
func (*Response) Descriptor ¶
func (*Response) ProtoMessage ¶
func (*Response) ProtoMessage()
type Storage ¶
type Storage interface { // ReadBootstrapInfo fetches the bootstrap data from the persistent // store into the provided bootstrap protobuf. Returns nil or an // error on failure. ReadBootstrapInfo(*BootstrapInfo) error // WriteBootstrapInfo stores the provided bootstrap data to the // persistent store. Returns nil or an error on failure. WriteBootstrapInfo(*BootstrapInfo) error }
Storage is an interface which allows the gossip instance to read and write bootstrapping data to persistent storage between instantiations.