-
Notifications
You must be signed in to change notification settings - Fork 223
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
fix load test #1043
fix load test #1043
Conversation
Looks like this needs to bump the |
"log-level": "debug", | ||
"log-display-level": "debug" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"log-level": "debug", | |
"log-display-level": "debug" | |
"log-level": "debug", |
There is no log-display-level
for the C-Chain specific config
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
@@ -66,12 +66,14 @@ func NewDefaultANRConfig() ANRConfig { | |||
AvalancheGoExecPath: os.ExpandEnv("$GOPATH/src/github.com/ava-labs/avalanchego/build/avalanchego"), | |||
PluginDir: os.ExpandEnv("$GOPATH/src/github.com/ava-labs/avalanchego/build/plugins"), | |||
GlobalNodeConfig: `{ | |||
"log-level":"info", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we remove log-display-level
if we are going to specify log-level
? Also, not sure why we were originally specifying log-display-level
here (although it looks like I wrote it, I think I copied it from somewhere).
Most likely this was to log to stdout without writing to the log directory. I'd assume if anything we'd want more specific logs written to stdout, so that we can inspect them on test failure without crowding out the output from the network runner, which pipes the logs from stdout (as I understand it).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
* add UT for eth tx pool subscribe * fix eth tx pool subscribtion * don't use journal * simplify test * increase timeout
Co-authored-by: Darioush Jalali <[email protected]> Signed-off-by: Ceyhun Onur <[email protected]>
* rename tx handlers * add p2p sdk handlers * fix tests * fix imports * bump min go version * downgrade golangci * remove noop handler * bump avago rc * fix uint64 * bump avalanchego rc version * fix linter * revert txpool uint change * bump subnet-evm version * run simulator in a different step * remove load test from precompile tests * run simulator in a different step * remove load test from precompile tests * rename simulator to load test * parallelize e2e steps * use checkout * split to different workflows * move to same folder * bump avago * add time to codec * fix load test (#1043) * tweak global limit * uncomment submit * update consts * update avalanchego version * fix compilation err * simpler fix * remove mempool configs * bump latest avago rc * fix tests * update avalanchego * fix mockgen * bump ANR * remove unnecessary log levels * Fix bloom reset (#1049) * add UT for eth tx pool subscribe * fix eth tx pool subscribtion * don't use journal * simplify test * increase timeout * Update plugin/evm/tx_gossip_test.go Co-authored-by: Darioush Jalali <[email protected]> Signed-off-by: Ceyhun Onur <[email protected]> --------- Signed-off-by: Ceyhun Onur <[email protected]> Co-authored-by: Ceyhun Onur <[email protected]> Co-authored-by: Darioush Jalali <[email protected]> * Fix racey bloom access and replace time.Sleep with require.Eventually --------- Signed-off-by: Ceyhun Onur <[email protected]> Co-authored-by: Patrick O'Grady <[email protected]> Co-authored-by: Darioush Jalali <[email protected]> Co-authored-by: Stephen Buttolph <[email protected]>
TODO: add
NoLocals: false
+ IncreaseGlobalSlots
config for the load test to ensure nothing gets dropped (still racy even with faster bloom)Why this should be merged
How this works
How this was tested
How is this documented