From c6a8b44353adec4d45bd00e231e689c9db730d10 Mon Sep 17 00:00:00 2001 From: Roman Date: Tue, 21 Jan 2025 15:30:24 +0800 Subject: [PATCH] fix: add 5 node cluster config --- cluster_config/cfgsync-2node.yaml | 31 +++++++++++++++++++++++++++++++ cluster_config/cfgsync-5node.yaml | 31 +++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 cluster_config/cfgsync-2node.yaml create mode 100644 cluster_config/cfgsync-5node.yaml diff --git a/cluster_config/cfgsync-2node.yaml b/cluster_config/cfgsync-2node.yaml new file mode 100644 index 0000000..10840a5 --- /dev/null +++ b/cluster_config/cfgsync-2node.yaml @@ -0,0 +1,31 @@ +port: 4400 +n_hosts: 2 +timeout: 30 + +# ConsensusConfig related parameters +security_param: 10 +active_slot_coeff: 0.9 + +# DaConfig related parameters +subnetwork_size: 2 +dispersal_factor: 2 +num_samples: 1 +num_subnets: 2 +old_blobs_check_interval_secs: 5 +blobs_validity_duration_secs: 60 +global_params_path: "/kzgrs_test_params" + +# Tracing +tracing_settings: + logger: Stdout + tracing: !Otlp + endpoint: http://tempo:4317/ + sample_ratio: 0.5 + service_name: node + filter: !EnvFilter + filters: + nomos: debug + metrics: !Otlp + endpoint: http://prometheus:9090/api/v1/otlp/v1/metrics + host_identifier: node + level: INFO \ No newline at end of file diff --git a/cluster_config/cfgsync-5node.yaml b/cluster_config/cfgsync-5node.yaml new file mode 100644 index 0000000..dde1f71 --- /dev/null +++ b/cluster_config/cfgsync-5node.yaml @@ -0,0 +1,31 @@ +port: 4400 +n_hosts: 5 +timeout: 30 + +# ConsensusConfig related parameters +security_param: 10 +active_slot_coeff: 0.9 + +# DaConfig related parameters +subnetwork_size: 2 +dispersal_factor: 2 +num_samples: 1 +num_subnets: 2 +old_blobs_check_interval_secs: 5 +blobs_validity_duration_secs: 60 +global_params_path: "/kzgrs_test_params" + +# Tracing +tracing_settings: + logger: Stdout + tracing: !Otlp + endpoint: http://tempo:4317/ + sample_ratio: 0.5 + service_name: node + filter: !EnvFilter + filters: + nomos: debug + metrics: !Otlp + endpoint: http://prometheus:9090/api/v1/otlp/v1/metrics + host_identifier: node + level: INFO \ No newline at end of file