mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* basic watch tests working * refactor to read previous event within poller * add watch test files * cleanup * watch tests passing * debug cleanup * special handling for canceled context * cleanup * fix wire * fix sqlite_sequence cleanup issue * move watch tests to integration, wait for provisioned dashboards * handle context deadline exceeded and eof errors * add comment about sleep
330 lines
8.2 KiB
Go
330 lines
8.2 KiB
Go
package migrator
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/golang-migrate/migrate/v4/database"
|
|
_ "github.com/lib/pq"
|
|
"github.com/mattn/go-sqlite3"
|
|
"go.uber.org/atomic"
|
|
"xorm.io/xorm"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
var (
|
|
ErrMigratorIsLocked = fmt.Errorf("migrator is locked")
|
|
ErrMigratorIsUnlocked = fmt.Errorf("migrator is unlocked")
|
|
)
|
|
|
|
type Migrator struct {
|
|
DBEngine *xorm.Engine
|
|
Dialect Dialect
|
|
migrations []Migration
|
|
migrationIds map[string]struct{}
|
|
Logger log.Logger
|
|
Cfg *setting.Cfg
|
|
isLocked atomic.Bool
|
|
logMap map[string]MigrationLog
|
|
tableName string
|
|
}
|
|
|
|
type MigrationLog struct {
|
|
Id int64
|
|
MigrationID string `xorm:"migration_id"`
|
|
SQL string `xorm:"sql"`
|
|
Success bool
|
|
Error string
|
|
Timestamp time.Time
|
|
}
|
|
|
|
func NewMigrator(engine *xorm.Engine, cfg *setting.Cfg) *Migrator {
|
|
return NewScopedMigrator(engine, cfg, "")
|
|
}
|
|
|
|
// NewScopedMigrator should only be used for the transition to a new storage engine
|
|
func NewScopedMigrator(engine *xorm.Engine, cfg *setting.Cfg, scope string) *Migrator {
|
|
mg := &Migrator{
|
|
Cfg: cfg,
|
|
DBEngine: engine,
|
|
migrations: make([]Migration, 0),
|
|
migrationIds: make(map[string]struct{}),
|
|
Dialect: NewDialect(engine.DriverName()),
|
|
}
|
|
if scope == "" {
|
|
mg.tableName = "migration_log"
|
|
mg.Logger = log.New("migrator")
|
|
} else {
|
|
mg.tableName = scope + "_migration_log"
|
|
mg.Logger = log.New(scope + "-migrator")
|
|
}
|
|
return mg
|
|
}
|
|
|
|
// AddCreateMigration adds the initial migration log table -- this should likely be
|
|
// automatic and first, but enough tests exists that do not expect that we can keep it explicit
|
|
func (mg *Migrator) AddCreateMigration() {
|
|
mg.AddMigration("create "+mg.tableName+" table", NewAddTableMigration(Table{
|
|
Name: mg.tableName,
|
|
Columns: []*Column{
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
{Name: "migration_id", Type: DB_NVarchar, Length: 255},
|
|
{Name: "sql", Type: DB_Text},
|
|
{Name: "success", Type: DB_Bool},
|
|
{Name: "error", Type: DB_Text},
|
|
{Name: "timestamp", Type: DB_DateTime},
|
|
},
|
|
}))
|
|
}
|
|
|
|
func (mg *Migrator) MigrationsCount() int {
|
|
return len(mg.migrations)
|
|
}
|
|
|
|
func (mg *Migrator) AddMigration(id string, m Migration) {
|
|
if _, ok := mg.migrationIds[id]; ok {
|
|
panic(fmt.Sprintf("migration id conflict: %s", id))
|
|
}
|
|
|
|
m.SetId(id)
|
|
mg.migrations = append(mg.migrations, m)
|
|
mg.migrationIds[id] = struct{}{}
|
|
}
|
|
|
|
func (mg *Migrator) GetMigrationIDs(excludeNotLogged bool) []string {
|
|
result := make([]string, 0, len(mg.migrations))
|
|
for _, migration := range mg.migrations {
|
|
if migration.SkipMigrationLog() && excludeNotLogged {
|
|
continue
|
|
}
|
|
result = append(result, migration.Id())
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (mg *Migrator) GetMigrationLog() (map[string]MigrationLog, error) {
|
|
logMap := make(map[string]MigrationLog)
|
|
logItems := make([]MigrationLog, 0)
|
|
|
|
exists, err := mg.DBEngine.IsTableExist(mg.tableName)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%v: %w", "failed to check table existence", err)
|
|
}
|
|
if !exists {
|
|
return logMap, nil
|
|
}
|
|
|
|
if err = mg.DBEngine.Table(mg.tableName).Find(&logItems); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, logItem := range logItems {
|
|
if !logItem.Success {
|
|
continue
|
|
}
|
|
logMap[logItem.MigrationID] = logItem
|
|
}
|
|
|
|
mg.logMap = logMap
|
|
return logMap, nil
|
|
}
|
|
|
|
func (mg *Migrator) RemoveMigrationLogs(migrationsIDs ...string) {
|
|
for _, id := range migrationsIDs {
|
|
delete(mg.logMap, id)
|
|
}
|
|
}
|
|
|
|
func (mg *Migrator) Start(isDatabaseLockingEnabled bool, lockAttemptTimeout int) (err error) {
|
|
if !isDatabaseLockingEnabled {
|
|
return mg.run()
|
|
}
|
|
|
|
dbName, err := mg.Dialect.GetDBName(mg.DBEngine.DataSourceName())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
key, err := database.GenerateAdvisoryLockId(dbName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return mg.InTransaction(func(sess *xorm.Session) error {
|
|
mg.Logger.Info("Locking database")
|
|
lockCfg := LockCfg{
|
|
Session: sess,
|
|
Key: key,
|
|
Timeout: lockAttemptTimeout,
|
|
}
|
|
|
|
if err := casRestoreOnErr(&mg.isLocked, false, true, ErrMigratorIsLocked, mg.Dialect.Lock, lockCfg); err != nil {
|
|
mg.Logger.Error("Failed to lock database", "error", err)
|
|
return err
|
|
}
|
|
|
|
defer func() {
|
|
mg.Logger.Info("Unlocking database")
|
|
unlockErr := casRestoreOnErr(&mg.isLocked, true, false, ErrMigratorIsUnlocked, mg.Dialect.Unlock, lockCfg)
|
|
if unlockErr != nil {
|
|
mg.Logger.Error("Failed to unlock database", "error", unlockErr)
|
|
}
|
|
}()
|
|
|
|
// migration will run inside a nested transaction
|
|
return mg.run()
|
|
})
|
|
}
|
|
|
|
func (mg *Migrator) run() (err error) {
|
|
mg.Logger.Info("Starting DB migrations")
|
|
|
|
_, err = mg.GetMigrationLog()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
migrationsPerformed := 0
|
|
migrationsSkipped := 0
|
|
start := time.Now()
|
|
for _, m := range mg.migrations {
|
|
m := m
|
|
_, exists := mg.logMap[m.Id()]
|
|
if exists {
|
|
mg.Logger.Debug("Skipping migration: Already executed", "id", m.Id())
|
|
migrationsSkipped++
|
|
continue
|
|
}
|
|
|
|
sql := m.SQL(mg.Dialect)
|
|
|
|
record := MigrationLog{
|
|
MigrationID: m.Id(),
|
|
SQL: sql,
|
|
Timestamp: time.Now(),
|
|
}
|
|
|
|
err := mg.InTransaction(func(sess *xorm.Session) error {
|
|
err := mg.exec(m, sess)
|
|
// if we get an sqlite busy/locked error, sleep 100ms and try again
|
|
cnt := 0
|
|
for cnt < 3 && (errors.Is(err, sqlite3.ErrLocked) || errors.Is(err, sqlite3.ErrBusy)) {
|
|
cnt++
|
|
mg.Logger.Debug("Database locked, sleeping then retrying", "error", err, "sql", sql)
|
|
time.Sleep(100 * time.Millisecond)
|
|
err = mg.exec(m, sess)
|
|
}
|
|
|
|
if err != nil {
|
|
mg.Logger.Error("Exec failed", "error", err, "sql", sql)
|
|
record.Error = err.Error()
|
|
if !m.SkipMigrationLog() {
|
|
if _, err := sess.Table(mg.tableName).Insert(&record); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
record.Success = true
|
|
if !m.SkipMigrationLog() {
|
|
_, err = sess.Table(mg.tableName).Insert(&record)
|
|
}
|
|
if err == nil {
|
|
migrationsPerformed++
|
|
}
|
|
return err
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("%v: %w", fmt.Sprintf("migration failed (id = %s)", m.Id()), err)
|
|
}
|
|
}
|
|
|
|
mg.Logger.Info("migrations completed", "performed", migrationsPerformed, "skipped", migrationsSkipped, "duration", time.Since(start))
|
|
|
|
// Make sure migrations are synced
|
|
return mg.DBEngine.Sync2()
|
|
}
|
|
|
|
func (mg *Migrator) exec(m Migration, sess *xorm.Session) error {
|
|
start := time.Now()
|
|
mg.Logger.Info("Executing migration", "id", m.Id())
|
|
|
|
condition := m.GetCondition()
|
|
if condition != nil {
|
|
sql, args := condition.SQL(mg.Dialect)
|
|
|
|
if sql != "" {
|
|
mg.Logger.Debug("Executing migration condition SQL", "id", m.Id(), "sql", sql, "args", args)
|
|
results, err := sess.SQL(sql, args...).Query()
|
|
if err != nil {
|
|
mg.Logger.Error("Executing migration condition failed", "id", m.Id(), "error", err)
|
|
return err
|
|
}
|
|
|
|
if !condition.IsFulfilled(results) {
|
|
mg.Logger.Warn("Skipping migration: Already executed, but not recorded in migration log", "id", m.Id())
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
var err error
|
|
if codeMigration, ok := m.(CodeMigration); ok {
|
|
mg.Logger.Debug("Executing code migration", "id", m.Id())
|
|
err = codeMigration.Exec(sess, mg)
|
|
} else {
|
|
sql := m.SQL(mg.Dialect)
|
|
mg.Logger.Debug("Executing sql migration", "id", m.Id(), "sql", sql)
|
|
_, err = sess.Exec(sql)
|
|
}
|
|
|
|
if err != nil {
|
|
mg.Logger.Error("Executing migration failed", "id", m.Id(), "error", err, "duration", time.Since(start))
|
|
return err
|
|
}
|
|
|
|
mg.Logger.Info("Migration successfully executed", "id", m.Id(), "duration", time.Since(start))
|
|
|
|
return nil
|
|
}
|
|
|
|
type dbTransactionFunc func(sess *xorm.Session) error
|
|
|
|
func (mg *Migrator) InTransaction(callback dbTransactionFunc) error {
|
|
sess := mg.DBEngine.NewSession()
|
|
defer sess.Close()
|
|
|
|
if err := sess.Begin(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := callback(sess); err != nil {
|
|
if rollErr := sess.Rollback(); rollErr != nil {
|
|
return fmt.Errorf("failed to roll back transaction due to error: %s: %w", rollErr, err)
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
if err := sess.Commit(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func casRestoreOnErr(lock *atomic.Bool, o, n bool, casErr error, f func(LockCfg) error, lockCfg LockCfg) error {
|
|
if !lock.CompareAndSwap(o, n) {
|
|
return casErr
|
|
}
|
|
if err := f(lockCfg); err != nil {
|
|
// Automatically unlock/lock on error
|
|
lock.Store(o)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|