A more precise way of tracking flushing time in 01246_buffer_flush#67099
Merged
alexey-milovidov merged 1 commit intoClickHouse:masterfrom Jul 26, 2024
Merged
A more precise way of tracking flushing time in 01246_buffer_flush#67099alexey-milovidov merged 1 commit intoClickHouse:masterfrom
alexey-milovidov merged 1 commit intoClickHouse:masterfrom
Conversation
Right now there are couple of issues with the test:
- it does not takes into account INSERT time
- it does not takes into account SELECT time, which can be significant
from time to time, for instance here [1] it takes 3.3 seconds (and due
to tsan build it is not possible to find out why)
2024.07.23 20:52:18.238844 [ 13045 ] {d903650b-ab87-44f3-b7c3-4145e02f1301} <Debug> executeQuery: (from [::1]:39430) (comment: 01246_buffer_flush.sh) select count() from data_01256; (stage: Complete)
2024.07.23 20:52:21.588183 [ 13045 ] {d903650b-ab87-44f3-b7c3-4145e02f1301} <Debug> TCPHandler: Processed in 3.354887498 sec.
[1]: https://s3.amazonaws.com/clickhouse-test-reports/66934/919005c4f70b044ecd9cc1bbce5dc5e276e11929/stateless_tests__tsan__s3_storage__[4_4].html
Anyway all of this can be fixed by using QueryStart-insert into data
table time.
Signed-off-by: Azat Khuzhin <[email protected]>
Contributor
|
This is an automated comment for commit 60f529f with description of existing statuses. It's updated for the latest CI running ❌ Click here to open a full report in a separate page
Successful checks
|
alexey-milovidov
approved these changes
Jul 25, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Right now there are couple of issues with the test:
it does not take into account INSERT time
it does not take into account SELECT time, which can be significant from time to time, for instance here 1 it takes 3.3 seconds (and due to tsan build it is not possible to find out why)
Anyway all of this can be fixed by using QueryStart-insert into data table time.
Changelog category (leave one):