From b6775051d8bd8218a60ba74ce533350703e203c1 Mon Sep 17 00:00:00 2001 From: mwtian <81660174+mwtian@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:49:11 -0700 Subject: [PATCH] Tweak antithesis configs (#18725) ## Description - Reduce # of commands in each batch payment txn and its TPS to 1. - Reduce TPS of shared and owned obj txns to 1 as well, since sui surfer is already running. - Update logging config for consensus. ## Test plan https://github.com/MystenLabs/sui-operations/actions/runs/9997864674 --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ ] Protocol: - [ ] Nodes (Validators and Full nodes): - [ ] Indexer: - [ ] JSON-RPC: - [ ] GraphQL: - [ ] CLI: - [ ] Rust SDK: - [ ] REST API: --- docker/sui-network/docker-compose-antithesis.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docker/sui-network/docker-compose-antithesis.yaml b/docker/sui-network/docker-compose-antithesis.yaml index 533409e8a780d..0ee506b8a14b5 100644 --- a/docker/sui-network/docker-compose-antithesis.yaml +++ b/docker/sui-network/docker-compose-antithesis.yaml @@ -10,7 +10,7 @@ services: hostname: validator1 environment: - RUST_BACKTRACE=1 - - RUST_LOG=info,sui_core=debug,narwhal=debug,narwhal-primary::helper=info,jsonrpsee=error + - RUST_LOG=info,sui_core=debug,consensus=debug,jsonrpsee=error - RPC_WORKER_THREAD=12 - NEW_CHECKPOINT_WARNING_TIMEOUT_MS=30000 - NEW_CHECKPOINT_PANIC_TIMEOUT_MS=60000 @@ -37,7 +37,7 @@ services: hostname: validator2 environment: - RUST_BACKTRACE=1 - - RUST_LOG=info,sui_core=debug,sui_network=debug,sui_node=debug,narwhal=debug,narwhal-primary::helper=info,jsonrpsee=error + - RUST_LOG=info,sui_core=debug,sui_network=debug,sui_node=debug,consensus=debug,jsonrpsee=error - RPC_WORKER_THREAD=12 - NEW_CHECKPOINT_WARNING_TIMEOUT_MS=30000 - NEW_CHECKPOINT_PANIC_TIMEOUT_MS=60000 @@ -64,7 +64,7 @@ services: hostname: validator3 environment: - RUST_BACKTRACE=1 - - RUST_LOG=info,sui_core=debug,sui_network=debug,sui_node=debug,narwhal=debug,narwhal-primary::helper=info,jsonrpsee=error + - RUST_LOG=info,sui_core=debug,sui_network=debug,sui_node=debug,consensus=debug,jsonrpsee=error - RPC_WORKER_THREAD=12 - NEW_CHECKPOINT_WARNING_TIMEOUT_MS=30000 - NEW_CHECKPOINT_PANIC_TIMEOUT_MS=60000 @@ -91,7 +91,7 @@ services: hostname: validator4 environment: - RUST_BACKTRACE=1 - - RUST_LOG=info,sui_core=debug,sui_network=debug,sui_node=debug,narwhal=debug,narwhal-primary::helper=info,jsonrpsee=error + - RUST_LOG=info,sui_core=debug,sui_network=debug,sui_node=debug,consensus=debug,jsonrpsee=error - RPC_WORKER_THREAD=12 - NEW_CHECKPOINT_WARNING_TIMEOUT_MS=30000 - NEW_CHECKPOINT_PANIC_TIMEOUT_MS=60000 @@ -118,7 +118,7 @@ services: container_name: fullnode1 environment: - RUST_BACKTRACE=1 - - RUST_LOG=info,sui_core=info,narwhal=info,narwhal-primary::helper=info,jsonrpsee=error + - RUST_LOG=info,jsonrpsee=error - RPC_WORKER_THREAD=12 - NEW_CHECKPOINT_WARNING_TIMEOUT_MS=30000 - NEW_CHECKPOINT_PANIC_TIMEOUT_MS=60000 @@ -156,12 +156,12 @@ services: - PRIMARY_GAS_OWNER=0xd59d79516a4ed5b6825e80826c075a12bdd2759aaeb901df2f427f5f880c8f60 - GENESIS_BLOB_PATH=/opt/sui/config/genesis.blob - KEYSTORE_PATH=/opt/sui/config/sui.keystore - - STRESS_TARGET_QPS=10 + - STRESS_TARGET_QPS=3 - STRESS_SHARED_COUNTER=1 - STRESS_TRANSFER_OBJECT=1 - STRESS_DELEGATION=0 - BATCH_PAYMENT=1 - - BATCH_PAYMENT_SIZE=100 + - BATCH_PAYMENT_SIZE=15 - STRESS_ADVERSARIAL=0 volumes: - ./genesis/files/genesis.blob:/opt/sui/config/genesis.blob:ro