Skip to content
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1231 from grafana/mt-index-prune_utility
Browse files Browse the repository at this point in the history
add the mt-index-prune utility
  • Loading branch information
woodsaj committed Mar 8, 2019
2 parents 171b553 + d2868c8 commit 2a90de3
Show file tree
Hide file tree
Showing 7 changed files with 411 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/cmd/mt-explain/mt-explain
/cmd/mt-index-cat/mt-index-cat
/cmd/mt-index-migrate/mt-index-migrate
/cmd/mt-index-prune/mt-index-prune
/cmd/mt-kafka-mdm-sniff-out-of-order/mt-kafka-mdm-sniff-out-of-order
/cmd/mt-kafka-mdm-sniff/mt-kafka-mdm-sniff
/cmd/mt-kafka-persist-sniff/mt-kafka-persist-sniff
Expand Down
1 change: 1 addition & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

184 changes: 184 additions & 0 deletions cmd/mt-index-prune/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
package main

import (
"flag"
"fmt"
"os"
"regexp"
"time"

"github.com/grafana/metrictank/conf"
"github.com/grafana/metrictank/idx/cassandra"
"github.com/grafana/metrictank/idx/memory"
"github.com/grafana/metrictank/logger"
"github.com/raintank/schema"
log "github.com/sirupsen/logrus"
)

func init() {
formatter := &logger.TextFormatter{}
formatter.TimestampFormat = "2006-01-02 15:04:05.000"
log.SetFormatter(formatter)
log.SetLevel(log.InfoLevel)
}

func perror(err error) {
if err != nil {
log.Fatal(err.Error())
}
}

type counters struct {
total int
active int
deprecated int
archived int
}

func (c *counters) PrintCounters() {
fmt.Println(fmt.Sprintf("Total analyzed defs: %d", c.total))
fmt.Println(fmt.Sprintf("Active defs: %d", c.active))
fmt.Println(fmt.Sprintf("Deprecated defs: %d", c.deprecated))
fmt.Println(fmt.Sprintf("Archived defs: %d", c.archived))
}

