-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Unicode index names causing DELETE index to hang #8254
Comments
This appears to be an artifact of running Elasticsearch in Eclipse. And the DELETE _all doesn't hang - it times out after 30 sec and returns Closing |
If there would have been an error like this, forbidden-apis should have catched it :-) |
@s1monw has a fix for this in the works |
@clintongormley is this still happening? |
@s1monw This still happens in 1.3 and 1.4, in master it is worse. This request no longer logs an error:
However it creates two separate directories, one for the segments and one for the translogs:
|
Hye @s1monw this was closed by a commit that went only to master if I'm not mistaken, but it looks like an actual problem in 1.4 and 1.x too (also 1.3). Is there a way to fix this there as well? |
The test in https://github.com/elasticsearch/elasticsearch/blob/master/rest-api-spec/test/index/10_with_id.yaml uses Unicode characters in the index name:
test-weird-index-中文
. After running the test, the test runner tries to clear up the created indices with aDELETE /_all
.At least on OSX, the name of the index is being changed to
test-weird-index-??
.In 1.4, the test succeeds but Elasticsearch logs errors about not being able to delete the index, but DELETE all at least returns. In 1.x, the DELETE all just hangs.
Both versions leave the
test-weird-index-??
in place.Relates to #6736
Logs from 1.x:
Logs from 1.4:
The text was updated successfully, but these errors were encountered: