Skip to content
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

Drop database freezes while index compactions running #8614

Closed
pauldix opened this issue Jul 20, 2017 · 2 comments
Closed

Drop database freezes while index compactions running #8614

pauldix opened this issue Jul 20, 2017 · 2 comments
Labels

Comments

@pauldix
Copy link
Member

pauldix commented Jul 20, 2017

  1. With tsi1 enabled, write a bunch of data with many unique series into database foo
  2. Run drop database foo while TSI compactions are still running

The drop database command looks like it freezes.

@jwilder
Copy link
Contributor

jwilder commented Jul 21, 2017

I have also seen this when a large TSM compactions is running. From some stack traces, the drop database statement gets blocked waiting for the TSM compactions to be interrupted. TSM compactions are currently only interruptible when a new TSM file is finished writing which could take a while if it needs to write out a 2GB file first. We would need to push the interrupt further down into the actual compaction process to allow it to exit faster.

My guess is that TSI compactions may have the same issue.

@e-dard
Copy link
Contributor

e-dard commented Oct 12, 2017

Should be fixed via #8629

@e-dard e-dard closed this as completed Oct 12, 2017
@ghost ghost removed the ready label Oct 12, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants