mirror of https://github.com/grafana/loki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
354 lines
9.2 KiB
354 lines
9.2 KiB
|
4 years ago
|
package queue
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"fmt"
|
||
|
|
"strconv"
|
||
|
|
"sync"
|
||
|
|
"testing"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
"github.com/grafana/dskit/services"
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
"github.com/stretchr/testify/require"
|
||
|
|
)
|
||
|
|
|
||
|
|
func BenchmarkGetNextRequest(b *testing.B) {
|
||
|
|
const maxOutstandingPerTenant = 2
|
||
|
|
const numTenants = 50
|
||
|
|
const queriers = 5
|
||
|
|
|
||
|
3 years ago
|
type generateActor func(i int) []string
|
||
|
|
|
||
|
|
benchCases := []struct {
|
||
|
|
name string
|
||
|
|
fn generateActor
|
||
|
|
}{
|
||
|
|
{
|
||
|
|
"without sub-queues",
|
||
|
|
func(i int) []string { return nil },
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"with 1 level of sub-queues",
|
||
|
|
func(i int) []string { return []string{fmt.Sprintf("user-%d", i%11)} },
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"with 2 levels of sub-queues",
|
||
|
|
func(i int) []string { return []string{fmt.Sprintf("user-%d", i%11), fmt.Sprintf("tool-%d", i%9)} },
|
||
|
|
},
|
||
|
|
}
|
||
|
4 years ago
|
|
||
|
3 years ago
|
for _, benchCase := range benchCases {
|
||
|
|
benchCase := benchCase
|
||
|
4 years ago
|
|
||
|
3 years ago
|
b.Run(benchCase.name, func(b *testing.B) {
|
||
|
4 years ago
|
|
||
|
3 years ago
|
queues := make([]*RequestQueue, 0, b.N)
|
||
|
|
for n := 0; n < b.N; n++ {
|
||
|
3 years ago
|
queue := NewRequestQueue(maxOutstandingPerTenant, 0, NewMetrics("query_scheduler", nil))
|
||
|
3 years ago
|
queues = append(queues, queue)
|
||
|
4 years ago
|
|
||
|
3 years ago
|
for ix := 0; ix < queriers; ix++ {
|
||
|
2 years ago
|
queue.RegisterConsumerConnection(fmt.Sprintf("querier-%d", ix))
|
||
|
4 years ago
|
}
|
||
|
3 years ago
|
|
||
|
|
for i := 0; i < maxOutstandingPerTenant; i++ {
|
||
|
|
for j := 0; j < numTenants; j++ {
|
||
|
|
userID := strconv.Itoa(j)
|
||
|
|
err := queue.Enqueue(userID, benchCase.fn(j), "request", 0, nil)
|
||
|
|
if err != nil {
|
||
|
|
b.Fatal(err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
4 years ago
|
}
|
||
|
|
|
||
|
3 years ago
|
querierNames := make([]string, queriers)
|
||
|
|
for x := 0; x < queriers; x++ {
|
||
|
|
querierNames[x] = fmt.Sprintf("querier-%d", x)
|
||
|
|
}
|
||
|
4 years ago
|
|
||
|
3 years ago
|
ctx := context.Background()
|
||
|
|
b.ResetTimer()
|
||
|
|
|
||
|
|
for i := 0; i < b.N; i++ {
|
||
|
|
for j := 0; j < queriers; j++ {
|
||
|
|
idx := StartIndexWithLocalQueue
|
||
|
|
for x := 0; x < maxOutstandingPerTenant*numTenants/queriers; x++ {
|
||
|
|
r, nidx, err := queues[i].Dequeue(ctx, idx, querierNames[j])
|
||
|
|
if r == nil {
|
||
|
|
break
|
||
|
|
}
|
||
|
|
if err != nil {
|
||
|
|
b.Fatal(err)
|
||
|
|
}
|
||
|
|
idx = nidx
|
||
|
|
}
|
||
|
4 years ago
|
}
|
||
|
|
}
|
||
|
3 years ago
|
|
||
|
3 years ago
|
})
|
||
|
4 years ago
|
}
|
||
|
3 years ago
|
|
||
|
4 years ago
|
}
|
||
|
|
|
||
|
|
func BenchmarkQueueRequest(b *testing.B) {
|
||
|
|
const maxOutstandingPerTenant = 2
|
||
|
|
const numTenants = 50
|
||
|
|
const queriers = 5
|
||
|
|
|
||
|
|
queues := make([]*RequestQueue, 0, b.N)
|
||
|
|
users := make([]string, 0, numTenants)
|
||
|
|
requests := make([]string, 0, numTenants)
|
||
|
|
|
||
|
|
for n := 0; n < b.N; n++ {
|
||
|
3 years ago
|
q := NewRequestQueue(maxOutstandingPerTenant, 0, NewMetrics("query_scheduler", nil))
|
||
|
4 years ago
|
|
||
|
|
for ix := 0; ix < queriers; ix++ {
|
||
|
2 years ago
|
q.RegisterConsumerConnection(fmt.Sprintf("querier-%d", ix))
|
||
|
4 years ago
|
}
|
||
|
|
|
||
|
|
queues = append(queues, q)
|
||
|
|
|
||
|
|
for j := 0; j < numTenants; j++ {
|
||
|
|
requests = append(requests, fmt.Sprintf("%d-%d", n, j))
|
||
|
|
users = append(users, strconv.Itoa(j))
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
b.ResetTimer()
|
||
|
|
for n := 0; n < b.N; n++ {
|
||
|
|
for i := 0; i < maxOutstandingPerTenant; i++ {
|
||
|
|
for j := 0; j < numTenants; j++ {
|
||
|
3 years ago
|
err := queues[n].Enqueue(users[j], nil, requests[j], 0, nil)
|
||
|
4 years ago
|
if err != nil {
|
||
|
|
b.Fatal(err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestRequestQueue_GetNextRequestForQuerier_ShouldGetRequestAfterReshardingBecauseQuerierHasBeenForgotten(t *testing.T) {
|
||
|
|
const forgetDelay = 3 * time.Second
|
||
|
|
|
||
|
3 years ago
|
queue := NewRequestQueue(1, forgetDelay, NewMetrics("query_scheduler", nil))
|
||
|
4 years ago
|
|
||
|
|
// Start the queue service.
|
||
|
|
ctx := context.Background()
|
||
|
|
require.NoError(t, services.StartAndAwaitRunning(ctx, queue))
|
||
|
|
t.Cleanup(func() {
|
||
|
|
require.NoError(t, services.StopAndAwaitTerminated(ctx, queue))
|
||
|
|
})
|
||
|
|
|
||
|
|
// Two queriers connect.
|
||
|
2 years ago
|
queue.RegisterConsumerConnection("querier-1")
|
||
|
|
queue.RegisterConsumerConnection("querier-2")
|
||
|
4 years ago
|
|
||
|
|
// Querier-2 waits for a new request.
|
||
|
|
querier2wg := sync.WaitGroup{}
|
||
|
|
querier2wg.Add(1)
|
||
|
|
go func() {
|
||
|
|
defer querier2wg.Done()
|
||
|
3 years ago
|
_, _, err := queue.Dequeue(ctx, StartIndex, "querier-2")
|
||
|
4 years ago
|
require.NoError(t, err)
|
||
|
|
}()
|
||
|
|
|
||
|
|
// Querier-1 crashes (no graceful shutdown notification).
|
||
|
2 years ago
|
queue.UnregisterConsumerConnection("querier-1")
|
||
|
4 years ago
|
|
||
|
|
// Enqueue a request from an user which would be assigned to querier-1.
|
||
|
|
// NOTE: "user-1" hash falls in the querier-1 shard.
|
||
|
3 years ago
|
require.NoError(t, queue.Enqueue("user-1", nil, "request", 1, nil))
|
||
|
4 years ago
|
|
||
|
|
startTime := time.Now()
|
||
|
|
querier2wg.Wait()
|
||
|
|
waitTime := time.Since(startTime)
|
||
|
|
|
||
|
|
// We expect that querier-2 got the request only after querier-1 forget delay is passed.
|
||
|
|
assert.GreaterOrEqual(t, waitTime.Milliseconds(), forgetDelay.Milliseconds())
|
||
|
|
}
|
||
|
|
|
||
|
|
func TestContextCond(t *testing.T) {
|
||
|
|
t.Run("wait until broadcast", func(t *testing.T) {
|
||
|
|
t.Parallel()
|
||
|
|
mtx := &sync.Mutex{}
|
||
|
|
cond := contextCond{Cond: sync.NewCond(mtx)}
|
||
|
|
|
||
|
|
doneWaiting := make(chan struct{})
|
||
|
|
|
||
|
|
mtx.Lock()
|
||
|
|
go func() {
|
||
|
|
cond.Wait(context.Background())
|
||
|
|
mtx.Unlock()
|
||
|
|
close(doneWaiting)
|
||
|
|
}()
|
||
|
|
|
||
|
|
assertChanNotReceived(t, doneWaiting, 100*time.Millisecond, "cond.Wait returned, but it should not because we did not broadcast yet")
|
||
|
|
|
||
|
|
cond.Broadcast()
|
||
|
|
assertChanReceived(t, doneWaiting, 250*time.Millisecond, "cond.Wait did not return after broadcast")
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("wait until context deadline", func(t *testing.T) {
|
||
|
|
t.Parallel()
|
||
|
|
mtx := &sync.Mutex{}
|
||
|
|
cond := contextCond{Cond: sync.NewCond(mtx)}
|
||
|
|
doneWaiting := make(chan struct{})
|
||
|
|
|
||
|
|
ctx, cancel := context.WithCancel(context.Background())
|
||
|
|
defer cancel()
|
||
|
|
|
||
|
|
mtx.Lock()
|
||
|
|
go func() {
|
||
|
|
cond.Wait(ctx)
|
||
|
|
mtx.Unlock()
|
||
|
|
close(doneWaiting)
|
||
|
|
}()
|
||
|
|
|
||
|
|
assertChanNotReceived(t, doneWaiting, 100*time.Millisecond, "cond.Wait returned, but it should not because we did not broadcast yet and didn't cancel the context")
|
||
|
|
|
||
|
|
cancel()
|
||
|
|
assertChanReceived(t, doneWaiting, 250*time.Millisecond, "cond.Wait did not return after cancelling the context")
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("wait on already canceled context", func(t *testing.T) {
|
||
|
|
// This test represents the racy real world scenario,
|
||
|
|
// we don't know whether it's going to wait before the broadcast triggered by the context cancellation.
|
||
|
|
t.Parallel()
|
||
|
|
mtx := &sync.Mutex{}
|
||
|
|
cond := contextCond{Cond: sync.NewCond(mtx)}
|
||
|
|
doneWaiting := make(chan struct{})
|
||
|
|
|
||
|
|
alreadyCanceledContext, cancel := context.WithCancel(context.Background())
|
||
|
|
cancel()
|
||
|
|
|
||
|
|
mtx.Lock()
|
||
|
|
go func() {
|
||
|
|
cond.Wait(alreadyCanceledContext)
|
||
|
|
mtx.Unlock()
|
||
|
|
close(doneWaiting)
|
||
|
|
}()
|
||
|
|
|
||
|
|
assertChanReceived(t, doneWaiting, 250*time.Millisecond, "cond.Wait did not return after cancelling the context")
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("wait on already canceled context, but it takes a while to wait", func(t *testing.T) {
|
||
|
|
t.Parallel()
|
||
|
|
mtx := &sync.Mutex{}
|
||
|
|
cond := contextCond{
|
||
|
|
Cond: sync.NewCond(mtx),
|
||
|
|
testHookBeforeWaiting: func() {
|
||
|
|
// This makes the waiting goroutine so slow that out Wait(ctx) will need to broadcast once it sees it waiting.
|
||
|
|
time.Sleep(250 * time.Millisecond)
|
||
|
|
},
|
||
|
|
}
|
||
|
|
doneWaiting := make(chan struct{})
|
||
|
|
|
||
|
|
alreadyCanceledContext, cancel := context.WithCancel(context.Background())
|
||
|
|
cancel()
|
||
|
|
|
||
|
|
mtx.Lock()
|
||
|
|
go func() {
|
||
|
|
cond.Wait(alreadyCanceledContext)
|
||
|
|
mtx.Unlock()
|
||
|
|
close(doneWaiting)
|
||
|
|
}()
|
||
|
|
|
||
|
|
assertChanReceived(t, doneWaiting, time.Second, "cond.Wait did not return after 500ms")
|
||
|
|
})
|
||
|
|
|
||
|
|
t.Run("lots of goroutines waiting at the same time, none of them misses it's broadcast from cancel", func(t *testing.T) {
|
||
|
|
t.Parallel()
|
||
|
|
mtx := &sync.Mutex{}
|
||
|
|
cond := contextCond{
|
||
|
|
Cond: sync.NewCond(mtx),
|
||
|
|
testHookBeforeWaiting: func() {
|
||
|
|
// Wait just a little bit to create every goroutine
|
||
|
|
time.Sleep(time.Millisecond)
|
||
|
|
},
|
||
|
|
}
|
||
|
|
const goroutines = 100
|
||
|
|
|
||
|
|
doneWaiting := make(chan struct{}, goroutines)
|
||
|
|
release := make(chan struct{})
|
||
|
|
|
||
|
|
ctx, cancel := context.WithCancel(context.Background())
|
||
|
|
cancel()
|
||
|
|
|
||
|
|
for i := 0; i < goroutines; i++ {
|
||
|
|
go func() {
|
||
|
|
<-release
|
||
|
|
|
||
|
|
mtx.Lock()
|
||
|
|
cond.Wait(ctx)
|
||
|
|
mtx.Unlock()
|
||
|
|
|
||
|
|
doneWaiting <- struct{}{}
|
||
|
|
}()
|
||
|
|
}
|
||
|
|
go func() {
|
||
|
|
<-release
|
||
|
|
cancel()
|
||
|
|
}()
|
||
|
|
|
||
|
|
close(release)
|
||
|
|
|
||
|
|
assert.Eventually(t, func() bool {
|
||
|
|
return len(doneWaiting) == goroutines
|
||
|
|
}, time.Second, 10*time.Millisecond)
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
3 years ago
|
func TestMaxQueueSize(t *testing.T) {
|
||
|
|
t.Run("queue size is tracked per tenant", func(t *testing.T) {
|
||
|
|
maxSize := 3
|
||
|
|
queue := NewRequestQueue(maxSize, 0, NewMetrics("query_scheduler", nil))
|
||
|
2 years ago
|
queue.RegisterConsumerConnection("querier")
|
||
|
3 years ago
|
|
||
|
|
// enqueue maxSize items with different actors
|
||
|
|
// different actors have individual channels with maxSize length
|
||
|
|
assert.NoError(t, queue.Enqueue("tenant", []string{"user-a"}, 1, 0, nil))
|
||
|
|
assert.NoError(t, queue.Enqueue("tenant", []string{"user-b"}, 2, 0, nil))
|
||
|
|
assert.NoError(t, queue.Enqueue("tenant", []string{"user-c"}, 3, 0, nil))
|
||
|
|
|
||
|
|
// max queue length per tenant is tracked globally for all actors within a tenant
|
||
|
|
err := queue.Enqueue("tenant", []string{"user-a"}, 4, 0, nil)
|
||
|
|
assert.Equal(t, err, ErrTooManyRequests)
|
||
|
|
|
||
|
|
// dequeue and enqueue some items
|
||
|
|
_, _, err = queue.Dequeue(context.Background(), StartIndexWithLocalQueue, "querier")
|
||
|
|
assert.NoError(t, err)
|
||
|
|
_, _, err = queue.Dequeue(context.Background(), StartIndexWithLocalQueue, "querier")
|
||
|
|
assert.NoError(t, err)
|
||
|
|
|
||
|
|
assert.NoError(t, queue.Enqueue("tenant", []string{"user-a"}, 4, 0, nil))
|
||
|
|
assert.NoError(t, queue.Enqueue("tenant", []string{"user-b"}, 5, 0, nil))
|
||
|
|
|
||
|
|
err = queue.Enqueue("tenant", []string{"user-c"}, 6, 0, nil)
|
||
|
|
assert.Equal(t, err, ErrTooManyRequests)
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
4 years ago
|
func assertChanReceived(t *testing.T, c chan struct{}, timeout time.Duration, msg string) {
|
||
|
|
t.Helper()
|
||
|
|
|
||
|
|
select {
|
||
|
|
case <-c:
|
||
|
|
case <-time.After(timeout):
|
||
|
|
t.Fatalf(msg)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
func assertChanNotReceived(t *testing.T, c chan struct{}, wait time.Duration, msg string, args ...interface{}) {
|
||
|
|
t.Helper()
|
||
|
|
|
||
|
|
select {
|
||
|
|
case <-c:
|
||
|
|
t.Fatalf(msg, args...)
|
||
|
|
case <-time.After(wait):
|
||
|
|
// OK!
|
||
|
|
}
|
||
|
|
}
|