mirror of
				https://github.com/prometheus/prometheus.git
				synced 2025-10-31 08:21:16 +01:00 
			
		
		
		
	* Disable isolation in isolation struct Signed-off-by: darshanime <deathbullet@gmail.com> * Run tsdb tests with isolation disabled Signed-off-by: darshanime <deathbullet@gmail.com> * Check for isolation disabled in isoState.Close() Signed-off-by: darshanime <deathbullet@gmail.com> * use t.Skip to skip isolation tests when disabled Signed-off-by: darshanime <deathbullet@gmail.com> * address review comments Signed-off-by: darshanime <deathbullet@gmail.com> * fix test for defaultIsolationState Signed-off-by: darshanime <deathbullet@gmail.com> * Change flag name. Set flag in DB. Do not init txRing. Close isoState. Signed-off-by: Ganesh Vernekar <ganeshvern@gmail.com> * Test disabled isolation in CircleCI test_go Signed-off-by: Ganesh Vernekar <ganeshvern@gmail.com> * Skip isolation related tests in db_test.go Signed-off-by: Ganesh Vernekar <ganeshvern@gmail.com> Co-authored-by: Ganesh Vernekar <ganeshvern@gmail.com>
		
			
				
	
	
		
			101 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 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 tsdb
 | |
| 
 | |
| import (
 | |
| 	"math"
 | |
| 	"strconv"
 | |
| 	"sync"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func BenchmarkIsolation(b *testing.B) {
 | |
| 	for _, goroutines := range []int{10, 100, 1000, 10000} {
 | |
| 		b.Run(strconv.Itoa(goroutines), func(b *testing.B) {
 | |
| 			iso := newIsolation(false)
 | |
| 
 | |
| 			wg := sync.WaitGroup{}
 | |
| 			start := make(chan struct{})
 | |
| 
 | |
| 			for g := 0; g < goroutines; g++ {
 | |
| 				wg.Add(1)
 | |
| 
 | |
| 				go func() {
 | |
| 					defer wg.Done()
 | |
| 					<-start
 | |
| 
 | |
| 					for i := 0; i < b.N; i++ {
 | |
| 						appendID, _ := iso.newAppendID()
 | |
| 
 | |
| 						iso.closeAppend(appendID)
 | |
| 					}
 | |
| 				}()
 | |
| 			}
 | |
| 
 | |
| 			b.ResetTimer()
 | |
| 			close(start)
 | |
| 			wg.Wait()
 | |
| 		})
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func BenchmarkIsolationWithState(b *testing.B) {
 | |
| 	for _, goroutines := range []int{10, 100, 1000, 10000} {
 | |
| 		b.Run(strconv.Itoa(goroutines), func(b *testing.B) {
 | |
| 			iso := newIsolation(false)
 | |
| 
 | |
| 			wg := sync.WaitGroup{}
 | |
| 			start := make(chan struct{})
 | |
| 
 | |
| 			for g := 0; g < goroutines; g++ {
 | |
| 				wg.Add(1)
 | |
| 
 | |
| 				go func() {
 | |
| 					defer wg.Done()
 | |
| 					<-start
 | |
| 
 | |
| 					for i := 0; i < b.N; i++ {
 | |
| 						appendID, _ := iso.newAppendID()
 | |
| 
 | |
| 						iso.closeAppend(appendID)
 | |
| 					}
 | |
| 				}()
 | |
| 			}
 | |
| 
 | |
| 			readers := goroutines / 100
 | |
| 			if readers == 0 {
 | |
| 				readers++
 | |
| 			}
 | |
| 
 | |
| 			for g := 0; g < readers; g++ {
 | |
| 				wg.Add(1)
 | |
| 
 | |
| 				go func() {
 | |
| 					defer wg.Done()
 | |
| 					<-start
 | |
| 
 | |
| 					for i := 0; i < b.N; i++ {
 | |
| 						s := iso.State(math.MinInt64, math.MaxInt64)
 | |
| 						s.Close()
 | |
| 					}
 | |
| 				}()
 | |
| 			}
 | |
| 
 | |
| 			b.ResetTimer()
 | |
| 			close(start)
 | |
| 			wg.Wait()
 | |
| 		})
 | |
| 	}
 | |
| }
 |