2013-05-10 07:41:02 -07:00
|
|
|
// 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"
|
2014-04-11 00:27:05 -07:00
|
|
|
"github.com/prometheus/prometheus/storage/metric/tiered"
|
2013-05-10 07:41:02 -07:00
|
|
|
"time"
|
2013-08-12 08:18:02 -07:00
|
|
|
|
|
|
|
"github.com/golang/glog"
|
2013-05-10 07:41:02 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
storageRoot = flag.String("storage.root", "", "The path to the storage root for Prometheus.")
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
if storageRoot == nil || *storageRoot == "" {
|
2013-08-12 08:18:02 -07:00
|
|
|
glog.Fatal("Must provide a path...")
|
2013-05-10 07:41:02 -07:00
|
|
|
}
|
|
|
|
|
2014-04-17 06:28:22 -07:00
|
|
|
persistences, err := tiered.NewLevelDBPersistence(*storageRoot)
|
2013-05-10 07:41:02 -07:00
|
|
|
if err != nil {
|
2013-08-12 08:18:02 -07:00
|
|
|
glog.Fatal(err)
|
2013-05-10 07:41:02 -07:00
|
|
|
}
|
|
|
|
defer persistences.Close()
|
|
|
|
|
|
|
|
start := time.Now()
|
2013-08-12 08:18:02 -07:00
|
|
|
glog.Info("Starting compaction...")
|
2013-08-06 03:00:31 -07:00
|
|
|
size, _ := persistences.Sizes()
|
2013-08-12 09:22:48 -07:00
|
|
|
glog.Info("Original Size: ", size)
|
2013-08-05 08:31:49 -07:00
|
|
|
persistences.Prune()
|
2013-08-12 09:22:48 -07:00
|
|
|
glog.Info("Finished in ", time.Since(start))
|
2013-08-06 03:00:31 -07:00
|
|
|
size, _ = persistences.Sizes()
|
2013-08-12 09:22:48 -07:00
|
|
|
glog.Info("New Size: ", size)
|
2013-05-10 07:41:02 -07:00
|
|
|
}
|