mirror of https://github.com/prometheus/prometheus
In order to run database cleanups and diagnostics, we should have a means for pruning a database---even if LevelDB does this for us.pull/236/head
parent
76521c3ff0
commit
fa6a1f97d0
@ -0,0 +1,26 @@
|
||||
# Copyright 2013 Prometheus Team
|
||||
# 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.
|
||||
|
||||
all: pruner
|
||||
|
||||
SUFFIXES:
|
||||
|
||||
include ../Makefile.INCLUDE
|
||||
|
||||
pruner:
|
||||
$(MAKE) -C pruner
|
||||
|
||||
clean:
|
||||
$(MAKE) -C pruner clean
|
||||
|
||||
.PHONY: clean pruner
|
@ -0,0 +1 @@
|
||||
pruner
|
@ -0,0 +1,28 @@
|
||||
# Copyright 2013 Prometheus Team
|
||||
# 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.
|
||||
|
||||
MAKE_ARTIFACTS = pruner
|
||||
|
||||
all: pruner
|
||||
|
||||
SUFFIXES:
|
||||
|
||||
include ../../Makefile.INCLUDE
|
||||
|
||||
pruner: $(shell find . -iname '*.go')
|
||||
go build -o pruner .
|
||||
|
||||
clean:
|
||||
rm -rf $(MAKE_ARTIFACTS)
|
||||
|
||||
.PHONY: clean
|
@ -0,0 +1,49 @@
|
||||
// Copyright 2013 Prometheus Team
|
||||
// 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.
|
||||
|
||||
// Pruner is responsible for cleaning all Prometheus disk databases, which
|
||||
// minimally includes 1. applying pending commit logs, 2. compacting SSTables,
|
||||
// 3. purging stale SSTables, and 4. removing old tombstones.
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"github.com/prometheus/prometheus/storage/metric"
|
||||
"log"
|
||||
"time"
|
||||
)
|
||||
|
||||
var (
|
||||
storageRoot = flag.String("storage.root", "", "The path to the storage root for Prometheus.")
|
||||
)
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
|
||||
if storageRoot == nil || *storageRoot == "" {
|
||||
log.Fatal("Must provide a path...")
|
||||
}
|
||||
|
||||
persistences, err := metric.NewLevelDBMetricPersistence(*storageRoot)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
defer persistences.Close()
|
||||
|
||||
start := time.Now()
|
||||
log.Printf("Starting compaction...")
|
||||
if err := persistences.CompactKeyspaces(); err != nil {
|
||||
log.Fatalf("Abording after %s", time.Since(start))
|
||||
}
|
||||
log.Printf("Finished in %s", time.Since(start))
|
||||
}
|
Loading…
Reference in new issue