Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions cluster/deployment/scratchnete/.envrc.vars
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,5 @@ export APPROVE_SV_RUNBOOK=true
export CACHE_DEV_DOCKER_REGISTRY=$DEV_DOCKER_REGISTRY

export SELF_HOSTED_FLUENT_BIT=true

export SPLICE_DEPLOY_VALIDATOR_RUNBOOK=true
39 changes: 39 additions & 0 deletions cluster/deployment/scratchnete/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ infra:
pulumiProjectConfig:
default:
cloudSql:
enabled: true
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nicu-da probably not gonna merge this but wanna check the config before I deploy?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe disabling the sv bft connections?
Other than that lgtm!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch switched

protected: false
validator1:
participantPruningSchedule:
Expand All @@ -14,6 +15,12 @@ validator1:
retention: "1h" # Keep 1h
deduplicationDuration: 30m
svs:
default:
logging:
appsLogLevel: INFO
cantonLogLevel: INFO
participant:
bftSequencerConnection: false
sv-da-1:
publicName: Digital-Asset-1
subdomain: sv-1
Expand All @@ -27,3 +34,35 @@ svs:
walletUser: auth0|68c2c41e6470184569e4521e
auth0:
clientId: fBFpzZSRuufk9ueV2pSEkOXNYXuQtVmY
synchronizerMigration:
active:
id: 0
version: 0.4.19-snapshot.20250929.990.0.vfa489964
releaseReference:
gitReference: "refs/heads/cocreature/party-allocation-config"
repoUrl: https://github.com/hyperledger-labs/splice
pulumiStacksDir: "cluster/stacks/scratchnets"
pulumiBaseDir: "cluster/pulumi"
deploymentDir: "cluster/deployment"
spliceRoot: "."
privateConfigsDir: "cluster/configs/configs-private"
publicConfigsDir: "cluster/configs/configs"
operatorDeployment:
reference:
gitReference: "refs/heads/cocreature/party-allocation-config"
repoUrl: https://github.com/hyperledger-labs/splice
pulumiStacksDir: "cluster/stacks/scratchnets"
pulumiBaseDir: "cluster/pulumi"
deploymentDir: "cluster/deployment"
spliceRoot: "."
privateConfigsDir: "cluster/configs/configs-private"
publicConfigsDir: "cluster/configs/configs"
validators:
validator-runbook:
partyAllocator:
enable: true
participant:
additionalEnvVars:
- name: ADDITIONAL_CONFIG_TOPOLOGY_BATCH_SIZE
value: |
canton.participants.participant.topology.broadcast-batch-size = 50
4 changes: 2 additions & 2 deletions cluster/pulumi/validator-runbook/src/partyAllocator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export function installPartyAllocator(
jsonLedgerApiUrl: `http://participant-${DecentralizedSynchronizerUpgradeConfig.active.id}:7575`,
scanApiUrl: 'http://scan-app.sv-1:5012',
validatorApiUrl: 'http://validator-app:5003',
maxParties: 10000,
maxParties: 1000000,
keysDirectory: '/keys',
parallelism: 5,
parallelism: 30,
},
activeVersion,
{ dependsOn }
Expand Down
Loading