diff --git a/storage/local/index/index.go b/storage/local/index/index.go index a6ed026ad8..808abd3afc 100644 --- a/storage/local/index/index.go +++ b/storage/local/index/index.go @@ -1,14 +1,32 @@ package index import ( + "flag" + "os" + "path" "sync" + "github.com/golang/glog" clientmodel "github.com/prometheus/client_golang/model" "github.com/prometheus/prometheus/storage/metric" "github.com/prometheus/prometheus/utility" ) +const ( + fingerprintToMetricDir = "fingerprint_to_metric" + labelNameToLabelValuesDir = "labelname_to_labelvalues" + labelPairToFingerprintsDir = "labelpair_to_fingerprints" + fingerprintMembershipDir = "fingerprint_membership" +) + +var ( + fingerprintToMetricCacheSize = flag.Int("storage.fingerprintToMetricCacheSizeBytes", 25*1024*1024, "The size in bytes for the fingerprint to metric index cache.") + labelNameToLabelValuesCacheSize = flag.Int("storage.labelNameToLabelValuesCacheSizeBytes", 25*1024*1024, "The size in bytes for the label name to label values index cache.") + labelPairToFingerprintsCacheSize = flag.Int("storage.labelPairToFingerprintsCacheSizeBytes", 25*1024*1024, "The size in bytes for the label pair to fingerprints index cache.") + fingerprintMembershipCacheSize = flag.Int("storage.fingerprintMembershipCacheSizeBytes", 5*1024*1024, "The size in bytes for the metric membership index cache.") +) + // FingerprintMetricMapping is an in-memory map of fingerprints to metrics. type FingerprintMetricMapping map[clientmodel.Fingerprint]clientmodel.Metric @@ -208,23 +226,61 @@ func (i *SynchronizedIndexer) IndexMetrics(b FingerprintMetricMapping) error { return i.i.IndexMetrics(b) } -// DiskIndexer is a MetricIndexer that indexes all standard facets of a metric -// that a user or the Prometheus subsystem would want to query against: +// diskIndexer is a MetricIndexer that keeps all indexes in levelDBs except the +// fingerprint-to-metric index for non-archived metrics (which is kept in a +// normal in-memory map, but serialized to disk at shutdown and deserialized at +// startup). // -// -> -//