Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"proof_manager_config.persistent_root": "/data/proofs"
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"proof_manager_config.persistent_root": "/data/proofs"
}
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,12 @@
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "Disabled",
"components.proof_manager.local_server_config.#is_none": true,
"components.proof_manager.execution_mode": "LocalExecutionWithRemoteDisabled",
"components.proof_manager.local_server_config.#is_none": false,
"components.proof_manager.local_server_config.high_priority_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.inbound_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.normal_priority_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.processing_time_warning_threshold_ms": 3000,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 0,
"components.proof_manager.remote_client_config.#is_none": true,
Expand Down Expand Up @@ -158,6 +162,7 @@
"mempool_config.#is_none": false,
"mempool_p2p_config.#is_none": false,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": false,
"sierra_compiler_config.#is_none": false,
"state_sync_config.#is_none": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"crates/apollo_deployments/resources/app_configs/replacer_mempool_config.json",
"crates/apollo_deployments/resources/app_configs/replacer_mempool_p2p_config.json",
"crates/apollo_deployments/resources/app_configs/replacer_monitoring_endpoint_config.json",
"crates/apollo_deployments/resources/app_configs/replacer_proof_manager_config.json",
"crates/apollo_deployments/resources/app_configs/replacer_sierra_compiler_config.json",
"crates/apollo_deployments/resources/app_configs/replacer_state_sync_config.json",
"crates/apollo_deployments/resources/services/consolidated/replacer_node.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,12 @@
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "Disabled",
"components.proof_manager.local_server_config.#is_none": true,
"components.proof_manager.execution_mode": "LocalExecutionWithRemoteDisabled",
"components.proof_manager.local_server_config.#is_none": false,
"components.proof_manager.local_server_config.high_priority_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.inbound_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.normal_priority_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.processing_time_warning_threshold_ms": 3000,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 0,
"components.proof_manager.remote_client_config.#is_none": true,
Expand Down Expand Up @@ -158,6 +162,7 @@
"mempool_config.#is_none": false,
"mempool_p2p_config.#is_none": false,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": false,
"sierra_compiler_config.#is_none": false,
"state_sync_config.#is_none": false
}
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,21 @@
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "Disabled",
"components.proof_manager.execution_mode": "Remote",
"components.proof_manager.local_server_config.#is_none": true,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 0,
"components.proof_manager.remote_client_config.#is_none": true,
"components.proof_manager.port": 1,
"components.proof_manager.remote_client_config.#is_none": false,
"components.proof_manager.remote_client_config.attempts_per_log": 1,
"components.proof_manager.remote_client_config.connection_timeout_ms": 500,
"components.proof_manager.remote_client_config.idle_connections": 10,
"components.proof_manager.remote_client_config.idle_timeout_ms": 30000,
"components.proof_manager.remote_client_config.initial_retry_delay_ms": 1,
"components.proof_manager.remote_client_config.max_retry_interval_ms": 1000,
"components.proof_manager.remote_client_config.retries": 150,
"components.proof_manager.remote_client_config.set_tcp_nodelay": true,
"components.proof_manager.remote_server_config.#is_none": true,
"components.proof_manager.url": "localhost",
"components.proof_manager.url": "remote_service",
"components.sierra_compiler.execution_mode": "Disabled",
"components.sierra_compiler.local_server_config.#is_none": true,
"components.sierra_compiler.max_concurrency": 128,
Expand Down Expand Up @@ -153,6 +161,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,21 @@
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "Disabled",
"components.proof_manager.execution_mode": "Remote",
"components.proof_manager.local_server_config.#is_none": true,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 0,
"components.proof_manager.remote_client_config.#is_none": true,
"components.proof_manager.port": 1,
"components.proof_manager.remote_client_config.#is_none": false,
"components.proof_manager.remote_client_config.attempts_per_log": 1,
"components.proof_manager.remote_client_config.connection_timeout_ms": 500,
"components.proof_manager.remote_client_config.idle_connections": 10,
"components.proof_manager.remote_client_config.idle_timeout_ms": 30000,
"components.proof_manager.remote_client_config.initial_retry_delay_ms": 1,
"components.proof_manager.remote_client_config.max_retry_interval_ms": 1000,
"components.proof_manager.remote_client_config.retries": 150,
"components.proof_manager.remote_client_config.set_tcp_nodelay": true,
"components.proof_manager.remote_server_config.#is_none": true,
"components.proof_manager.url": "localhost",
"components.proof_manager.url": "remote_service",
"components.sierra_compiler.execution_mode": "Disabled",
"components.sierra_compiler.local_server_config.#is_none": true,
"components.sierra_compiler.max_concurrency": 128,
Expand Down Expand Up @@ -154,6 +162,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,21 @@
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "Disabled",
"components.proof_manager.execution_mode": "Remote",
"components.proof_manager.local_server_config.#is_none": true,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 0,
"components.proof_manager.remote_client_config.#is_none": true,
"components.proof_manager.port": 1,
"components.proof_manager.remote_client_config.#is_none": false,
"components.proof_manager.remote_client_config.attempts_per_log": 1,
"components.proof_manager.remote_client_config.connection_timeout_ms": 500,
"components.proof_manager.remote_client_config.idle_connections": 10,
"components.proof_manager.remote_client_config.idle_timeout_ms": 30000,
"components.proof_manager.remote_client_config.initial_retry_delay_ms": 1,
"components.proof_manager.remote_client_config.max_retry_interval_ms": 1000,
"components.proof_manager.remote_client_config.retries": 150,
"components.proof_manager.remote_client_config.set_tcp_nodelay": true,
"components.proof_manager.remote_server_config.#is_none": true,
"components.proof_manager.url": "localhost",
"components.proof_manager.url": "remote_service",
"components.sierra_compiler.execution_mode": "Disabled",
"components.sierra_compiler.local_server_config.#is_none": true,
"components.sierra_compiler.max_concurrency": 128,
Expand Down Expand Up @@ -145,6 +153,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,21 @@
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "Disabled",
"components.proof_manager.execution_mode": "Remote",
"components.proof_manager.local_server_config.#is_none": true,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 0,
"components.proof_manager.remote_client_config.#is_none": true,
"components.proof_manager.port": 1,
"components.proof_manager.remote_client_config.#is_none": false,
"components.proof_manager.remote_client_config.attempts_per_log": 1,
"components.proof_manager.remote_client_config.connection_timeout_ms": 500,
"components.proof_manager.remote_client_config.idle_connections": 10,
"components.proof_manager.remote_client_config.idle_timeout_ms": 30000,
"components.proof_manager.remote_client_config.initial_retry_delay_ms": 1,
"components.proof_manager.remote_client_config.max_retry_interval_ms": 1000,
"components.proof_manager.remote_client_config.retries": 150,
"components.proof_manager.remote_client_config.set_tcp_nodelay": true,
"components.proof_manager.remote_server_config.#is_none": true,
"components.proof_manager.url": "localhost",
"components.proof_manager.url": "remote_service",
"components.sierra_compiler.execution_mode": "Disabled",
"components.sierra_compiler.local_server_config.#is_none": true,
"components.sierra_compiler.max_concurrency": 128,
Expand Down Expand Up @@ -141,6 +149,7 @@
"mempool_config.#is_none": false,
"mempool_p2p_config.#is_none": false,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": true,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
{
"base_layer_config.#is_none": true,
"batcher_config.#is_none": true,
"class_manager_config.#is_none": true,
"committer_config.#is_none": true,
"components.batcher.execution_mode": "Disabled",
"components.batcher.local_server_config.#is_none": true,
"components.batcher.max_concurrency": 128,
"components.batcher.port": 0,
"components.batcher.remote_client_config.#is_none": true,
"components.batcher.remote_server_config.#is_none": true,
"components.batcher.url": "localhost",
"components.class_manager.execution_mode": "Disabled",
"components.class_manager.local_server_config.#is_none": true,
"components.class_manager.max_concurrency": 128,
"components.class_manager.port": 0,
"components.class_manager.remote_client_config.#is_none": true,
"components.class_manager.remote_server_config.#is_none": true,
"components.class_manager.url": "localhost",
"components.committer.execution_mode": "Disabled",
"components.committer.local_server_config.#is_none": true,
"components.committer.max_concurrency": 128,
"components.committer.port": 0,
"components.committer.remote_client_config.#is_none": true,
"components.committer.remote_server_config.#is_none": true,
"components.committer.url": "localhost",
"components.config_manager.execution_mode": "LocalExecutionWithRemoteDisabled",
"components.config_manager.local_server_config.#is_none": false,
"components.config_manager.local_server_config.high_priority_requests_channel_capacity": 1024,
"components.config_manager.local_server_config.inbound_requests_channel_capacity": 1024,
"components.config_manager.local_server_config.normal_priority_requests_channel_capacity": 1024,
"components.config_manager.local_server_config.processing_time_warning_threshold_ms": 3000,
"components.config_manager.max_concurrency": 128,
"components.config_manager.port": 0,
"components.config_manager.remote_client_config.#is_none": true,
"components.config_manager.remote_server_config.#is_none": true,
"components.config_manager.url": "localhost",
"components.consensus_manager.execution_mode": "Disabled",
"components.gateway.execution_mode": "Disabled",
"components.gateway.local_server_config.#is_none": true,
"components.gateway.max_concurrency": 128,
"components.gateway.port": 0,
"components.gateway.remote_client_config.#is_none": true,
"components.gateway.remote_server_config.#is_none": true,
"components.gateway.url": "localhost",
"components.http_server.execution_mode": "Disabled",
"components.l1_gas_price_provider.execution_mode": "Disabled",
"components.l1_gas_price_provider.local_server_config.#is_none": true,
"components.l1_gas_price_provider.max_concurrency": 128,
"components.l1_gas_price_provider.port": 0,
"components.l1_gas_price_provider.remote_client_config.#is_none": true,
"components.l1_gas_price_provider.remote_server_config.#is_none": true,
"components.l1_gas_price_provider.url": "localhost",
"components.l1_gas_price_scraper.execution_mode": "Disabled",
"components.l1_provider.execution_mode": "Disabled",
"components.l1_provider.local_server_config.#is_none": true,
"components.l1_provider.max_concurrency": 128,
"components.l1_provider.port": 0,
"components.l1_provider.remote_client_config.#is_none": true,
"components.l1_provider.remote_server_config.#is_none": true,
"components.l1_provider.url": "localhost",
"components.l1_scraper.execution_mode": "Disabled",
"components.mempool.execution_mode": "Disabled",
"components.mempool.local_server_config.#is_none": true,
"components.mempool.max_concurrency": 128,
"components.mempool.port": 0,
"components.mempool.remote_client_config.#is_none": true,
"components.mempool.remote_server_config.#is_none": true,
"components.mempool.url": "localhost",
"components.mempool_p2p.execution_mode": "Disabled",
"components.mempool_p2p.local_server_config.#is_none": true,
"components.mempool_p2p.max_concurrency": 128,
"components.mempool_p2p.port": 0,
"components.mempool_p2p.remote_client_config.#is_none": true,
"components.mempool_p2p.remote_server_config.#is_none": true,
"components.mempool_p2p.url": "localhost",
"components.monitoring_endpoint.execution_mode": "Enabled",
"components.proof_manager.execution_mode": "LocalExecutionWithRemoteEnabled",
"components.proof_manager.local_server_config.#is_none": false,
"components.proof_manager.local_server_config.high_priority_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.inbound_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.normal_priority_requests_channel_capacity": 1024,
"components.proof_manager.local_server_config.processing_time_warning_threshold_ms": 3000,
"components.proof_manager.max_concurrency": 128,
"components.proof_manager.port": 1,
"components.proof_manager.remote_client_config.#is_none": true,
"components.proof_manager.remote_server_config.#is_none": false,
"components.proof_manager.remote_server_config.bind_ip": "0.0.0.0",
"components.proof_manager.remote_server_config.max_streams_per_connection": 8,
"components.proof_manager.remote_server_config.set_tcp_nodelay": true,
"components.proof_manager.url": "remote_service",
"components.sierra_compiler.execution_mode": "Disabled",
"components.sierra_compiler.local_server_config.#is_none": true,
"components.sierra_compiler.max_concurrency": 128,
"components.sierra_compiler.port": 0,
"components.sierra_compiler.remote_client_config.#is_none": true,
"components.sierra_compiler.remote_server_config.#is_none": true,
"components.sierra_compiler.url": "localhost",
"components.signature_manager.execution_mode": "Disabled",
"components.signature_manager.local_server_config.#is_none": true,
"components.signature_manager.max_concurrency": 128,
"components.signature_manager.port": 0,
"components.signature_manager.remote_client_config.#is_none": true,
"components.signature_manager.remote_server_config.#is_none": true,
"components.signature_manager.url": "localhost",
"components.state_sync.execution_mode": "Disabled",
"components.state_sync.local_server_config.#is_none": true,
"components.state_sync.max_concurrency": 128,
"components.state_sync.port": 0,
"components.state_sync.remote_client_config.#is_none": true,
"components.state_sync.remote_server_config.#is_none": true,
"components.state_sync.url": "localhost",
"config_manager_config.#is_none": false,
"consensus_manager_config.#is_none": true,
"gateway_config.#is_none": true,
"http_server_config.#is_none": true,
"l1_gas_price_provider_config.#is_none": true,
"l1_gas_price_scraper_config.#is_none": true,
"l1_provider_config.#is_none": true,
"l1_scraper_config.#is_none": true,
"mempool_config.#is_none": true,
"mempool_p2p_config.#is_none": true,
"monitoring_endpoint_config.#is_none": false,
"proof_manager_config.#is_none": false,
"sierra_compiler_config.#is_none": true,
"state_sync_config.#is_none": true
}
Loading
Loading