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

Fix BulkProcessor hangs for threads deadlocked (#44556) #46790

Closed
wants to merge 2 commits into from

Conversation

suxinglee
Copy link

In #44556 bulk processor threads gets deadlocked, and Java application using BulkProcessing hangs without any data flush. This problem have been discussed in two issues. One way to solve this deadlock is modify corePoolSize for scheduler in client.

@elasticmachine
Copy link
Collaborator

Pinging @elastic/es-core-features

@javanna javanna added the >bug label Sep 19, 2019
@suxinglee
Copy link
Author

@jakelandis PTAL

@jakelandis
Copy link
Contributor

@suxinglee - Thank you very much for finding this bug and providing a test case. After taking a look, it appears this is fixed in 7.3.0 by #41451. I logged #47599 with more details and will close out this PR these related issues since it is addressed and there is a workaround.

You can workaround the deadlock by changing the BackoffPolicy to noBackoff.

From your test:

private Future<?> buildAndExecuteBulkProcessor(Scheduler scheduler) throws InterruptedException {
...
       // final BackoffPolicy backoff = BackoffPolicy.constantBackoff(TimeValue.timeValueMillis(100L), 1);
        final BackoffPolicy backoff = BackoffPolicy.noBackoff();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants