We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The timeout feature in the search method is not working as expected.
When attempting to create a timeout in my method using values like "10m" or "10ms," I do not receive a timeout error. Here's the code snippet:
SearchRequest searchRequest = new SearchRequest.Builder() .timeout("10m") .index(index) .query(q -> q.bool(b -> b .must(byTyp) .must(byCis) .must(bySta))) .build(); return openSearchClient.search(searchRequest, AccountBean.class);
The expected behavior is to receive a timeout exception when the specified timeout duration is reached.
The text was updated successfully, but these errors were encountered:
Does your search request complete? What do you receive? Does changing it to t->t.time("10m") change anything?
t->t.time("10m")
Sorry, something went wrong.
No branches or pull requests
What is the bug?
The timeout feature in the search method is not working as expected.
How can one reproduce the bug?
When attempting to create a timeout in my method using values like "10m" or "10ms," I do not receive a timeout error. Here's the code snippet:
What is the expected behavior?
The expected behavior is to receive a timeout exception when the specified timeout duration is reached.
The text was updated successfully, but these errors were encountered: