Jiquan Long b0a12116c8
Fix meta migration tool (#19814)
Signed-off-by: longjiquan <jiquan.long@zilliz.com>

Signed-off-by: longjiquan <jiquan.long@zilliz.com>
2022-10-17 15:07:25 +08:00

112 lines
2.6 KiB
Go

package configs
import (
"fmt"
"github.com/milvus-io/milvus/cmd/tools/migration/console"
"github.com/milvus-io/milvus/internal/util"
"github.com/milvus-io/milvus/internal/util/paramtable"
)
const (
RunCmd = "run"
BackupCmd = "backup"
RollbackCmd = "rollback"
)
type RunConfig struct {
base *paramtable.BaseTable
Cmd string
RunWithBackup bool
SourceVersion string
TargetVersion string
BackupFilePath string
}
func newRunConfig(base *paramtable.BaseTable) *RunConfig {
c := &RunConfig{}
c.init(base)
return c
}
func (c *RunConfig) String() string {
switch c.Cmd {
case RunCmd:
return fmt.Sprintf("Cmd: %s, SourceVersion: %s, TargetVersion: %s, BackupFilePath: %s, RunWithBackup: %v",
c.Cmd, c.SourceVersion, c.TargetVersion, c.BackupFilePath, c.RunWithBackup)
case BackupCmd:
return fmt.Sprintf("Cmd: %s, SourceVersion: %s, BackupFilePath: %s",
c.Cmd, c.SourceVersion, c.BackupFilePath)
case RollbackCmd:
return fmt.Sprintf("Cmd: %s, SourceVersion: %s, TargetVersion: %s, BackupFilePath: %s",
c.Cmd, c.SourceVersion, c.TargetVersion, c.BackupFilePath)
default:
return fmt.Sprintf("invalid cmd: %s", c.Cmd)
}
}
func (c *RunConfig) show() {
console.Warning(c.String())
}
func (c *RunConfig) init(base *paramtable.BaseTable) {
c.base = base
c.Cmd = c.base.LoadWithDefault("cmd.type", "")
c.RunWithBackup = c.base.ParseBool("cmd.runWithBackup", false)
c.SourceVersion = c.base.LoadWithDefault("config.sourceVersion", "")
c.TargetVersion = c.base.LoadWithDefault("config.targetVersion", "")
c.BackupFilePath = c.base.LoadWithDefault("config.backupFilePath", "")
c.show()
}
type MilvusConfig struct {
MetaStoreCfg *paramtable.MetaStoreConfig
EtcdCfg *paramtable.EtcdConfig
MysqlCfg *paramtable.MetaDBConfig
}
func newMilvusConfig(base *paramtable.BaseTable) *MilvusConfig {
c := &MilvusConfig{}
c.init(base)
return c
}
func (c *MilvusConfig) init(base *paramtable.BaseTable) {
c.MetaStoreCfg = &paramtable.MetaStoreConfig{}
c.EtcdCfg = &paramtable.EtcdConfig{}
c.MysqlCfg = &paramtable.MetaDBConfig{}
c.MetaStoreCfg.Base = base
c.MetaStoreCfg.LoadCfgToMemory()
switch c.MetaStoreCfg.MetaStoreType {
case util.MetaStoreTypeMysql:
c.MysqlCfg.Base = base
c.MysqlCfg.LoadCfgToMemory()
default:
}
c.EtcdCfg.Base = base
c.EtcdCfg.LoadCfgToMemory()
}
type Config struct {
base *paramtable.BaseTable
*RunConfig
*MilvusConfig
}
func (c *Config) init(yamlFile string) {
c.base = paramtable.NewBaseTableFromYamlOnly(yamlFile)
c.RunConfig = newRunConfig(c.base)
c.MilvusConfig = newMilvusConfig(c.base)
}
func NewConfig(yamlFile string) *Config {
c := &Config{}
c.init(yamlFile)
return c
}