Skip to content
Open
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
2 changes: 1 addition & 1 deletion ansible/inventories/devnet-2/group_vars/besu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ prometheus_config: |
labels:
instance: "{{ ethereum_network_name }}-{{ inventory_hostname }}"
- job_name: "execution"
metrics_path: "/debug/metrics/prometheus"
metrics_path: "/metrics"
static_configs:
- targets: ["execution:{{ ethereum_node_el_ports_metrics }}"]
labels:
Expand Down
2 changes: 1 addition & 1 deletion ansible/inventories/devnet-2/group_vars/ethereum_node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prometheus_remote_write_username: "{{ secret_prometheus_remote_write.username }}
prometheus_remote_write_password: "{{ secret_prometheus_remote_write.password }}"
prometheus_config: |
global:
scrape_interval: 30s
scrape_interval: 12s
evaluation_interval: 30s
scrape_timeout: 10s
external_labels:
Expand Down
2 changes: 1 addition & 1 deletion ansible/inventories/devnet-2/group_vars/geth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ geth_container_pull: true

prometheus_config: |
global:
scrape_interval: 30s
scrape_interval: 12s
evaluation_interval: 30s
scrape_timeout: 10s
external_labels:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Benchmark: noprefetch (prefetch disabled, bonsai cache enabled)
besu_container_image: ethpandaops/besu:bal-devnet-2-with-prefetch
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you will have in this case parallel stateroot and parallel transaction execution


besu_container_command_extra_args:
- --genesis-file=/network-config/besu.json
- --rpc-http-api=ADMIN,DEBUG,ETH,MINER,NET,TRACE,TXPOOL,WEB3
- --sync-mode=FULL
- --data-storage-format=BONSAI
- --bonsai-limit-trie-logs-enabled=false
- --bonsai-historical-block-limit=100000000
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --target-gas-limit=80000000
- --Xbal-prefetch-reading-enabled=false
- --bonsai-cache-enabled=true
- --Xbal-trust-state-root=true
- --Xbal-perfect-parallelization-enabled=true
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Benchmark: optimized (prefetch enabled)
besu_container_image: ethpandaops/besu:bal-devnet-2-with-prefetch

besu_container_command_extra_args:
- --genesis-file=/network-config/besu.json
- --rpc-http-api=ADMIN,DEBUG,ETH,MINER,NET,TRACE,TXPOOL,WEB3
- --sync-mode=FULL
- --data-storage-format=BONSAI
- --bonsai-limit-trie-logs-enabled=false
- --bonsai-historical-block-limit=100000000
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --target-gas-limit=80000000
- --Xbal-prefetch-reading-enabled=true
- --Xbal-trust-state-root=true
- --Xbal-perfect-parallelization-enabled=true
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Benchmark: sequential (BAL optimization disabled)
besu_container_image: ethpandaops/besu:bal-devnet-2-with-prefetch

besu_container_command_extra_args:
- --genesis-file=/network-config/besu.json
- --rpc-http-api=ADMIN,DEBUG,ETH,MINER,NET,TRACE,TXPOOL,WEB3
- --sync-mode=FULL
- --data-storage-format=BONSAI
- --bonsai-limit-trie-logs-enabled=false
- --bonsai-historical-block-limit=100000000
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --target-gas-limit=80000000
- --Xbal-optimization-enabled=false
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will prefer to add also

--Xbal-perfect-parallelization-enabled=false and --Xbal-trust-state-root=false

Copy link

@matkt matkt Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in this case you will have the optimistic parallelization that is not using BAL . So we will maybe see less optimization compared to some client that don't have // without BAL

- --Xbal-perfect-parallelization-enabled=false
- --Xbal-trust-state-root=false
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Benchmark: noprefetch (parallel execution without async warming)
default_ethereum_client_images:
lighthouse: ethpandaops/lighthouse:bal-devnet-2-65bb283
geth: ethpandaops/geth:bal-devnet-2

geth_container_command_extra_args:
- --http.api=eth,net,web3,debug,admin,txpool,trace
- --http.vhosts=*
- --networkid={{ ethereum_network_id }}
- --syncmode=full
- --history.state=0
- --gcmode=archive
- --syncmode=full
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --miner.gaslimit=80000000
- --bal.executionmode=nobatchio
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Benchmark: optimized (full BAL acceleration)
default_ethereum_client_images:
lighthouse: ethpandaops/lighthouse:bal-devnet-2
geth: ethpandaops/geth:bal-devnet-2

geth_container_command_extra_args:
- --http.api=eth,net,web3,debug,admin,txpool,trace
- --http.vhosts=*
- --networkid={{ ethereum_network_id }}
- --syncmode=full
- --history.state=0
- --gcmode=archive
- --syncmode=full
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --miner.gaslimit=80000000
- --bal.executionmode=full
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Benchmark: sequential (no BAL acceleration)
default_ethereum_client_images:
lighthouse: ethpandaops/lighthouse:bal-devnet-2
geth: ethpandaops/geth:bal-devnet-2

geth_container_command_extra_args:
- --http.api=eth,net,web3,debug,admin,txpool,trace
- --http.vhosts=*
- --networkid={{ ethereum_network_id }}
- --syncmode=full
- --history.state=0
- --gcmode=archive
- --syncmode=full
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --miner.gaslimit=80000000
- --bal.executionmode=sequential
7 changes: 7 additions & 0 deletions terraform/devnet-2/hetzner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,12 @@ locals {
var.grandine_besu_super,
var.grandine_reth_super,
var.grandine_nimbusel_super,
# Benchmark Nodes
var.lighthouse_besu_sequential_super,
var.lighthouse_besu_optimized_super,
var.lighthouse_besu_noprefetch_super,
var.lighthouse_geth_sequential_super,
var.lighthouse_geth_optimized_super,
var.lighthouse_geth_noprefetch_super
]
}
66 changes: 66 additions & 0 deletions terraform/devnet-2/hetzner/nodes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,39 @@ variable "lighthouse_geth_super" {
}
}

variable "lighthouse_geth_optimized_super" {
default = {
name = "lighthouse-geth-optimized-super"
count = 1
validator_start = 0
validator_end = 0
size = "ccX33"
supernode = true
}
}

variable "lighthouse_geth_sequential_super" {
default = {
name = "lighthouse-geth-sequential-super"
count = 1
validator_start = 0
validator_end = 0
size = "ccx33"
supernode = true
}
}

variable "lighthouse_geth_noprefetch_super" {
default = {
name = "lighthouse-geth-noprefetch-super"
count = 1
validator_start = 0
validator_end = 0
size = "ccx33"
supernode = true
}
}

variable "lighthouse_besu_super" {
default = {
name = "lighthouse-besu-super"
Expand All @@ -39,6 +72,39 @@ variable "lighthouse_besu_super" {
}
}

variable "lighthouse_besu_optimized_super" {
default = {
name = "lighthouse-besu-optimized-super"
count = 1
validator_start = 0
validator_end = 0
size = "ccX33"
supernode = true
}
}

variable "lighthouse_besu_sequential_super" {
default = {
name = "lighthouse-besu-sequential-super"
count = 1
validator_start = 0
validator_end = 0
size = "ccx33"
supernode = true
}
}

variable "lighthouse_besu_noprefetch_super" {
default = {
name = "lighthouse-besu-noprefetch-super"
count = 1
validator_start = 0
validator_end = 0
size = "ccx33"
supernode = true
}
}

variable "lighthouse_nethermind_super" {
default = {
name = "lighthouse-nethermind-super"
Expand Down
Loading