11[provider ]
22# MSP provider type
33provider_type = " msp"
4- # Using memory storage layer for simplicity
5- storage_layer = " memory"
64# Maximum storage capacity in bytes (4GB)
75max_storage_capacity = 4294967295
86# Jump capacity in bytes (1GB)
97jump_capacity = 1073741824
8+ # Using memory storage layer for simplicity
9+ storage_layer = " memory"
10+ # Storage location in the file system
11+ storage_path = " /tmp/msp"
1012# Extrinsic retry timeout in seconds
1113extrinsic_retry_timeout = 60
1214# The minimum number of blocks behind the current best block to consider the node out of sync.
@@ -15,6 +17,11 @@ sync_mode_min_blocks_behind = 5
1517check_for_pending_proofs_period = 4
1618# The maximum number of blocks from the past that will be processed for catching up the root changes.
1719max_blocks_behind_to_catch_up_root_changes = 10
20+ # Optional: Database URL for MSP operations (e.g., move bucket operations) without running the full indexer service.
21+ # This corresponds to the `--msp-database-url` CLI flag.
22+ # Example:
23+ # msp_database_url = "postgresql://postgres:postgres@storage-hub-sh-indexer-postgres-1:5432/storage_hub"
24+ msp_database_url = " postgresql://postgres:postgres@storage-hub-sh-indexer-postgres-1:5432/storage_hub"
1825# Node key for identity
1926node_key = " 0x2e6e3670c96202a2d6f5a58b7ac9092c5a51e0250f324eec2111ca94f5e568be"
2027# Path to keystores
@@ -62,6 +69,10 @@ user_agent = "StorageHub-Client/1.0"
6269chunk_size = 8192
6370# Number of `chunk_size` chunks to buffer during upload/download. (default: 512)
6471chunks_buffer = 512
72+ # Number of 1KB (FILE_CHUNK_SIZE) chunks batched and queued internally while reading file chunks from the DB.
73+ # This corresponds to the `--internal-buffer-size` CLI flag and controls MSP internal buffering behaviour.
74+ # Default: 1024 (for 1MB buffered from the DB at a time).
75+ internal_buffer_size = 1024
6576# Number of FILE_CHUNK_SIZE chunks to batch and queue internally during download. (default: 1024)
6677file_chunks_buffer = 1024
6778
0 commit comments