func main() {
var noDryRun, verbose bool
var partitionFrom, partitionTo int
var indexRulesFile string
globalFlags := flag.NewFlagSet("global config flags", flag.ExitOnError)
globalFlags.BoolVar(&noDryRun, "no-dry-run", false, "do not only plan and print what to do, but also execute it")
globalFlags.BoolVar(&verbose, "verbose", false, "print every metric name that gets archived")
globalFlags.IntVar(&partitionFrom, "partition-from", 0, "the partition to start at")
globalFlags.IntVar(&partitionTo, "partition-to", -1, "prune all partitions up to this one (exclusive). If unset, only the partition defined with \"--partition-from\" gets pruned")
globalFlags.StringVar(&indexRulesFile, "index-rules-file", "/etc/metrictank/index-rules.conf", "name of file which defines the max-stale times")
cassFlags := cassandra.ConfigSetup()

flag.Usage = func() {
fmt.Println("mt-index-prune")
fmt.Println()
fmt.Println("Retrieves a metrictank index and moves all deprecated entries into an archive table")
fmt.Println()
fmt.Printf("Usage:\n\n")
fmt.Printf(" mt-index-prune [global config flags] <idxtype> [idx config flags]\n\n")
fmt.Printf("global config flags:\n\n")
globalFlags.PrintDefaults()
fmt.Println()
fmt.Printf("idxtype: only 'cass' supported for now\n\n")
fmt.Printf("cass config flags:\n\n")
cassFlags.PrintDefaults()
fmt.Println()
fmt.Println()
fmt.Println("EXAMPLES:")
fmt.Println("mt-index-prune --verbose --partition-from 0 --partition-to 8 cass -hosts cassandra:9042")
}

if len(os.Args) == 2 && (os.Args[1] == "-h" || os.Args[1] == "--help") {
flag.Usage()
os.Exit(0)
}

if len(os.Args) < 2 {
flag.Usage()
os.Exit(-1)
}

var cassI int
for i, v := range os.Args {
if v == "cass" {
cassI = i
}
}

if cassI == 0 {
log.Println("only indextype 'cass' supported")
flag.Usage()
os.Exit(1)
}
globalFlags.Parse(os.Args[1:cassI])

indexRules, err := conf.ReadIndexRules(indexRulesFile)
if os.IsNotExist(err) {
log.Fatalf("Index-rules.conf file %s does not exist; exiting", indexRulesFile)
os.Exit(1)
}
now := time.Now()
cutoffs := indexRules.Cutoffs(now)

cassFlags.Parse(os.Args[cassI+1:])
cassandra.CliConfig.Enabled = true
cassIdx := cassandra.New(cassandra.CliConfig)
err = cassIdx.InitBare()
perror(err)

// we don't want to filter any metric definitions during the loading
// so MaxStale is set to 0
memory.IndexRules = conf.IndexRules{
Rules: nil,
Default: conf.IndexRule{
Name: "default",
Pattern: regexp.MustCompile(""),
MaxStale: 0,
},
}

defCounters := counters{}
defs := make([]schema.MetricDefinition, 0)
deprecatedDefs := make([]schema.MetricDefinition, 0)

for partition := partitionFrom; (partitionTo == -1 && partition == partitionFrom) || (partitionTo > 0 && partition < partitionTo); partition++ {
log.Infof("starting to process partition %d", partition)
defsByNameWithTags := make(map[string][]schema.MetricDefinition)
defs = cassIdx.LoadPartitions([]int32{int32(partition)}, defs, now)
defCounters.total += len(defs)
for _, def := range defs {
name := def.NameWithTags()
defsByNameWithTags[name] = append(defsByNameWithTags[name], def)
}

for name, defs := range defsByNameWithTags {
// find the latest LastUpdate ts
latest := int64(0)
for _, def := range defs {
if def.LastUpdate > latest {
latest = def.LastUpdate
}
}

irId, _ := indexRules.Match(name)
if latest < cutoffs[irId] {
for _, def := range defs {
deprecatedDefs = append(deprecatedDefs, def)
}
defCounters.deprecated += len(defs)

if verbose {
fmt.Println(fmt.Sprintf("Metric is deprecated: %s", name))
}
} else {
defCounters.active += len(defs)

if verbose {
fmt.Println(fmt.Sprintf("Metric is active: %s", name))
}
}
}

if noDryRun {
count, err := cassIdx.ArchiveDefs(deprecatedDefs)
log.Infof("archiving request complete. successful=%d", count)
if count != len(deprecatedDefs) {
log.Warnf("some defs failed to be archived. failed=%d", len(deprecatedDefs)-count)
}
if err != nil {
log.Warnf("Failed to archive defs: %s", err.Error())
}
defCounters.archived += count
}

defs = defs[:0]
deprecatedDefs = deprecatedDefs[:0]
}

defCounters.PrintCounters()
}
75 changes: 75 additions & 0 deletions docs/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,81 @@ Flags:
```


## mt-index-prune

```
mt-index-prune
Retrieves a metrictank index and moves all deprecated entries into an archive table
Usage:
mt-index-prune [global config flags] <idxtype> [idx config flags]
global config flags:
-index-rules-file string
name of file which defines the max-stale times (default "/etc/metrictank/index-rules.conf")
-no-dry-run
do not only plan and print what to do, but also execute it
-partition-from int
the partition to start at
-partition-to int
prune all partitions up to this one (exclusive). If unset, only the partition defined with "--partition-from" gets pruned (default -1)
-verbose
print every metric name that gets archived
idxtype: only 'cass' supported for now
cass config flags:
-auth
enable cassandra user authentication
-ca-path string
cassandra CA certficate path when using SSL (default "/etc/metrictank/ca.pem")
-consistency string
write consistency (any|one|two|three|quorum|all|local_quorum|each_quorum|local_one (default "one")
-create-keyspace
enable the creation of the index keyspace and tables, only one node needs this (default true)
-disable-initial-host-lookup
instruct the driver to not attempt to get host info from the system.peers table
-enabled
(default true)
-host-verification
host (hostname and server cert) verification when using SSL (default true)
-hosts string
comma separated list of cassandra addresses in host:port form (default "localhost:9042")
-keyspace string
Cassandra keyspace to store metricDefinitions in. (default "metrictank")
-num-conns int
number of concurrent connections to cassandra (default 10)
-password string
password for authentication (default "cassandra")
-protocol-version int
cql protocol version to use (default 4)
-prune-interval duration
Interval at which the index should be checked for stale series. (default 3h0m0s)
-schema-file string
File containing the needed schemas in case database needs initializing (default "/etc/metrictank/schema-idx-cassandra.toml")
-ssl
enable SSL connection to cassandra
-timeout duration
cassandra request timeout (default 1s)
-update-cassandra-index
synchronize index changes to cassandra. not all your nodes need to do this. (default true)
-update-interval duration
frequency at which we should update the metricDef lastUpdate field, use 0s for instant updates (default 3h0m0s)
-username string
username for authentication (default "cassandra")
-write-queue-size int
Max number of metricDefs allowed to be unwritten to cassandra (default 100000)
EXAMPLES:
mt-index-prune --verbose --partition-from 0 --partition-to 8 cass -hosts cassandra:9042
```


## mt-kafka-mdm-sniff

```
Expand Down
Loading

0 comments on commit 2a90de3

Please sign in to comment.