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

Test 150 nodes in testnet #1506

Closed
wants to merge 4 commits into from
Closed
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 ci/testnet-automation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildkite-agent artifact download "solana_*.snap" .
source ci/upload_ci_artifact.sh

[[ -n $ITERATION_WAIT ]] || ITERATION_WAIT=300
[[ -n $NUMBER_OF_NODES ]] || NUMBER_OF_NODES="10 25 50 100"
[[ -n $NUMBER_OF_NODES ]] || NUMBER_OF_NODES="10 150"
[[ -n $LEADER_CPU_MACHINE_TYPE ]] ||
LEADER_CPU_MACHINE_TYPE="n1-standard-16 --accelerator count=2,type=nvidia-tesla-v100"
[[ -n $CLIENT_COUNT ]] || CLIENT_COUNT=2
Expand Down
2 changes: 1 addition & 1 deletion net/gce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ esac
prefix=testnet-dev-${USER//[^A-Za-z0-9]/}
validatorNodeCount=5
clientNodeCount=1
leaderBootDiskSizeInGb=1000
leaderBootDiskSizeInGb=512
validatorBootDiskSizeInGb=$leaderBootDiskSizeInGb
clientBootDiskSizeInGb=75

Expand Down
10 changes: 5 additions & 5 deletions net/remote/remote-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ snap)

# shellcheck disable=SC2089
commonNodeConfig="\
leader-ip=\"$entrypointIp\" \
leader-ip=$entrypointIp \
default-metrics-rate=1 \
metrics-config=\"$SOLANA_METRICS_CONFIG\" \
rust-log=\"$RUST_LOG\" \
setup-args=\"$setupArgs\" \
metrics-config=$SOLANA_METRICS_CONFIG \
rust-log=$RUST_LOG \
setup-args=$setupArgs \
"

if [[ -e /dev/nvidia0 ]]; then
Expand All @@ -69,7 +69,7 @@ snap)
logger "$logmarker"

# shellcheck disable=SC2086 # Don't want to double quote "$nodeConfig"
sudo snap set solana "$nodeConfig"
sudo snap set solana $nodeConfig
snap info solana
sudo snap get solana
echo Slight delay to get more syslog output
Expand Down