-
Notifications
You must be signed in to change notification settings - Fork 146
/
Copy pathdb.go
146 lines (131 loc) · 4.07 KB
/
db.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
// Copyright (C) 2023 Percona LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// Package main.
package main
import (
"embed"
"fmt"
"log"
"net/url"
"strings"
clickhouse "github.com/ClickHouse/clickhouse-go/151" // register database/sql driver
"github.com/golang-migrate/migrate/v4"
_ "github.com/golang-migrate/migrate/v4/database/clickhouse" // register golang-migrate driver
"github.com/golang-migrate/migrate/v4/source/iofs"
"github.com/jmoiron/sqlx" // TODO: research alternatives. Ex.: https://github.com/go-reform/reform
"github.com/jmoiron/sqlx/reflectx"
"github.com/pkg/errors"
)
const (
databaseNotExistErrorCode = 81
)
// NewDB return updated db.
func NewDB(dsn string, maxIdleConns, maxOpenConns int) *sqlx.DB {
db, err := sqlx.Connect("clickhouse", dsn)
if err != nil {
if exception, ok := err.(*clickhouse.Exception); ok && exception.Code == databaseNotExistErrorCode { //nolint:errorlint
err = createDB(dsn)
if err != nil {
log.Fatalf("Database wasn't created: %v", err)
}
db, err = sqlx.Connect("clickhouse", dsn)
if err != nil {
log.Fatalf("Connection: %v", err)
}
} else {
log.Fatalf("Connection: %v", err)
}
}
// TODO: find solution with better performance
db.Mapper = reflectx.NewMapperTagFunc("json", strings.ToUpper, func(value string) string {
if strings.Contains(value, ",") {
return strings.Split(value, ",")[0]
}
return value
})
db.SetConnMaxLifetime(0)
db.SetMaxIdleConns(maxIdleConns)
db.SetMaxOpenConns(maxOpenConns)
if err := runMigrations(dsn); err != nil {
log.Fatal("Migrations: ", err)
}
log.Println("Migrations applied.")
return db
}
func createDB(dsn string) error {
log.Println("Creating database")
clickhouseURL, err := url.Parse(dsn)
if err != nil {
return err
}
q := clickhouseURL.Query()
databaseName := q.Get("database")
q.Set("database", "default")
clickhouseURL.RawQuery = q.Encode()
defaultDB, err := sqlx.Connect("clickhouse", clickhouseURL.String())
if err != nil {
return err
}
defer defaultDB.Close() //nolint:errcheck
result, err := defaultDB.Exec(fmt.Sprintf(`CREATE DATABASE %s ENGINE = Atomic`, databaseName))
if err != nil {
log.Printf("Result: %v", result)
return err
}
log.Println("Database was created")
return nil
// The qan-api2 will exit after creating the database, it'll be restarted by supervisor
}
//go:embed migrations/sql/*.sql
var fs embed.FS
func runMigrations(dsn string) error {
d, err := iofs.New(fs, "migrations/sql")
if err != nil {
return err
}
log.Println("dsn: ", dsn)
m, err := migrate.NewWithSourceInstance("iofs", d, dsn)
if err != nil {
return err
}
// run up to the latest migration
err = m.Up()
if errors.Is(err, migrate.ErrNoChange) {
return nil
}
return err
}
// DropOldPartition drops number of days old partitions of pmm.metrics in ClickHouse.
func DropOldPartition(db *sqlx.DB, dbName string, days uint) {
partitions := []string{}
const query = `
SELECT DISTINCT partition
FROM system.parts
WHERE toUInt32(partition) < toYYYYMMDD(now() - toIntervalDay(?)) AND database = ? and visible = 1 ORDER BY partition
`
err := db.Select(
&partitions,
query,
days,
dbName)
if err != nil {
log.Printf("Select %d days old partitions of system.parts. Result: %v, Error: %v", days, partitions, err)
return
}
for _, part := range partitions {
result, err := db.Exec(fmt.Sprintf(`ALTER TABLE metrics DROP PARTITION %s`, part))
log.Printf("Drop %s partitions of metrics. Result: %v, Error: %v", part, result, err)
}
}