|
|
75f89f19ba
|
feat(database/gdb): add MaxIdleConnTime configuration for SetConnMaxIdleTime support (#4625)
## Summary
- Add `MaxIdleConnTime` configuration field to support Go 1.15+
`sql.DB.SetConnMaxIdleTime()` method
- Add `SetMaxIdleConnTime()` method to DB interface and Core
implementation
- Apply configuration during connection pool initialization
- Add unit tests for the new configuration option
## Related Issue
Closes #4596
## Changes
| File | Change |
|------|--------|
| `database/gdb/gdb_core_config.go` | Add `MaxIdleConnTime` field to
`ConfigNode`, add `SetMaxIdleConnTime()` method |
| `database/gdb/gdb.go` | Add interface method, `dynamicConfig` field,
initialization logic |
| `database/gdb/gdb_z_core_config_test.go` | Add unit test for
`SetMaxIdleConnTime` |
| `database/gdb/gdb_z_core_config_external_test.go` | Add `ConfigNode`
connection pool settings test |
## Usage
**Configuration file:**
```yaml
database:
default:
maxIdleTime: "10s" # Close idle connections after 10 seconds
```
**Code:**
```go
db.SetMaxIdleConnTime(10 * time.Second)
```
## Test Plan
- [x] Unit tests pass (`go test -run
"Test_Core_SetMaxConnections|Test_ConfigNode_ConnectionPoolSettings"`)
- [x] All database drivers compile successfully (mysql, pgsql, sqlite,
clickhouse, dm, mssql, oracle, etc.)
- [x] No breaking changes - follows Go's default behavior (0 = no idle
time limit)
|
2026-01-19 13:04:03 +08:00 |
|
|
|
edc96a8c16
|
feat(database/gdb): Add the function of obtaining all configurations to facilitate business operations such as verification after addition. (#4389)
…ss operations such as verification after addition.
---------
Signed-off-by: sxp20008 <81209245@qq.com>
Co-authored-by: houseme <housemecn@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: hailaz <739476267@qq.com>
|
2025-09-18 16:21:02 +08:00 |
|
|
|
92eab81926
|
fix(database/gdb): add compatibility for old configiration with both Type and part of Link configurations (#4058)
|
2024-12-18 15:54:27 +08:00 |
|
|
|
f79aef6669
|
fix(database/gdb): fix context canceled error in transaction due to usage of TransTimeout configuration (#4037)
|
2024-12-17 21:15:54 +08:00 |
|
|
|
b7c74c9a35
|
fix(contrib/drivers/pgsql): add unix socket connection support (#4028)
|
2024-12-11 09:58:26 +08:00 |
|
|
|
6a99931798
|
fix(database/gdb): #3755 error parsing database link without port number (#3772)
|
2024-09-13 16:50:59 +08:00 |
|
|
|
bbcf49db98
|
fix: #3238 first column might be overwritten in interal context data in multiple goroutines querying (#3476)
|
2024-04-16 19:31:06 +08:00 |
|
|
|
290f4a3e65
|
fix: recognize json_valid constraint as json field type for database mariadb #2746 (#3309)
|
2024-03-06 19:07:31 +08:00 |
|
|
|
0b407c5e6d
|
fix "gf gen pb" api and ctrl not working well. (#3076)
|
2023-11-08 21:26:51 +08:00 |
|
|
|
e075432c40
|
comment update for package contrib/drivers/mysql (#2649)
|
2023-05-25 22:00:57 +08:00 |
|
|
|
34946f6105
|
fix configuration of Namespace for pgsql (#2481)
|
2023-03-01 19:30:40 +08:00 |
|
|
|
0361f9f7de
|
fix #2435 (#2437)
|
2023-02-13 19:18:30 +08:00 |
|
|
|
6ff4ed84e5
|
version v2.3.0 (#2392)
* v2.3.0
* up
* up
* up
|
2023-01-11 19:19:41 +08:00 |
|
|
|
91b94878d3
|
fix used schema not change in nested transaction when used different schemas (#2279)
* fix used schema not change in nested transaction between different schemas
* up
Co-authored-by: houseme <housemecn@gmail.com>
|
2022-11-10 09:55:08 +08:00 |
|
|
|
c4a5b8ca94
|
fix issue 1915 and repeated link instance key for package gdb (#2250)
* fix issue #1915
* fix issue in repeated link instance key
* add configuration item Namespace for package gdb
* up
* up
* fix: pgsql list table names (#2255)
Co-authored-by: Gin <qinyuguang@gmail.com>
|
2022-11-03 20:22:36 +08:00 |
|
|
|
6cd84e8276
|
fix configuration management for package gdb (#2163)
|
2022-09-30 15:41:51 +08:00 |
|
|
|
141ca62c6d
|
feature/v2.2.0 (#2154)
|
2022-09-26 22:11:13 +08:00 |
|
|
|
f876a56d2a
|
some improves for ci yaml and package cmd/gf, database/gdb (#1972)
|
2022-07-07 21:16:26 +08:00 |
|
|
|
1b327b8abd
|
improve database configuration parsing for package gins/gdb
|
2022-06-20 12:07:51 +08:00 |
|
|
|
5ab959ba58
|
fix issue #1554
|
2022-02-16 00:26:06 +08:00 |
|
|
|
be03b3cdda
|
Improved import, by group improt.
|
2021-11-13 23:23:55 +08:00 |
|
|
|
1bc0635f8b
|
version 2
|
2021-10-11 21:41:56 +08:00 |
|
|
|
dd4e08e88d
|
refract package gdb; add selected & affected count to logging
|
2021-09-29 20:39:02 +08:00 |
|
|
|
993bf897cf
|
remove deprecated functions; refract package gjson
|
2021-09-27 22:47:39 +08:00 |
|
|
|
1c600d5b20
|
revert ORM logger from interface to glog.Logger
|
2021-08-10 15:36:15 +08:00 |
|
|
|
28cb0bef25
|
change logger of DB from glog.Logger to interface Logger
|
2021-08-03 20:34:26 +08:00 |
|
|
|
b958689264
|
add CtxStrict feature for package gdb
|
2021-06-26 18:20:55 +08:00 |
|
|
|
2af4fd86cc
|
rename configuration node name from LinkInfo to Link
|
2021-06-15 19:57:55 +08:00 |
|
|
|
6eb7261dfd
|
add timezone configuration for package gdb, effective for mysql and pgsql
|
2021-06-07 13:45:40 +08:00 |
|
|
|
4e41d8aff8
|
improve context and nested transaction feature for package gdb
|
2021-05-21 13:25:53 +08:00 |
|
|
|
49dd17c047
|
remove maxIdleTime feature due to be compatible with old Golang version <= v1.14
|
2021-04-04 12:13:51 +08:00 |
|
|
|
a3b94c24de
|
fix issue #854; add maxIdleTime configuration and comments update for package gdb; version updates
|
2021-04-04 12:01:22 +08:00 |
|
|
|
acf47f3907
|
orm with feature
|
2021-02-08 17:57:21 +08:00 |
|
|
|
4c6d9f5eff
|
improve tracing feture for package glog/gdb/gredis
|
2021-01-26 01:19:55 +08:00 |
|
|
|
99dd889ff0
|
add tracing feature for package gredis
|
2021-01-25 21:59:44 +08:00 |
|
|
|
b89d8d2740
|
add tracing feature for package gdb
|
2021-01-25 21:17:32 +08:00 |
|
|
|
a9aa021914
|
add json tag for configuration struct for package gdb/gredis/ghttp/glog/gview
|
2021-01-12 00:42:33 +08:00 |
|
|
|
2ae32ed2c2
|
add QueryTimeout/ExecTimeout/TranTimeout/PrepareTimeout for package gdb
|
2021-01-11 20:48:35 +08:00 |
|
|
|
cb2c9c43a8
|
rename constant names
|
2020-12-14 19:34:02 +08:00 |
|
|
|
7316e6648f
|
change errors to gerror; update copyright in comment
|
2020-12-09 16:04:29 +08:00 |
|
|
|
c0b59007ce
|
improve configuration for package gdb
|
2020-11-27 13:24:05 +08:00 |
|
|
|
561a541fa1
|
add custom CreatedAt/UpdatedAt/DeletedAt filed name configuration for package gdb
|
2020-10-20 21:01:39 +08:00 |
|
|
|
a7c269886b
|
improve support for dynamic database configurations in codes
|
2020-08-31 15:39:27 +08:00 |
|
|
|
b396096721
|
improve dry-run feature by adding global dry-run variable reading from environment or command options
|
2020-07-30 23:08:27 +08:00 |
|
|
|
30501a882d
|
improve function Struct for package gconv
|
2020-06-06 15:31:04 +08:00 |
|
|
|
7fd53673ce
|
add automatic time and soft deleting features: create_at/update_at/delete_at for package gdb; improve schema changing feature for package gdb
|
2020-04-08 21:26:14 +08:00 |
|
|
|
7bcc596308
|
add GetVar function for package genv; add DryRun feature for package gdb
|
2020-04-02 20:52:37 +08:00 |
|
|
|
0e52d467d3
|
improving package gdb
|
2020-03-08 00:17:42 +08:00 |
|