|
@@ -8,14 +8,14 @@ import (
|
|
"eta/eta_task/utils"
|
|
"eta/eta_task/utils"
|
|
"time"
|
|
"time"
|
|
|
|
|
|
- _ "github.com/go-sql-driver/mysql"
|
|
|
|
-
|
|
|
|
"github.com/beego/beego/v2/client/orm"
|
|
"github.com/beego/beego/v2/client/orm"
|
|
|
|
+ _ "github.com/go-sql-driver/mysql"
|
|
|
|
+ _ "github.com/lib/pq"
|
|
)
|
|
)
|
|
|
|
|
|
func init() {
|
|
func init() {
|
|
|
|
|
|
- _ = orm.RegisterDataBase("default", "mysql", utils.MYSQL_URL)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("default", utils.DBDRIVER_NAME, utils.MYSQL_URL)
|
|
orm.SetMaxIdleConns("default", 50)
|
|
orm.SetMaxIdleConns("default", 50)
|
|
orm.SetMaxOpenConns("default", 100)
|
|
orm.SetMaxOpenConns("default", 100)
|
|
|
|
|
|
@@ -23,7 +23,7 @@ func init() {
|
|
db.SetConnMaxLifetime(10 * time.Minute)
|
|
db.SetConnMaxLifetime(10 * time.Minute)
|
|
|
|
|
|
if utils.MYSQL_URL_RDDP != "" {
|
|
if utils.MYSQL_URL_RDDP != "" {
|
|
- _ = orm.RegisterDataBase("rddp", "mysql", utils.MYSQL_URL_RDDP)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("rddp", utils.DBDRIVER_NAME, utils.MYSQL_URL_RDDP)
|
|
orm.SetMaxIdleConns("rddp", 50)
|
|
orm.SetMaxIdleConns("rddp", 50)
|
|
orm.SetMaxOpenConns("rddp", 100)
|
|
orm.SetMaxOpenConns("rddp", 100)
|
|
|
|
|
|
@@ -32,7 +32,7 @@ func init() {
|
|
}
|
|
}
|
|
|
|
|
|
if utils.MYSQL_URL_EDB != "" {
|
|
if utils.MYSQL_URL_EDB != "" {
|
|
- _ = orm.RegisterDataBase("edb", "mysql", utils.MYSQL_URL_EDB)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("edb", utils.DBDRIVER_NAME, utils.MYSQL_URL_EDB)
|
|
orm.SetMaxIdleConns("edb", 50)
|
|
orm.SetMaxIdleConns("edb", 50)
|
|
orm.SetMaxOpenConns("edb", 100)
|
|
orm.SetMaxOpenConns("edb", 100)
|
|
|
|
|
|
@@ -41,7 +41,7 @@ func init() {
|
|
}
|
|
}
|
|
|
|
|
|
if utils.MYSQL_URL_DATA != "" {
|
|
if utils.MYSQL_URL_DATA != "" {
|
|
- _ = orm.RegisterDataBase("data", "mysql", utils.MYSQL_URL_DATA)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("data", utils.DBDRIVER_NAME, utils.MYSQL_URL_DATA)
|
|
orm.SetMaxIdleConns("data", 50)
|
|
orm.SetMaxIdleConns("data", 50)
|
|
orm.SetMaxOpenConns("data", 100)
|
|
orm.SetMaxOpenConns("data", 100)
|
|
|
|
|
|
@@ -51,7 +51,7 @@ func init() {
|
|
}
|
|
}
|
|
|
|
|
|
if utils.MYSQL_URL_GL != "" {
|
|
if utils.MYSQL_URL_GL != "" {
|
|
- _ = orm.RegisterDataBase("gl", "mysql", utils.MYSQL_URL_GL)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("gl", utils.DBDRIVER_NAME, utils.MYSQL_URL_GL)
|
|
orm.SetMaxIdleConns("gl", 50)
|
|
orm.SetMaxIdleConns("gl", 50)
|
|
orm.SetMaxOpenConns("gl", 100)
|
|
orm.SetMaxOpenConns("gl", 100)
|
|
|
|
|
|
@@ -60,7 +60,7 @@ func init() {
|
|
}
|
|
}
|
|
|
|
|
|
if utils.MYSQL_URL_ETA != "" {
|
|
if utils.MYSQL_URL_ETA != "" {
|
|
- _ = orm.RegisterDataBase("eta", "mysql", utils.MYSQL_URL_ETA)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("eta", utils.DBDRIVER_NAME, utils.MYSQL_URL_ETA)
|
|
orm.SetMaxIdleConns("eta", 50)
|
|
orm.SetMaxIdleConns("eta", 50)
|
|
orm.SetMaxOpenConns("eta", 100)
|
|
orm.SetMaxOpenConns("eta", 100)
|
|
|
|
|
|
@@ -69,7 +69,7 @@ func init() {
|
|
}
|
|
}
|
|
// 用户主库
|
|
// 用户主库
|
|
if utils.MYSQL_WEEKLY_URL != `` && (utils.BusinessCode == utils.BusinessCodeRelease || utils.BusinessCode == utils.BusinessCodeSandbox || utils.BusinessCode == utils.BusinessCodeDebug) {
|
|
if utils.MYSQL_WEEKLY_URL != `` && (utils.BusinessCode == utils.BusinessCodeRelease || utils.BusinessCode == utils.BusinessCodeSandbox || utils.BusinessCode == utils.BusinessCodeDebug) {
|
|
- _ = orm.RegisterDataBase("weekly", "mysql", utils.MYSQL_WEEKLY_URL)
|
|
|
|
|
|
+ _ = orm.RegisterDataBase("weekly", utils.DBDRIVER_NAME, utils.MYSQL_WEEKLY_URL)
|
|
orm.SetMaxIdleConns("weekly", 50)
|
|
orm.SetMaxIdleConns("weekly", 50)
|
|
orm.SetMaxOpenConns("weekly", 100)
|
|
orm.SetMaxOpenConns("weekly", 100)
|
|
|
|
|