mirror of
				https://github.com/prometheus/prometheus.git
				synced 2025-10-31 08:21:16 +01:00 
			
		
		
		
	* tsdb: Added ChunkQueryable implementations to db; unified compactor, querier and fanout block iterating. Chained to https://github.com/prometheus/prometheus/pull/7059 * NewMerge(Chunk)Querier now takies multiple primaries allowing tsdb DB code to use it. * Added single SeriesEntry / ChunkEntry for all series implementations. * Unified all vertical, and non vertical for compact and querying to single merge series / chunk sets by reusing VerticalSeriesMergeFunc for overlapping algorithm (same logic as before) * Added block (Base/Chunk/)Querier for block querying. We then use populateAndTomb(Base/Chunk/) to iterate over chunks or samples. * Refactored endpoint tests and querier tests to include subtests. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Addressed comments from Brian and Beorn. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed snapshot test and added chunk iterator support for DBReadOnly. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed race when iterating over Ats first. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed tests. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed populate block tests. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed endpoints test. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed test. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Added test & fixed case of head open chunk. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed DBReadOnly tests and bug producing 1 sample chunks. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Added cases for partial block overlap for multiple full chunks. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Added extra tests for chunk meta after compaction. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com> * Fixed small vertical merge bug and added more tests for that. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 The Prometheus Authors
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| // http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| package storage
 | |
| 
 | |
| // lazyGenericSeriesSet is a wrapped series set that is initialised on first call to Next().
 | |
| type lazyGenericSeriesSet struct {
 | |
| 	init func() (genericSeriesSet, bool)
 | |
| 
 | |
| 	set genericSeriesSet
 | |
| }
 | |
| 
 | |
| func (c *lazyGenericSeriesSet) Next() bool {
 | |
| 	if c.set != nil {
 | |
| 		return c.set.Next()
 | |
| 	}
 | |
| 	var ok bool
 | |
| 	c.set, ok = c.init()
 | |
| 	return ok
 | |
| }
 | |
| 
 | |
| func (c *lazyGenericSeriesSet) Err() error {
 | |
| 	if c.set != nil {
 | |
| 		return c.set.Err()
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (c *lazyGenericSeriesSet) At() Labels {
 | |
| 	if c.set != nil {
 | |
| 		return c.set.At()
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (c *lazyGenericSeriesSet) Warnings() Warnings {
 | |
| 	if c.set != nil {
 | |
| 		return c.set.Warnings()
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type warningsOnlySeriesSet Warnings
 | |
| 
 | |
| func (warningsOnlySeriesSet) Next() bool           { return false }
 | |
| func (warningsOnlySeriesSet) Err() error           { return nil }
 | |
| func (warningsOnlySeriesSet) At() Labels           { return nil }
 | |
| func (c warningsOnlySeriesSet) Warnings() Warnings { return Warnings(c) }
 | |
| 
 | |
| type errorOnlySeriesSet struct {
 | |
| 	err error
 | |
| }
 | |
| 
 | |
| func (errorOnlySeriesSet) Next() bool         { return false }
 | |
| func (errorOnlySeriesSet) At() Labels         { return nil }
 | |
| func (s errorOnlySeriesSet) Err() error       { return s.err }
 | |
| func (errorOnlySeriesSet) Warnings() Warnings { return nil }
 |