-
Notifications
You must be signed in to change notification settings - Fork 600
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
Batching for upload test results #12838
Batching for upload test results #12838
Conversation
⚪ Test history | Ya make output | Test bloat
⚪ Test history | Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ Test history | Ya make output | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
for start in range(0, len(prepared_for_upload_rows), batch_rows_for_upload_size): | ||
batch_rows_for_upload = prepared_for_upload_rows[start:start + batch_rows_for_upload_size] | ||
with ydb.SessionPool(driver) as pool: | ||
create_tables(pool, test_table_name) |
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.
Вынести вне цикла наверное стоит
⚪ Test history | Ya make output | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ Test history | Ya make output | Test bloat
⚪ Test history | Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ Test history | Ya make output | Test bloat
🟢 |
⚪ Test history | Ya make output | Test bloat
🟢 |
Changelog entry
In asan, msan and tsan test runs faced with issue
Asan :
=> x1,06 size 148394093 vs. 64000000
Msan (very large error messages)
=> x2,3 size 148394093 vs. 64000000
So 1000 rows shoud be about 20% of maximum
testing in msan here #12843
Changelog category
Additional information
...