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