Enable partial data columns by default on Hoodi and Sepolia (#9343)

Enable partial data columns by default on Hoodi and Sepolia.


Co-Authored-By: Daniel Knopik <daniel@dknopik.de>
This commit is contained in:
Daniel Knopik
2026-05-25 03:44:43 +02:00
committed by GitHub
parent 89ee020330
commit b5d44bff36
4 changed files with 85 additions and 4 deletions

View File

@@ -674,11 +674,22 @@ pub fn cli_app() -> Command {
Arg::new("enable-partial-columns")
.long("enable-partial-columns")
.help("Enable partial messages for data columns. This can reduce the amount of \
data sent over the network.")
data sent over the network. Enabled by default on Hoodi and Sepolia; use \
--disable-partial-columns to opt out.")
.action(ArgAction::SetTrue)
.help_heading(FLAG_HEADER)
.display_order(0)
)
.arg(
Arg::new("disable-partial-columns")
.long("disable-partial-columns")
.help("Disable partial messages for data columns. Use this on Hoodi or Sepolia \
to opt out of the default-enabled behavior.")
.action(ArgAction::SetTrue)
.conflicts_with("enable-partial-columns")
.help_heading(FLAG_HEADER)
.display_order(0)
)
/*
* Monitoring metrics
*/