1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-25 01:16:21 +02:00

updated connection pool limits

This commit is contained in:
Gani Georgiev 2022-12-11 17:32:56 +02:00
parent f30c9f263f
commit 846b56d393
2 changed files with 7 additions and 9 deletions

View File

@ -6,8 +6,8 @@ import (
"fmt"
"time"
"github.com/pocketbase/dbx"
_ "github.com/mattn/go-sqlite3"
"github.com/pocketbase/dbx"
)
func connectDB(dbPath string) (*dbx.DB, error) {
@ -24,9 +24,9 @@ func connectDB(dbPath string) (*dbx.DB, error) {
// use a fixed connection pool to limit the SQLITE_BUSY errors
// and reduce the open file descriptors
// (the limits are arbitrary and may change in the future)
db.DB().SetMaxOpenConns(800)
db.DB().SetMaxIdleConns(30)
db.DB().SetConnMaxIdleTime(5 * time.Minute)
db.DB().SetMaxOpenConns(20)
db.DB().SetMaxIdleConns(20)
db.DB().SetConnMaxIdleTime(3 * time.Minute)
// additional pragmas not supported through the dsn string
_, err := db.NewQuery(`

View File

@ -24,11 +24,9 @@ func connectDB(dbPath string) (*dbx.DB, error) {
// use a fixed connection pool to limit the SQLITE_BUSY errors and
// reduce the open file descriptors
// (the limits are arbitrary and may change in the future)
//
// @see https://gitlab.com/cznic/sqlite/-/issues/115
db.DB().SetMaxOpenConns(800)
db.DB().SetMaxIdleConns(30)
db.DB().SetConnMaxIdleTime(5 * time.Minute)
db.DB().SetMaxOpenConns(20)
db.DB().SetMaxIdleConns(20)
db.DB().SetConnMaxIdleTime(3 * time.Minute)
return db, nil
}