Skip to content

Commit

Permalink
Bump-up number of DB connections to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
vkolomeyko committed Dec 15, 2023
1 parent 5d33900 commit 0bffe0c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
44 changes: 22 additions & 22 deletions charts/corda/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -1159,7 +1159,7 @@
}
},
"examples": [{
"maxSize": 5
"maxSize": 10
}]
}
},
Expand All @@ -1172,7 +1172,7 @@
"value": "username"
},
"dbConnectionPool": {
"maxSize": 5
"maxSize": 10
}
}]
},
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -1259,7 +1259,7 @@
}
},
"examples": [{
"maxSize": 5
"maxSize": 10
}]
}
},
Expand All @@ -1272,7 +1272,7 @@
"value": "username"
},
"dbConnectionPool": {
"maxSize": 5
"maxSize": 10
}
}]
},
Expand Down Expand Up @@ -1363,13 +1363,13 @@
"crypto": {
"schema": "CRYPTO",
"dbConnectionPool": {
"maxSize": 5
"maxSize": 10
}
},
"rbac": {
"schema": "RBAC",
"dbConnectionPool": {
"maxSize": 5
"maxSize": 10
}
}
}]
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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": {
Expand Down
24 changes: 12 additions & 12 deletions charts/corda/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0bffe0c

Please sign in to comment.