mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
be11cb2b07
The one central sample ingestion channel has caused a variety of trouble. This commit removes it. Targets and rule evaluation call an Append method directly now. To incorporate multiple storage backends (like OpenTSDB), storage.Tee forks the Append into two different appenders. Note that the tsdb queue manager had its own queue anyway. It was a queue after a queue... Much queue, so overhead... Targets have their own little buffer (implemented as a channel) to avoid stalling during an http scrape. But a new scrape will only be started once the old one is fully ingested. The contraption of three pipelined ingesters was removed. A Target is an ingester itself now. Despite more logic in Target, things should be less confusing now. Also, remove lint and vet warnings in ast.go.
172 lines
4.1 KiB
Go
172 lines
4.1 KiB
Go
// Copyright 2013 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 retrieval
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
)
|
|
|
|
func testTargetPool(t testing.TB) {
|
|
type expectation struct {
|
|
size int
|
|
}
|
|
|
|
type input struct {
|
|
url string
|
|
scheduledFor time.Time
|
|
}
|
|
|
|
type output struct {
|
|
url string
|
|
}
|
|
|
|
var scenarios = []struct {
|
|
name string
|
|
inputs []input
|
|
outputs []output
|
|
}{
|
|
{
|
|
name: "empty",
|
|
inputs: []input{},
|
|
outputs: []output{},
|
|
},
|
|
{
|
|
name: "single element",
|
|
inputs: []input{
|
|
{
|
|
url: "single1",
|
|
},
|
|
},
|
|
outputs: []output{
|
|
{
|
|
url: "single1",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "plural schedules",
|
|
inputs: []input{
|
|
{
|
|
url: "plural1",
|
|
},
|
|
{
|
|
url: "plural2",
|
|
},
|
|
},
|
|
outputs: []output{
|
|
{
|
|
url: "plural1",
|
|
},
|
|
{
|
|
url: "plural2",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for i, scenario := range scenarios {
|
|
pool := NewTargetPool(nil, nopAppender{}, time.Duration(1))
|
|
|
|
for _, input := range scenario.inputs {
|
|
target := target{
|
|
url: input.url,
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
httpClient: &http.Client{},
|
|
}
|
|
pool.addTarget(&target)
|
|
}
|
|
|
|
if len(pool.targetsByURL) != len(scenario.outputs) {
|
|
t.Errorf("%s %d. expected TargetPool size to be %d but was %d", scenario.name, i, len(scenario.outputs), len(pool.targetsByURL))
|
|
} else {
|
|
for j, output := range scenario.outputs {
|
|
if target, ok := pool.targetsByURL[output.url]; !ok {
|
|
t.Errorf("%s %d.%d. expected Target url to be %s but was %s", scenario.name, i, j, output.url, target.URL())
|
|
}
|
|
}
|
|
|
|
if len(pool.targetsByURL) != len(scenario.outputs) {
|
|
t.Errorf("%s %d. expected to repopulated with %d elements, got %d", scenario.name, i, len(scenario.outputs), len(pool.targetsByURL))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestTargetPool(t *testing.T) {
|
|
testTargetPool(t)
|
|
}
|
|
|
|
func TestTargetPoolReplaceTargets(t *testing.T) {
|
|
pool := NewTargetPool(nil, nopAppender{}, time.Duration(1))
|
|
oldTarget1 := &target{
|
|
url: "example1",
|
|
state: Unhealthy,
|
|
scraperStopping: make(chan struct{}),
|
|
scraperStopped: make(chan struct{}),
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
httpClient: &http.Client{},
|
|
}
|
|
oldTarget2 := &target{
|
|
url: "example2",
|
|
state: Unhealthy,
|
|
scraperStopping: make(chan struct{}),
|
|
scraperStopped: make(chan struct{}),
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
httpClient: &http.Client{},
|
|
}
|
|
newTarget1 := &target{
|
|
url: "example1",
|
|
state: Healthy,
|
|
scraperStopping: make(chan struct{}),
|
|
scraperStopped: make(chan struct{}),
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
httpClient: &http.Client{},
|
|
}
|
|
newTarget2 := &target{
|
|
url: "example3",
|
|
state: Healthy,
|
|
scraperStopping: make(chan struct{}),
|
|
scraperStopped: make(chan struct{}),
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
|
httpClient: &http.Client{},
|
|
}
|
|
|
|
pool.addTarget(oldTarget1)
|
|
pool.addTarget(oldTarget2)
|
|
|
|
pool.ReplaceTargets([]Target{newTarget1, newTarget2})
|
|
|
|
if len(pool.targetsByURL) != 2 {
|
|
t.Errorf("Expected 2 elements in pool, had %d", len(pool.targetsByURL))
|
|
}
|
|
|
|
if pool.targetsByURL["example1"].State() != oldTarget1.State() {
|
|
t.Errorf("target1 channel has changed")
|
|
}
|
|
if pool.targetsByURL["example3"].State() == oldTarget2.State() {
|
|
t.Errorf("newTarget2 channel same as oldTarget2's")
|
|
}
|
|
|
|
}
|
|
|
|
func BenchmarkTargetPool(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
testTargetPool(b)
|
|
}
|
|
}
|