2018-05-26 12:32:15 +00:00
|
|
|
package mysql
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2018-05-27 18:52:26 +00:00
|
|
|
"fmt"
|
2021-01-14 08:06:15 +00:00
|
|
|
"time"
|
2018-05-26 12:32:15 +00:00
|
|
|
|
2021-03-29 06:58:13 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
|
|
|
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer/abstract_sql"
|
2018-08-19 22:17:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-08-19 22:18:37 +00:00
|
|
|
_ "github.com/go-sql-driver/mysql"
|
2018-05-26 12:32:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
CONNECTION_URL_PATTERN = "%s:%s@tcp(%s:%d)/%s?charset=utf8"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2020-09-01 07:21:19 +00:00
|
|
|
filer.Stores = append(filer.Stores, &MysqlStore{})
|
2018-05-26 12:32:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type MysqlStore struct {
|
|
|
|
abstract_sql.AbstractSqlStore
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store *MysqlStore) GetName() string {
|
|
|
|
return "mysql"
|
|
|
|
}
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
func (store *MysqlStore) Initialize(configuration util.Configuration, prefix string) (err error) {
|
2018-05-26 12:32:15 +00:00
|
|
|
return store.initialize(
|
2021-03-29 21:32:03 +00:00
|
|
|
configuration.GetString(prefix+"upsertQuery"),
|
2021-03-29 22:36:02 +00:00
|
|
|
configuration.GetBool(prefix+"enableUpsert"),
|
2020-01-29 17:09:55 +00:00
|
|
|
configuration.GetString(prefix+"username"),
|
|
|
|
configuration.GetString(prefix+"password"),
|
|
|
|
configuration.GetString(prefix+"hostname"),
|
|
|
|
configuration.GetInt(prefix+"port"),
|
|
|
|
configuration.GetString(prefix+"database"),
|
|
|
|
configuration.GetInt(prefix+"connection_max_idle"),
|
|
|
|
configuration.GetInt(prefix+"connection_max_open"),
|
2021-01-14 06:14:21 +00:00
|
|
|
configuration.GetInt(prefix+"connection_max_lifetime_seconds"),
|
2020-01-29 17:09:55 +00:00
|
|
|
configuration.GetBool(prefix+"interpolateParams"),
|
2018-05-26 12:32:15 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-03-29 22:36:02 +00:00
|
|
|
func (store *MysqlStore) initialize(upsertQuery string, enableUpsert bool, user, password, hostname string, port int, database string, maxIdle, maxOpen,
|
2021-01-15 07:11:27 +00:00
|
|
|
maxLifetimeSeconds int, interpolateParams bool) (err error) {
|
2021-01-19 21:53:16 +00:00
|
|
|
|
2021-01-19 23:55:51 +00:00
|
|
|
store.SupportBucketTable = false
|
2021-03-29 21:32:03 +00:00
|
|
|
if !enableUpsert {
|
2021-04-02 09:22:26 +00:00
|
|
|
upsertQuery = ""
|
2021-03-29 21:32:03 +00:00
|
|
|
}
|
2021-01-19 23:55:51 +00:00
|
|
|
store.SqlGenerator = &SqlGenMysql{
|
2021-01-20 01:21:50 +00:00
|
|
|
CreateTableSqlTemplate: "",
|
2021-02-18 04:57:08 +00:00
|
|
|
DropTableSqlTemplate: "drop table `%s`",
|
2021-03-29 21:32:03 +00:00
|
|
|
UpsertQueryTemplate: upsertQuery,
|
2021-01-19 23:55:51 +00:00
|
|
|
}
|
2018-05-27 05:02:49 +00:00
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
sqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, password, hostname, port, database)
|
2021-02-17 10:13:50 +00:00
|
|
|
adaptedSqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, "<ADAPTED>", hostname, port, database)
|
2019-11-27 20:34:03 +00:00
|
|
|
if interpolateParams {
|
|
|
|
sqlUrl += "&interpolateParams=true"
|
2021-02-17 10:13:50 +00:00
|
|
|
adaptedSqlUrl += "&interpolateParams=true"
|
2019-11-27 20:34:03 +00:00
|
|
|
}
|
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
var dbErr error
|
|
|
|
store.DB, dbErr = sql.Open("mysql", sqlUrl)
|
|
|
|
if dbErr != nil {
|
|
|
|
store.DB.Close()
|
|
|
|
store.DB = nil
|
2021-02-17 10:13:50 +00:00
|
|
|
return fmt.Errorf("can not connect to %s error:%v", adaptedSqlUrl, err)
|
2018-05-26 12:32:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
store.DB.SetMaxIdleConns(maxIdle)
|
|
|
|
store.DB.SetMaxOpenConns(maxOpen)
|
2021-01-15 07:11:27 +00:00
|
|
|
store.DB.SetConnMaxLifetime(time.Duration(maxLifetimeSeconds) * time.Second)
|
2018-05-26 20:35:56 +00:00
|
|
|
|
|
|
|
if err = store.DB.Ping(); err != nil {
|
|
|
|
return fmt.Errorf("connect to %s error:%v", sqlUrl, err)
|
|
|
|
}
|
|
|
|
|
2018-05-26 12:32:15 +00:00
|
|
|
return nil
|
|
|
|
}
|