Documentation ¶
Overview ¶
Package cluster provides an elastic peer discovery and gossip layer.
Ingest and store instances join the same cluster and know about each other. Store instances consume segments from each ingest instance, and broadcast queries to each store instance. In the future, ingest instances will share load information to potentially refuse connections and balance writes.
Index ¶
Constants ¶
const ( // PeerTypeIngest serves the ingest API. PeerTypeIngest PeerType = "ingest" // PeerTypeStore serves the store API. PeerTypeStore = "store" // PeerTypeIngestStore serves both ingest and store APIs. PeerTypeIngestStore = "ingeststore" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Peer ¶
type Peer struct {
// contains filtered or unexported fields
}
Peer represents this node in the cluster.
func NewPeer ¶
func NewPeer(addr string, port int, existing []string, t PeerType, apiPort int, logger log.Logger) (*Peer, error)
NewPeer creates or joins a cluster with the existing peers. We will listen for cluster communications on the given addr:port. We advertise a PeerType HTTP API, reachable on apiPort.
func (*Peer) ClusterSize ¶
ClusterSize returns the total size of the cluster from this node's perspective.