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

feat: add dugtrio beacon load balancer #568

Merged
merged 3 commits into from
Apr 17, 2024
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
1 change: 1 addition & 0 deletions .github/tests/mix-with-tools-mev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ additional_services:
- custom_flood
- blobscan
- blockscout
- dugtrio
ethereum_metrics_exporter_enabled: true
snooper_enabled: true
mev_type: full
Expand Down
1 change: 1 addition & 0 deletions .github/tests/mix-with-tools-minimal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ additional_services:
- custom_flood
- blobscan
- blockscout
- dugtrio
ethereum_metrics_exporter_enabled: true
snooper_enabled: true
keymanager_enabled: true
1 change: 1 addition & 0 deletions .github/tests/mix-with-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ additional_services:
- custom_flood
- blobscan
- blockscout
- dugtrio
ethereum_metrics_exporter_enabled: true
snooper_enabled: true
keymanager_enabled: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ additional_services:
- full_beaconchain_explorer
- prometheus_grafana
- blobscan

- dugtrio

# Configuration place for transaction spammer - https:#github.com/MariusVanDerWijden/tx-fuzz
tx_spammer_params:
Expand Down
15 changes: 15 additions & 0 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ beacon_metrics_gazer = import_module(
"./src/beacon_metrics_gazer/beacon_metrics_gazer_launcher.star"
)
dora = import_module("./src/dora/dora_launcher.star")
dugtrio = import_module("./src/dugtrio/dugtrio_launcher.star")
blobscan = import_module("./src/blobscan/blobscan_launcher.star")
full_beaconchain_explorer = import_module(
"./src/full_beaconchain/full_beaconchain_launcher.star"
Expand Down Expand Up @@ -382,6 +383,20 @@ def run(plan, args={}):
global_node_selectors,
)
plan.print("Successfully launched dora")
elif additional_service == "dugtrio":
plan.print("Launching dugtrio")
dugtrio_config_template = read_file(
static_files.DUGTRIO_CONFIG_TEMPLATE_FILEPATH
)
dugtrio.launch_dugtrio(
plan,
dugtrio_config_template,
all_participants,
args_with_right_defaults.participants,
network_params,
global_node_selectors,
)
plan.print("Successfully launched dugtrio")
elif additional_service == "blobscan":
plan.print("Launching blobscan")
blobscan.launch_blobscan(
Expand Down
117 changes: 117 additions & 0 deletions src/dugtrio/dugtrio_launcher.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
shared_utils = import_module("../shared_utils/shared_utils.star")
constants = import_module("../package_io/constants.star")
SERVICE_NAME = "dugtrio"

HTTP_PORT_ID = "http"
HTTP_PORT_NUMBER = 8080

DUGTRIO_CONFIG_FILENAME = "dugtrio-config.yaml"

DUGTRIO_CONFIG_MOUNT_DIRPATH_ON_SERVICE = "/config"

IMAGE_NAME = "ethpandaops/dugtrio:latest"

# The min/max CPU/memory that dugtrio can use
MIN_CPU = 100
MAX_CPU = 1000
MIN_MEMORY = 128
MAX_MEMORY = 2048

USED_PORTS = {
HTTP_PORT_ID: shared_utils.new_port_spec(
HTTP_PORT_NUMBER,
shared_utils.TCP_PROTOCOL,
shared_utils.HTTP_APPLICATION_PROTOCOL,
)
}


def launch_dugtrio(
plan,
config_template,
participant_contexts,
participant_configs,
network_params,
global_node_selectors,
):
all_cl_client_info = []
for index, participant in enumerate(participant_contexts):
full_name, cl_client, _, _ = shared_utils.get_client_names(
participant, index, participant_contexts, participant_configs
)
all_cl_client_info.append(
new_cl_client_info(
cl_client.beacon_http_url,
full_name,
)
)

template_data = new_config_template_data(
network_params.network, HTTP_PORT_NUMBER, all_cl_client_info
)

template_and_data = shared_utils.new_template_and_data(
config_template, template_data
)
template_and_data_by_rel_dest_filepath = {}
template_and_data_by_rel_dest_filepath[DUGTRIO_CONFIG_FILENAME] = template_and_data

config_files_artifact_name = plan.render_templates(
template_and_data_by_rel_dest_filepath, "dugtrio-config"
)
config = get_config(
config_files_artifact_name,
network_params,
global_node_selectors,
)

plan.add_service(SERVICE_NAME, config)


def get_config(
config_files_artifact_name,
network_params,
node_selectors,
):
config_file_path = shared_utils.path_join(
DUGTRIO_CONFIG_MOUNT_DIRPATH_ON_SERVICE,
DUGTRIO_CONFIG_FILENAME,
)

return ServiceConfig(
image=IMAGE_NAME,
ports=USED_PORTS,
files={
DUGTRIO_CONFIG_MOUNT_DIRPATH_ON_SERVICE: config_files_artifact_name,
},
cmd=["-config", config_file_path],
min_cpu=MIN_CPU,
max_cpu=MAX_CPU,
min_memory=MIN_MEMORY,
max_memory=MAX_MEMORY,
node_selectors=node_selectors,
ready_conditions=ReadyCondition(
recipe=GetHttpRequestRecipe(
port_id="http",
endpoint="/healthcheck",
),
field="code",
assertion="==",
target_value=200,
),
)


def new_config_template_data(network, listen_port_num, cl_client_info):
return {
"Network": network,
"ListenPortNum": listen_port_num,
"CLClientInfo": cl_client_info,
}


def new_cl_client_info(beacon_http_url, full_name):
return {
"Beacon_HTTP_URL": beacon_http_url,
"FullName": full_name,
}
3 changes: 3 additions & 0 deletions src/static_files/static_files.star
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ VALIDATOR_RANGES_CONFIG_TEMPLATE_FILEPATH = (
)

DORA_CONFIG_TEMPLATE_FILEPATH = STATIC_FILES_DIRPATH + "/dora-config/config.yaml.tmpl"
DUGTRIO_CONFIG_TEMPLATE_FILEPATH = (
STATIC_FILES_DIRPATH + "/dugtrio-config/config.yaml.tmpl"
)

FULL_BEACONCHAIN_CONFIG_TEMPLATE_FILEPATH = (
STATIC_FILES_DIRPATH + "/full-beaconchain-config/config.yaml.tmpl"
Expand Down
57 changes: 57 additions & 0 deletions static_files/dugtrio-config/config.yaml.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
logging:
outputLevel: "debug"
#outputStderr: false
#filePath: "explorer.log"
#fileLevel: "warn"

# HTTP Server configuration
server:
# Address to listen on
host: "0.0.0.0"

# Port to listen on
port: "8080"

# Beacon Node Endpoints
endpoints:
{{ range $clClient := .CLClientInfo }}
- url: "{{ $clClient.Beacon_HTTP_URL }}"
name: "{{ $clClient.FullName }}"
{{- end }}

# Pool configuration
pool:
schedulerMode: "rr"
followDistance: 10
maxHeadDistance: 2

# Proxy configuration
proxy:
# number of proxies in front of dugtrio
proxyCount: 0

# proxy call timeout
callTimeout: 60s

# proxy session timeout
sessionTimeout: 10m

# reuse the same endpoint when possible
stickyEndpoint: true

# call rate limit (calls per second)
callRateLimit: 100

# call rate burst limit
callRateBurst: 1000

# blocked api paths (regex patterns)
blockedPaths:
- ^/eth/v[0-9]+/debug/.*

# Frontend configuration
frontend:
# Enable or disable to web frontend
enabled: true
minify: true
siteName: "Dugtrio-Kurtosis"