Documentation ¶
Index ¶
Constants ¶
View Source
const ( // ModeReadWrite is to allow both read and write ModeReadWrite = iota // ModeReadOnly is to allow only read operations ModeReadOnly // ModeWriteOnly is to allow only write operations ModeWriteOnly // BoltDBShipperType holds the index type for using boltdb with shipper which keeps flushing them to a shared storage BoltDBShipperType = "boltdb-shipper" // FilesystemObjectStoreType holds the periodic config type for the filesystem store FilesystemObjectStoreType = "filesystem" // UploadInterval defines interval for uploading active boltdb files from local which are being written to by ingesters. UploadInterval = 15 * time.Minute )
Variables ¶
This section is empty.
Functions ¶
func NewBoltDBShipperTableClient ¶
func NewBoltDBShipperTableClient(objectClient chunk.ObjectClient) chunk.TableClient
func NewShipper ¶
func NewShipper(cfg Config, storageClient chunk.ObjectClient, registerer prometheus.Registerer) (chunk.IndexClient, error)
NewShipper creates a shipper for syncing local objects with a store
Types ¶
type Config ¶
type Config struct { ActiveIndexDirectory string `yaml:"active_index_directory"` CacheLocation string `yaml:"cache_location"` CacheTTL time.Duration `yaml:"cache_ttl"` ResyncInterval time.Duration `yaml:"resync_interval"` IngesterName string `yaml:"-"` Mode int `yaml:"-"` }
func (*Config) RegisterFlags ¶
RegisterFlags registers flags.
type Shipper ¶
type Shipper struct {
// contains filtered or unexported fields
}
func (*Shipper) BatchWrite ¶
func (*Shipper) NewWriteBatch ¶
func (s *Shipper) NewWriteBatch() chunk.WriteBatch
func (*Shipper) QueryPages ¶
Click to show internal directories.
Click to hide internal directories.