-
Notifications
You must be signed in to change notification settings - Fork 215
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
[Merged by Bors] - Simplify scrypt in systests and reduce batch size #4995
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #4995 +/- ##
=======================================
Coverage 77.1% 77.1%
=======================================
Files 254 254
Lines 30282 30356 +74
=======================================
+ Hits 23356 23434 +78
+ Misses 5411 5402 -9
- Partials 1515 1520 +5
|
bors merge |
## Motivation Nodes in systests sporadically hang during POST init. The last message is: ``` initialization: continue looking for a nonce {"startPosition": 256, "batchSize": 1048576} ``` It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match `labelsPerUnit` for the fastnet preset (which systests use). ## Changes - reduce batch size to 128 in the fastnet preset, - reduce scrypt difficulty to the lowest possible N = 2 in the fastnet preset. ## Test Plan Existing tests pass
Build failed: |
Failed to build a docker image. bors merge |
## Motivation Nodes in systests sporadically hang during POST init. The last message is: ``` initialization: continue looking for a nonce {"startPosition": 256, "batchSize": 1048576} ``` It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match `labelsPerUnit` for the fastnet preset (which systests use). ## Changes - reduce batch size to 128 in the fastnet preset, - reduce scrypt difficulty to the lowest possible N = 2 in the fastnet preset. ## Test Plan Existing tests pass
Build failed: |
|
bors merge |
## Motivation Nodes in systests sporadically hang during POST init. The last message is: ``` initialization: continue looking for a nonce {"startPosition": 256, "batchSize": 1048576} ``` It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match `labelsPerUnit` for the fastnet preset (which systests use). ## Changes - reduce batch size to 128 in the fastnet preset, - reduce scrypt difficulty to the lowest possible N = 2 in the fastnet preset. ## Test Plan Existing tests pass
Build failed: |
bors merge |
## Motivation Nodes in systests sporadically hang during POST init. The last message is: ``` initialization: continue looking for a nonce {"startPosition": 256, "batchSize": 1048576} ``` It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match `labelsPerUnit` for the fastnet preset (which systests use). ## Changes - reduce batch size to 128 in the fastnet preset, - reduce scrypt difficulty to the lowest possible N = 2 in the fastnet preset. ## Test Plan Existing tests pass
Build failed: |
bors try |
tryBuild failed: |
Flaky #4171 bors try |
tryBuild failed: |
UT fail seems unrelated (flake?):
bors try |
tryBuild succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
Bors merge |
## Motivation Nodes in systests sporadically hang during POST init. The last message is: ``` initialization: continue looking for a nonce {"startPosition": 256, "batchSize": 1048576} ``` It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match `labelsPerUnit` for the fastnet preset (which systests use). ## Changes - reduce batch size to 128 in the fastnet preset, - reduce scrypt difficulty to the lowest possible N = 2 in the fastnet preset. ## Test Plan Existing tests pass
Build failed: |
Flaky Bors merge |
## Motivation Nodes in systests sporadically hang during POST init. The last message is: ``` initialization: continue looking for a nonce {"startPosition": 256, "batchSize": 1048576} ``` It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match `labelsPerUnit` for the fastnet preset (which systests use). ## Changes - reduce batch size to 128 in the fastnet preset, - reduce scrypt difficulty to the lowest possible N = 2 in the fastnet preset. ## Test Plan Existing tests pass
Pull request successfully merged into develop. Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
Motivation
Nodes in systests sporadically hang during POST init. The last message is:
It hangs because the batch size is big and init is performed on CPU (it should eventually finish, it just takes veeery long). This fix changes the batch size to match
labelsPerUnit
for the fastnet preset (which systests use).Changes
Test Plan
Existing tests pass