influxdb/messaging/doc.go

15 lines
507 B
Go
Raw Normal View History

2014-10-02 02:49:21 +00:00
/*
2014-10-21 02:42:03 +00:00
Package messaging implements a distributed, raft-backed messaging system.
2014-10-02 02:49:21 +00:00
Basics
2014-10-03 03:13:42 +00:00
The broker writes every configuration change and data insert and replicates
those changes to data nodes across the cluster. These changes are segmented into
2014-10-02 02:49:21 +00:00
multiple topics so that they can be parallelized. Configuration changes are
placed in a single "config" topic that is replicated to all data nodes. Each
shard's data is placed in its own topic so that it can be parallized across the
cluster.
*/
2014-10-21 02:42:03 +00:00
package messaging