Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-17355 - Reduce number of p2p e2e sessions maintained per pair of vnodes #1307

Merged
merged 23 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
985cd21
add new config values
nikinagy Oct 19, 2023
21c94e2
bump api version
nikinagy Oct 19, 2023
5d1fe45
remove owners
nikinagy Oct 19, 2023
895f72b
Merge branch 'release/os/5.1' into nikinagy/performance-enhancement
nikinagy Oct 26, 2023
b68c8d3
Merge remote-tracking branch 'origin/nikinagy/performance-enhancement…
nikinagy Oct 26, 2023
b7a9b61
remove owners and rename api revision
nikinagy Nov 1, 2023
29f0a57
Merge branch 'feature/large-network-improvements' into nikinagy/CORE-…
nikinagy Nov 2, 2023
14086bd
rename api revision
nikinagy Nov 2, 2023
899f476
CORE-0 Set up network team 5.2 branch
charlieR3 Nov 3, 2023
97e0059
address comments
nikinagy Nov 7, 2023
01e6939
Merge remote-tracking branch 'origin/feature/network_5_2' into nikina…
nikinagy Nov 7, 2023
0ed8597
revert change
nikinagy Nov 7, 2023
b2d63a2
revert change
nikinagy Nov 7, 2023
b356d32
CORE-18229 Set code owners on feature branch (#1329)
charlieR3 Nov 7, 2023
0a8623e
Merge remote-tracking branch 'origin/feature/network_5_2' into nikina…
nikinagy Nov 7, 2023
f5a066e
fix naming
nikinagy Nov 8, 2023
980cb7f
address comments
nikinagy Nov 8, 2023
c43a1b3
Merge branch 'release/os/5.1' into charlie/network_5_2-merge-nov-10
charlieR3 Nov 10, 2023
bb2d022
Merge pull request #1333 from corda/charlie/network_5_2-merge-nov-10
charlieR3 Nov 10, 2023
a2c2397
Merge remote-tracking branch 'origin/feature/network_5_2' into nikina…
nikinagy Nov 10, 2023
c4711d4
Merge remote-tracking branch 'origin/release/os/5.2' into nikinagy/CO…
nikinagy Nov 14, 2023
d11e0d8
Merge remote-tracking branch 'origin/release/os/5.2' into nikinagy/CO…
nikinagy Nov 14, 2023
182a7d4
address comments
nikinagy Nov 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,29 @@
},
"sessionsPerPeer": {
"description": "The number of actively maintained sessions between two peers.",
"type": "integer",
"default": 4,
"type": ["integer", "null"],
"default": null,
nikinagy marked this conversation as resolved.
Show resolved Hide resolved
"minimum": 1
},
"numOfSessionsPerPeer": {
"description": "The number of actively maintained sessions between two peers.",
"type": "object",
"default": {},
"properties": {
"forMgm": {
"description": "The number of actively maintained sessions between two peers if one of them is an MGM. Communication between an MGM and a member is not considered critical and so the default value of 1 is recommended to improve performance.",
"type": "integer",
"default": 1,
"minimum": 1
},
"forMembers": {
"description": "The number of actively maintained sessions between two peers if both peers are members. The default value of 2 is recommended because the chance of both sessions failing on the same link manager is relatively low. If high-availability is critical, R3 recommends deploying multiple link manager instances instead.",
"type": "integer",
"default": 2,
"minimum": 1
}
}
},
"revocationCheck": {
"type": "object",
"default": {},
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cordaProductVersion = 5.2.0
# NOTE: update this each time this module contains a breaking change
## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to
## a per module property in which case module versions can change independently.
cordaApiRevision = 1
cordaApiRevision = 2

# Main
kotlinVersion = 1.8.21
Expand Down