forked from Topface/graphite-ch-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphite-ch-optimizer.go
416 lines (375 loc) · 11.6 KB
/
graphite-ch-optimizer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
// Package main provides the watcher for the in time merged partitions
// Copyright (C) 2019 InnoGames GmbH
package main
import (
"database/sql"
"errors"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"sync"
"time"
"github.com/ClickHouse/clickhouse-go"
"github.com/pelletier/go-toml"
"github.com/sirupsen/logrus"
"github.com/spf13/pflag"
"github.com/spf13/viper"
)
var version = "development"
// SelectUnmerged is the query to create the temporary table with
// partitions and the retention age, which should be applied.
// Table name should be with backquotes to be able to OPTIMIZE `database`.`.inner.table`
// for MaterializedView engines
const SelectUnmerged = `
SELECT
concat(` + "'`', p.database, '`.`', p.table, '`'" + `) AS table,
p.partition_id AS partition_id,
p.partition AS partition_name,
max(g.age) AS age,
countDistinct(p.name) AS parts,
toDateTime(max(p.max_date + 1)) AS max_time,
max_time + age AS rollup_time,
min(p.modification_time) AS modified_at
FROM system.parts AS p
INNER JOIN
(
SELECT
Tables.database AS database,
Tables.table AS table,
age
FROM system.graphite_retentions
ARRAY JOIN Tables
GROUP BY
database,
table,
age
) AS g ON (p.table = g.table) AND (p.database = g.database)
-- toDateTime(p.max_date + 1) + g.age AS unaggregated rollup_time
WHERE p.active AND ((toDateTime(p.max_date + 1) + g.age) < now())
GROUP BY
table,
partition_name,
partition_id
-- modified_at < rollup_time: the merge has not been applied for the current retention policy
-- parts > 1: merge should be applied because of new parts
-- modified_at < (now() - @Interval): we want to merge active partitions only once per interval,
-- so do not touch partitions with current active inserts
HAVING ((modified_at < rollup_time) OR (parts > 1))
AND (modified_at < (now() - @Interval))
ORDER BY
table ASC,
partition_name ASC,
age ASC
`
type merge struct {
table string
partitionID string
partitionName string
}
type clickHouse struct {
ServerDsn string `mapstructure:"server-dsn" toml:"server-dsn"`
OptimizeInterval time.Duration `mapstructure:"optimize-interval" toml:"optimize-interval"`
connect *sql.DB
}
type daemon struct {
LoopInterval time.Duration `mapstructure:"loop-interval" toml:"loop-interval"`
OneShot bool `mapstructure:"one-shot" toml:"one-shot"`
DryRun bool `mapstructure:"dry-run" toml:"dry-run"`
}
type logging struct {
// List of files to write. '-' is token as os.Stdout
Output string `mapstructure:"output" toml:"output"`
Level string `mapstructure:"log-level" toml:"level"`
}
// Config for the graphite-ch-optimizer binary
type Config struct {
ClickHouse clickHouse `mapstructure:"clickhouse" toml:"clickhouse"`
Daemon daemon `mapstructure:"daemon" toml:"daemon"`
Logging logging `mapstructure:"logging" toml:"logging"`
}
var cfg Config
func init() {
var err error
cfg = getConfig()
// Set logging
formatter := logrus.TextFormatter{
TimestampFormat: "2006-01-02 15:04:05 MST",
FullTimestamp: true,
}
logrus.SetFormatter(&formatter)
var output io.Writer
switch cfg.Logging.Output {
case "-":
output = os.Stdout
default:
output, err = os.OpenFile(cfg.Logging.Output, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644)
if err != nil {
logrus.Fatalf("Unable to open file %s for writing: %v", cfg.Logging.Output, err)
}
}
logrus.SetOutput(output)
clickhouse.SetLogOutput(output)
level, err := logrus.ParseLevel(cfg.Logging.Level)
if err != nil {
logrus.Fatalf("Fail to parse log level: %v", err)
}
logrus.SetLevel(level)
configString, err := toml.Marshal(cfg)
if err != nil {
logrus.Fatalf("Failed to marshal TOML config: %v", err)
}
logrus.Tracef("The config is:\n%v", string(configString))
}
// setDefaultConfig sets default config parameters
func setDefaultConfig() {
viper.SetDefault("clickhouse", map[string]interface{}{
// See ClickHouse documentation for further options
"server-dsn": "tcp://localhost:9000?&optimize_throw_if_noop=1&receive_timeout=3600&debug=true&read_timeout=3600",
// Ignore partitions which were merged less than 3 days before
"optimize-interval": time.Duration(72) * time.Hour,
})
viper.SetDefault("daemon", map[string]interface{}{
"one-shot": false,
"loop-interval": time.Duration(1) * time.Hour,
"dry-run": false,
})
viper.SetDefault("logging", map[string]interface{}{
"output": "-",
"log-level": "info",
})
}
func processFlags() error {
// Parse command line arguments in differend flag groups
pflag.CommandLine.SortFlags = false
defaultConfig := "/etc/" + filepath.Base(os.Args[0]) + "/config.toml"
customConfig := pflag.StringP("config", "c", defaultConfig, "Filename of the custom config. CLI arguments override it")
pflag.Bool("print-defaults", false, "Print default config values and exit")
pflag.BoolP("version", "v", false, "Print version and exit")
// ClickHouse set
fc := pflag.NewFlagSet("clickhouse", 0)
fc.StringP("server-dsn", "s", viper.GetString("clickhouse.server-dsn"), "DSN to connect to ClickHouse server")
fc.Duration("optimize-interval", viper.GetDuration("clickhouse.optimize-interval"), "The partition will be merged after having no writes for more than the given duration")
// Daemon set
fd := pflag.NewFlagSet("daemon", 0)
fd.Bool("one-shot", viper.GetBool("daemon.one-shot"), "Program will make only one optimization instead of working in the loop (true if dry-run)")
fd.Duration("loop-interval", viper.GetDuration("daemon.loop-interval"), "Daemon will check if there partitions to merge once per this interval")
fd.BoolP("dry-run", "n", viper.GetBool("daemon.dry-run"), "Will print how many partitions would be merged without actions")
// Logging set
fl := pflag.NewFlagSet("logging", 0)
fl.String("output", viper.GetString("logging.output"), "The logs file. '-' is accepted as STDOUT")
fl.String("log-level", viper.GetString("logging.level"), "Valid options are: panic, fatal, error, warn, warning, info, debug, trace")
pflag.CommandLine.AddFlagSet(fc)
pflag.CommandLine.AddFlagSet(fd)
pflag.CommandLine.AddFlagSet(fl)
pflag.ErrHelp = fmt.Errorf("\nVersion: %s", version)
pflag.Parse()
// We must read config files before the setting of the config config to flags' values
err := readConfigFile(*customConfig)
if err != nil {
return err
}
// Parse flag groups into viper config
fc.VisitAll(func(f *pflag.Flag) {
if err := viper.BindPFlag("clickhouse."+f.Name, f); err != nil {
logrus.Fatalf("Failed to bind key clickhouse.%s: %v", f.Name, err)
}
})
fd.VisitAll(func(f *pflag.Flag) {
if err := viper.BindPFlag("daemon."+f.Name, f); err != nil {
logrus.Fatalf("Failed to bind key daemon.%s: %v", f.Name, err)
}
})
fl.VisitAll(func(f *pflag.Flag) {
if err := viper.BindPFlag("logging."+f.Name, f); err != nil {
logrus.Fatalf("Failed to bind key logging.%s: %v", f.Name, err)
}
})
// If it's dry run, then it should be done only once
if viper.GetBool("daemon.dry-run") {
viper.Set("daemon.one-shot", true)
}
return nil
}
// readConfigFile set file as the config name if it's not empty and reads the config from Viper.configPaths
func readConfigFile(file string) error {
var cfgNotFound viper.ConfigFileNotFoundError
var perr *os.PathError
viper.SetConfigFile(file)
err := viper.ReadInConfig()
if err != nil {
if errors.As(err, &cfgNotFound) || errors.As(err, &perr) {
logrus.Debug("No config files were found, use defaults and flags")
return nil
}
return fmt.Errorf("Failed to read viper config: %w", err)
}
return nil
}
func getConfig() Config {
viper.SetConfigName("config")
viper.SetConfigType("toml")
exeName := filepath.Base(os.Args[0])
// Set config files
if userConfig, err := os.UserConfigDir(); err == nil {
viper.AddConfigPath(filepath.Join(userConfig, exeName))
}
viper.AddConfigPath(filepath.Join("/etc", exeName))
setDefaultConfig()
defaultConfig := viper.AllSettings()
err := processFlags()
if err != nil {
logrus.Fatalf("Failed to process flags: %v", err)
}
// Prints version and exit
printVersion, err := pflag.CommandLine.GetBool("version")
if err != nil {
logrus.Fatal("Can't get '--version' value")
}
if printVersion {
fmt.Println(version)
os.Exit(0)
}
// Prints default config and exits
printDefaults, err := pflag.CommandLine.GetBool("print-defaults")
if err != nil {
logrus.Fatal("Can't get '--print-defaults' value")
}
if printDefaults {
t, err := toml.TreeFromMap(defaultConfig)
if err != nil {
logrus.Fatal(err)
}
fmt.Println(t.String())
os.Exit(0)
}
c := Config{}
if err := viper.Unmarshal(&c); err != nil {
logrus.Fatalf("Failed to unmarshal config: %v", err)
}
return c
}
func main() {
if cfg.Daemon.OneShot {
err := optimize()
if err != nil {
logrus.Fatalf("Optimization failed: %s", err)
}
os.Exit(0)
}
go func() {
logrus.Trace("Starting loop function")
for {
err := optimize()
if err != nil {
logrus.Errorf("Optimization failed: %s", err)
}
logrus.Infof("Optimizations round is over, going to sleep for %v", cfg.Daemon.LoopInterval)
time.Sleep(cfg.Daemon.LoopInterval)
}
}()
var wg sync.WaitGroup
wg.Add(1)
wg.Wait()
}
func optimize() error {
// Getting connection pool and check it for work
connect, err := sql.Open("clickhouse", cfg.ClickHouse.ServerDsn)
if err != nil {
logrus.Fatalf("Failed to open connection to %s: %v ClickHouse", cfg.ClickHouse.ServerDsn, err)
}
cfg.ClickHouse.connect = connect
defer connect.Close()
err = connect.Ping()
if checkErr(err) != nil {
logrus.Fatalf("Ping ClickHouse server failed: %v", err)
}
// Getting the rows with tables and partitions to optimize
rows, err := connect.Query(
SelectUnmerged,
sql.Named("Interval", cfg.ClickHouse.OptimizeInterval.Seconds()),
)
if checkErr(err) != nil {
return err
}
merges := []merge{}
var (
age uint64
parts uint64
maxTime time.Time
rollupTime time.Time
modifiedAt time.Time
)
// Parse the data from DB into `merges`
for rows.Next() {
var m merge
err = rows.Scan(&m.table, &m.partitionID, &m.partitionName, &age, &parts, &maxTime, &rollupTime, &modifiedAt)
if checkErr(err) != nil {
return err
}
merges = append(merges, m)
logrus.WithFields(logrus.Fields{
"table": m.table,
"partition_id": m.partitionID,
"partition_name": m.partitionName,
"age": age,
"parts": parts,
"max_time": maxTime,
"rollup_time": rollupTime,
"modified_at": modifiedAt,
}).Debug("Merge to be applied")
}
if cfg.Daemon.DryRun {
logrus.Infof("DRY RUN. Merges would be applied: %d", len(merges))
return nil
}
logrus.Infof("Merges will be applied: %d", len(merges))
for _, m := range merges {
m := m
err = applyMerge(&m)
if checkErr(err) != nil {
return err
}
}
return nil
}
func applyMerge(m *merge) error {
logrus.Infof("Going to merge TABLE %s PARTITION %s", m.table, m.partitionName)
_, err := cfg.ClickHouse.connect.Exec(
fmt.Sprintf(
"OPTIMIZE TABLE %s PARTITION ID '%s' FINAL",
m.table,
m.partitionID,
),
)
if err == nil {
return nil
}
var chExc *clickhouse.Exception
if errors.As(err, &chExc) && chExc.Code == 388 && strings.Contains(chExc.Message, "has already been assigned a merge into") {
logrus.WithFields(logrus.Fields{
"table": m.table,
"partition_name": m.partitionName,
}).Info("The partition is already merging:")
return nil
}
return fmt.Errorf("Fail to merge partition %v: %w", m.partitionName, checkErr(err))
}
func checkErr(err error) error {
var chExc *clickhouse.Exception
if err == nil {
return nil
}
if !errors.As(err, &chExc) {
logrus.Errorf("Fail: %v", err)
return err
}
logrus.Errorf(
"[%d] %s \n%s\n",
chExc.Code,
chExc.Message,
chExc.StackTrace,
)
return err
}