-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add dugtrio beacon load balancer (#568)
- Loading branch information
1 parent
0ffcf74
commit 56d2fa3
Showing
8 changed files
with
196 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |