Skip to content

Commit

Permalink
Update docs for keepalive-related configuration for Druid, Hikari, an…
Browse files Browse the repository at this point in the history
…d DBCP (#940)
  • Loading branch information
xingfudeshi authored Feb 27, 2025
1 parent 2e90067 commit 879cf97
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ transport.enable-client-batch-send-request、client.log.exceptionRate
| server.enableParallelHandleBranch | Two-phase Parallel Deployment Switch | false | new in 2.0.0 version |
| server.raft.group | In the Raft storage mode, the transaction group corresponding to the group and client should be matched with the value. For example, service.vgroup-mapping.default_tx_group=default. | New in 2.0.0 version |
| server.raft.server-addr | The Raft cluster list is as follows: 192.168.0.111:9091, 192.168.0.112:9091, 192.168.0.113:9091 | | New in 2.0.0 version |
| server.raft.snapshot-interval | How often to take a memory snapshot? The state machine is paused every time a snapshot is taken, but this can improve recovery speed when stopping | Default 600 seconds | New in 2.0.0 version |
| server.raft.snapshot-interval | How often to take a memory snapshot? The state machine is paused every time a snapshot is taken, but this can improve recovery speed when stopping | Default 600 seconds | New in 2.0.0 version |
| server.raft.apply-batch | Accumulate batches of tasks and submit them to the leader. | 32 | New in 2.0.0 version |
| server.raft.max-append-bufferSize | Maximum size of the Raft log storage buffer | 262144 | New in 2.0.0 version |
| server.raft.max-replicator-inflight-msgs | The maximum number of in-flight requests when pipeline requests are enabled | 256 | New in 2.0.0 version |
Expand Down Expand Up @@ -152,6 +152,19 @@ transport.enable-client-batch-send-request、client.log.exceptionRate
| store.db.LockTable | db mode global lock table name | default lock\_ table |
| store.db.queryLimit | the maximum number of global transactions queried in db mode at one time | 100 by default |
| store.db.distributedLockTable | db mode Sever side transaction management global lock storage table name | default distributed\_ Lock. Under multiple server clusters, only one server is guaranteed to handle the submission or rollback at the same time | New in 1.5.1 |
| store.db.druid.time-between-eviction-runs-millis | Druid's config time-between-eviction-runs-millis | 120000 by default | New in 2.3 |
| store.db.druid.min-evictable-idle-time-millis | Druid's config min-evictable-idle-time-millis | 300000 by default | New in 2.3 |
| store.db.druid.test-while-idle | Druid's config test-while-idle | true by default | New in 2.3 |
| store.db.druid.test-on-borrow | Druid's config test-on-borrow | false by default | New in 2.3 |
| store.db.druid.keep-alive | Druid's config keep-alive | false by default | New in 2.3 |
| store.db.hikari.idle-timeout | Hikari's config idle-timeout | 600000 by default | New in 2.3 |
| store.db.hikari.keepalive-time | Hikari's config keepalive-time | 120000 by default | New in 2.3 |
| store.db.hikari.max-lifetime | Hikari's config max-lifetime | 1800000 by default | New in 2.3 |
| store.db.hikari.validation-timeout | Hikari's config validation-timeout | 5000 by default | New in 2.3 |
| store.db.dbcp.time-between-eviction-runs-millis | Dbcp's config time-between-eviction-runs-millis | 120000 by default | New in 2.3 |
| store.db.dbcp.min-evictable-idle-time-millis | Dbcp's config min-evictable-idle-time-millis | 300000 by default | New in 2.3 |
| store.db.dbcp.test-while-idle | Dbcp's config test-while-idle | true by default | New in 2.3 |
| store.db.dbcp.test-on-borrow | Dbcp's config test-on-borrow | false by default | New in 2.3 |
| store.redis.mode | redis mode | default single, optional sentinel | New sentinel mode in 1.4.2 |
| store.redis.single.host | The Redis host in stand-alone mode is compatible with versions earlier than 1.4.2. If this configuration is empty, select store.redis Host as a configuration item | New in 1.4.2 |
| store.redis.single.port | The port of Redis in stand-alone mode is compatible with versions earlier than 1.4.2. If this configuration is empty, select store.redis Port as a configuration item | New in 1.4.2 |
Expand Down
Loading

0 comments on commit 879cf97

Please sign in to comment.