Documentation ¶
Index ¶
Constants ¶
View Source
const ( DefaultCompactionCycle = 30 * time.Second DefaultFlushSizeBytes uint32 = 20 * 1024 * 1024 // 20 MiB DefaultIteratorBufferSize = 1000 )
View Source
const ( DefaultBlocklistPoll = 5 * time.Minute DefaultMaxTimePerTenant = 5 * time.Minute DefaultBlocklistPollConcurrency = uint(50) DefaultRetentionConcurrency = uint(10) DefaultTenantIndexBuilders = 2 DefaultPrefetchTraceCount = 1000 DefaultSearchChunkSizeBytes = 1_000_000 DefaultReadBufferCount = 8 DefaultReadBufferSize = 4 * 1024 * 1024 )
View Source
const ( // BlockIDMin is the minimum possible value for a block id as a string BlockIDMin = "00000000-0000-0000-0000-000000000000" // BlockIDMax is the maximum possible value for a block id as a string BlockIDMax = "FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CompactionBlockSelector ¶
CompactionBlockSelector is an interface for different algorithms to pick suitable blocks for compaction
type Compactor ¶
type Compactor interface {
EnableCompaction(cfg *CompactorConfig, sharder CompactorSharder, overrides CompactorOverrides)
}
type CompactorConfig ¶
type CompactorConfig struct { ChunkSizeBytes uint32 `yaml:"chunk_size_bytes"` FlushSizeBytes uint32 `yaml:"flush_size_bytes"` MaxCompactionRange time.Duration `yaml:"compaction_window"` MaxCompactionObjects int `yaml:"max_compaction_objects"` MaxBlockBytes uint64 `yaml:"max_block_bytes"` BlockRetention time.Duration `yaml:"block_retention"` CompactedBlockRetention time.Duration `yaml:"compacted_block_retention"` RetentionConcurrency uint `yaml:"retention_concurrency"` IteratorBufferSize int `yaml:"iterator_buffer_size"` MaxTimePerTenant time.Duration `yaml:"max_time_per_tenant"` CompactionCycle time.Duration `yaml:"compaction_cycle"` }
CompactorConfig contains compaction configuration options
type CompactorOverrides ¶ added in v0.6.0
type CompactorSharder ¶
type Config ¶
type Config struct { Pool *pool.Config `yaml:"pool,omitempty"` WAL *wal.Config `yaml:"wal"` Block *common.BlockConfig `yaml:"block"` Search *SearchConfig `yaml:"search"` BlocklistPoll time.Duration `yaml:"blocklist_poll"` BlocklistPollConcurrency uint `yaml:"blocklist_poll_concurrency"` BlocklistPollFallback bool `yaml:"blocklist_poll_fallback"` BlocklistPollTenantIndexBuilders int `yaml:"blocklist_poll_tenant_index_builders"` BlocklistPollStaleTenantIndex time.Duration `yaml:"blocklist_poll_stale_tenant_index"` BlocklistPollJitterMs int `yaml:"blocklist_poll_jitter_ms"` // backends Backend string `yaml:"backend"` Local *local.Config `yaml:"local"` GCS *gcs.Config `yaml:"gcs"` S3 *s3.Config `yaml:"s3"` Azure *azure.Config `yaml:"azure"` // caches Cache string `yaml:"cache"` CacheMinCompactionLevel uint8 `yaml:"cache_min_compaction_level"` CacheMaxBlockAge time.Duration `yaml:"cache_max_block_age"` BackgroundCache *cache.BackgroundConfig `yaml:"background_cache"` Memcached *memcached.Config `yaml:"memcached"` Redis *redis.Config `yaml:"redis"` }
Config holds the entirety of tempodb configuration Defaults are in modules/storage/config.go
type IterateObjectCallback ¶ added in v1.3.0
type Reader ¶
type Reader interface { Find(ctx context.Context, tenantID string, id common.ID, blockStart string, blockEnd string, timeStart int64, timeEnd int64) ([]*tempopb.Trace, []error, error) Search(ctx context.Context, meta *backend.BlockMeta, req *tempopb.SearchRequest, opts common.SearchOptions) (*tempopb.SearchResponse, error) BlockMetas(tenantID string) []*backend.BlockMeta EnablePolling(sharder blocklist.JobSharder) Shutdown() }
type SearchConfig ¶ added in v1.3.0
type SearchConfig struct { // v2 blocks ChunkSizeBytes uint32 `yaml:"chunk_size_bytes"` PrefetchTraceCount int `yaml:"prefetch_trace_count"` // vParquet blocks ReadBufferCount int `yaml:"read_buffer_count"` ReadBufferSizeBytes int `yaml:"read_buffer_size_bytes"` CacheControl struct { Footer bool `yaml:"footer"` ColumnIndex bool `yaml:"column_index"` OffsetIndex bool `yaml:"offset_index"` } `yaml:"cache_control"` }
func (SearchConfig) ApplyToOptions ¶ added in v1.5.0
func (c SearchConfig) ApplyToOptions(o *common.SearchOptions)
type WriteableBlock ¶ added in v0.5.0
type Writer ¶
type Writer interface { WriteBlock(ctx context.Context, block WriteableBlock) error CompleteBlock(block *wal.AppendBlock, combiner model.ObjectCombiner) (common.BackendBlock, error) CompleteBlockWithBackend(ctx context.Context, block *wal.AppendBlock, combiner model.ObjectCombiner, r backend.Reader, w backend.Writer) (common.BackendBlock, error) CompleteSearchBlockWithBackend(block *search.StreamingSearchBlock, blockID uuid.UUID, tenantID string, r backend.Reader, w backend.Writer) (*search.BackendSearchBlock, error) WAL() *wal.WAL }
Source Files ¶
Click to show internal directories.
Click to hide internal directories.