From 0bffe0c861093832c6e449b7a087de0af3e37a85 Mon Sep 17 00:00:00 2001 From: Viktor Kolomeyko Date: Fri, 15 Dec 2023 11:10:58 +0000 Subject: [PATCH] Bump-up number of DB connections to 10 --- charts/corda/values.schema.json | 44 ++++++++++++++++----------------- charts/corda/values.yaml | 24 +++++++++--------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/charts/corda/values.schema.json b/charts/corda/values.schema.json index a54f5e6ee8e1..63ec0efc9beb 100644 --- a/charts/corda/values.schema.json +++ b/charts/corda/values.schema.json @@ -1114,10 +1114,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "maximum JDBC connection pool size for crypto DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -1159,7 +1159,7 @@ } }, "examples": [{ - "maxSize": 5 + "maxSize": 10 }] } }, @@ -1172,7 +1172,7 @@ "value": "username" }, "dbConnectionPool": { - "maxSize": 5 + "maxSize": 10 } }] }, @@ -1214,10 +1214,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "maximum JDBC connection pool size for RBAC DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -1259,7 +1259,7 @@ } }, "examples": [{ - "maxSize": 5 + "maxSize": 10 }] } }, @@ -1272,7 +1272,7 @@ "value": "username" }, "dbConnectionPool": { - "maxSize": 5 + "maxSize": 10 } }] }, @@ -1363,13 +1363,13 @@ "crypto": { "schema": "CRYPTO", "dbConnectionPool": { - "maxSize": 5 + "maxSize": 10 } }, "rbac": { "schema": "RBAC", "dbConnectionPool": { - "maxSize": 5 + "maxSize": 10 } } }] @@ -1689,10 +1689,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "crypto worker maximum JDBC connection pool size for cluster DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -1770,10 +1770,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "DB worker maximum JDBC connection pool size for cluster DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -2521,10 +2521,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "persistence worker maximum JDBC connection pool size for cluster DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -2718,10 +2718,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "token selection worker maximum JDBC connection pool size for cluster DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -2830,10 +2830,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "uniqueness worker maximum JDBC connection pool size for cluster DB", "examples": [ - 5 + 10 ] }, "minSize": { @@ -3643,10 +3643,10 @@ "properties": { "maxSize": { "type": "integer", - "default": 5, + "default": 10, "title": "JDBC connection pool size for State Manager DB", "examples": [ - 5 + 10 ] }, "minSize": { diff --git a/charts/corda/values.yaml b/charts/corda/values.yaml index e5ca294b58a5..7c4dac222c7b 100644 --- a/charts/corda/values.yaml +++ b/charts/corda/values.yaml @@ -316,7 +316,7 @@ bootstrap: # JDBC connection pool configuration for crypto DB dbConnectionPool: # -- maximum JDBC connection pool size for crypto DB - maxSize: 5 + maxSize: 10 # -- minimum JDBC connection pool size for crypto DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -359,7 +359,7 @@ bootstrap: # JDBC connection pool configuration for RBAC DB dbConnectionPool: # -- maximum JDBC connection pool size for RBAC DB - maxSize: 5 + maxSize: 10 # -- minimum JDBC connection pool size for RBAC DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -667,7 +667,7 @@ workers: # crypto worker JDBC connection pool configuration for cluster DB clusterDbConnectionPool: # -- crypto worker maximum JDBC connection pool size for cluster DB - maxSize: 5 + maxSize: 10 # -- crypto worker minimum JDBC connection pool size for cluster DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -746,7 +746,7 @@ workers: # crypto worker JDBC connection pool configuration for State Manager DB connectionPool: # -- crypto worker maximum JDBC connection pool size for state manager DB - maxSize: 5 + maxSize: 10 # -- crypto worker minimum JDBC connection pool size for state manager DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -798,7 +798,7 @@ workers: # DB worker JDBC connection pool configuration for cluster DB clusterDbConnectionPool: # -- DB worker maximum JDBC connection pool size for cluster DB - maxSize: 5 + maxSize: 10 # -- DB worker minimum JDBC connection pool size for cluster DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -918,7 +918,7 @@ workers: # flow worker JDBC connection pool configuration for State Manager DB connectionPool: # -- flow worker maximum JDBC connection pool size for state manager DB - maxSize: 5 + maxSize: 10 # -- flow worker minimum JDBC connection pool size for state manager DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -1038,7 +1038,7 @@ workers: # flow mapper worker JDBC connection pool configuration for State Manager DB connectionPool: # -- flow mapper worker maximum JDBC connection pool size for state manager DB - maxSize: 5 + maxSize: 10 # -- flow mapper worker minimum JDBC connection pool size for state manager DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -1337,7 +1337,7 @@ workers: # rest worker JDBC connection pool configuration for State Manager DB connectionPool: # -- rest worker maximum JDBC connection pool size for state manager DB - maxSize: 5 + maxSize: 10 # -- rest worker minimum JDBC connection pool size for state manager DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -1553,7 +1553,7 @@ workers: # persistence worker JDBC connection pool configuration for cluster DB clusterDbConnectionPool: # -- persistence worker maximum JDBC connection pool size for cluster DB - maxSize: 5 + maxSize: 10 # -- persistence worker minimum JDBC connection pool size for cluster DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -1633,7 +1633,7 @@ workers: # token selection worker JDBC connection pool configuration for cluster DB clusterDbConnectionPool: # -- token selection worker maximum JDBC connection pool size for cluster DB - maxSize: 5 + maxSize: 10 # -- token selection worker minimum JDBC connection pool size for cluster DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -1685,7 +1685,7 @@ workers: # token selection worker JDBC connection pool configuration for State Manager DB connectionPool: # -- token selection maximum JDBC connection pool size for state manager DB - maxSize: 5 + maxSize: 10 # -- token selection minimum JDBC connection pool size for state manager DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool @@ -1780,7 +1780,7 @@ workers: # uniqueness worker JDBC connection pool configuration for cluster DB clusterDbConnectionPool: # -- uniqueness worker maximum JDBC connection pool size for cluster DB - maxSize: 5 + maxSize: 10 # -- uniqueness worker minimum JDBC connection pool size for cluster DB; null value means pool's min size will default to pool's max size value minSize: null # -- maximum time (in seconds) a connection can stay idle in the pool; A value of 0 means that idle connections are never removed from the pool