mysql2_store.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package mysql2
  2. import (
  3. "context"
  4. "database/sql"
  5. "fmt"
  6. "time"
  7. "github.com/chrislusf/seaweedfs/weed/filer"
  8. "github.com/chrislusf/seaweedfs/weed/filer/abstract_sql"
  9. "github.com/chrislusf/seaweedfs/weed/filer/mysql"
  10. "github.com/chrislusf/seaweedfs/weed/util"
  11. _ "github.com/go-sql-driver/mysql"
  12. )
  13. const (
  14. CONNECTION_URL_PATTERN = "%s:%s@tcp(%s:%d)/%s?charset=utf8"
  15. )
  16. func init() {
  17. filer.Stores = append(filer.Stores, &MysqlStore2{})
  18. }
  19. type MysqlStore2 struct {
  20. abstract_sql.AbstractSqlStore
  21. }
  22. func (store *MysqlStore2) GetName() string {
  23. return "mysql2"
  24. }
  25. func (store *MysqlStore2) Initialize(configuration util.Configuration, prefix string) (err error) {
  26. return store.initialize(
  27. configuration.GetString(prefix+"createTable"),
  28. configuration.GetString(prefix+"username"),
  29. configuration.GetString(prefix+"password"),
  30. configuration.GetString(prefix+"hostname"),
  31. configuration.GetInt(prefix+"port"),
  32. configuration.GetString(prefix+"database"),
  33. configuration.GetInt(prefix+"connection_max_idle"),
  34. configuration.GetInt(prefix+"connection_max_open"),
  35. configuration.GetInt(prefix+"connection_max_lifetime_seconds"),
  36. configuration.GetBool(prefix+"interpolateParams"),
  37. )
  38. }
  39. func (store *MysqlStore2) initialize(createTable, user, password, hostname string, port int, database string, maxIdle, maxOpen,
  40. maxLifetimeSeconds int, interpolateParams bool) (err error) {
  41. store.SupportBucketTable = true
  42. store.SqlGenerator = &mysql.SqlGenMysql{
  43. CreateTableSqlTemplate: createTable,
  44. DropTableSqlTemplate: "drop table %s",
  45. }
  46. sqlUrl := fmt.Sprintf(CONNECTION_URL_PATTERN, user, password, hostname, port, database)
  47. if interpolateParams {
  48. sqlUrl += "&interpolateParams=true"
  49. }
  50. var dbErr error
  51. store.DB, dbErr = sql.Open("mysql", sqlUrl)
  52. if dbErr != nil {
  53. store.DB.Close()
  54. store.DB = nil
  55. return fmt.Errorf("can not connect to %s error:%v", sqlUrl, err)
  56. }
  57. store.DB.SetMaxIdleConns(maxIdle)
  58. store.DB.SetMaxOpenConns(maxOpen)
  59. store.DB.SetConnMaxLifetime(time.Duration(maxLifetimeSeconds) * time.Second)
  60. if err = store.DB.Ping(); err != nil {
  61. return fmt.Errorf("connect to %s error:%v", sqlUrl, err)
  62. }
  63. if err = store.CreateTable(context.Background(), abstract_sql.DEFAULT_TABLE); err != nil {
  64. return fmt.Errorf("init table %s: %v", abstract_sql.DEFAULT_TABLE, err)
  65. }
  66. return nil
  67. }