-
Notifications
You must be signed in to change notification settings - Fork 7.1k
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
Remove the removal of broken detached parts #55184
Conversation
This is an automated comment for commit d8b5713 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
|
JFYI I was using this on one of clusters, because of on abnormal server restart, that was not that rare (due to faulty hardware) and without fsync it is highly lightly that you will have some broken parts after this. And usually in such parts all files are empty (but not always), and using automatic clean + Though I do agree that it is a dangerous feature. |
def test_store_cleanup(started_cluster): | ||
node1.query("CREATE DATABASE db UUID '10000000-1000-4000-8000-000000000001'") | ||
node1.query( |
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.
@alexey-milovidov, this test was testing a different feature, please add it back
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.
This commit left behind an unused symbol |
Changelog category (leave one):
Changelog entry (a user-readable short description of the changes that goes to CHANGELOG.md):
There is no longer an option to automatically remove broken data parts. This closes #55174.
This writes off the previous work in #37975 #41190 #48730 #53164