-
Notifications
You must be signed in to change notification settings - Fork 190
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
[BUG] Delete PIT and clear scroll request fails with sigv4 signature mismatch for java client 2.5.0 #521
Comments
Hi @graytaylor0, thank you for raising this issue! Would you be up to PR a fix? |
Hi @VachaShah, I'd be happy to make a PR, but I am unsure of how to fix it or debug what is wrong with the current client code |
Start by adding a test (unit or integration) that reproduces the issue. I don't see anything method-specific in https://github.com/opensearch-project/opensearch-java/blob/ae4ac0e08e0b60236805fd75e334aa4e05a8c304/java-client/src/main/java/org/opensearch/client/transport/aws/AwsSdk2Transport.java, so we'll need to look into what headers are generated, whether the body is or isn't getting signed, etc. |
Created this integration test (#522) which is currently failing with the sigv4 signature error. What is the best way to compare the request that is being sent by the client to what is expected? |
I think it's pretty difficult to know what's expected, so from here I'd debug the code path for a DELETE vs. a POST. I suspect it skips signing the body or something like that. |
I did some stepping through with the debugger, and it looked like no different between handling of a DELETE and POST request. The only thing I do notice is that the
|
Also the header for |
Also found a similar past issue that may be helpful (aws/aws-sdk-js#1733) |
@graytaylor0 did some initial digging around and it doesn't look like it's an issue with SigV4 signing. I suspect the issue is either with the |
Hi @harshavamsi. Thanks for the information there. That is very helpful. However, I would like to understand the implications of using an async client instead of the non-async client. How will this impact the other API calls that I am currently making successfully with the non-async client? I'm not sure it makes sense to use the async client just for the sake of this failed delete PIT request. |
[Catch All Triage - 1, 2, 3, 4] |
What is the bug?
deletePit
request to opensearch client fails with sigv4 signing mismatchHow can one reproduce the bug?
Create an OpenSearchClient following instructions from here (https://opensearch.org/docs/2.7/clients/java/#connecting-to-amazon-opensearch-service) and then attempt to use the client's
deletePit
API.I believe this is because it is a DELETE request with a body. The
createPit
method works as intended. Sending the request results in a sigv4 errorWhat is the expected behavior?
The
deletePit
API call does not have a signature mismatchWhat is your host/environment?
Mac OS
Do you have any screenshots?
If applicable, add screenshots to help explain your problem.
Do you have any additional context?
Add any other context about the problem.
The text was updated successfully, but these errors were encountered: