-
Notifications
You must be signed in to change notification settings - Fork 177
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] passing timeout parameter to some functions in the OpenSearch object raises an exception. #816
Comments
Thanks for reporting this. Appreciate it if you could help check that the parameters are properly described in https://github.com/opensearch-project/opensearch-api-specification and fix this issue here (possibly in the code generator). |
Seems related to my issue here |
@dblock Will check it out, thx. |
@dblock and the Duration schema is a string with a regex pattern timeout schema type (Duration) while in code in the last PR as you mentioned it is int,float. PR where timeout introduced I checked the urllib3 call where the exception Originate and it is int, float. urllib3 call so we will need 2 fixes one for the API specs for the code generator for the timeout type to have a separate schema int,float and one for the util helper function that I already fixed(since I think it is not something generated by the code generation), am I right or missing something? thx for your comments and help ^^ |
One thing that's not clear to me is what does OpenSearch accept? The doc says "A duration. Units can be Try it out, let's know 100% for sure what it is? Then the client needs to match exactly that via code generator. Finally, I do think one should be able to specify |
the decorator is nice syntactic sugar, but nothing beats Typing. |
I have an instance I ran this in the dev-tools of the OpenSearch Instance UI.
since this is consistent with what we assume we can consider that the timeout in the client should at least accept the same as specs but also add the integer feature if possible ? ofc in the code gen library. just to re-iterate that we have a mutual agreement the issue is that the OpenSearch-py passes the timeout as a string since the util function converts int, and float types to a String, but the urilib3 lib and other libs used where we pass the timeout to it expects the timeout value to be an integer, we agree on that right? much thx for your patience. |
Yes.
Yes. I think we need two functions, one that converts a timeout into what OpenSearch takes from any format, and another into seconds that's taken by urllib3 from any format. Plus tests for every possible combination at usage level. |
@dblock |
What is the bug?
_all int, float parameters that are being passed using the "@query_params" decorator are being converted to a string, which sometimes raises an exception, happened to me on calling opensearchpy.client.OpenSearch.delete_by_query caused ValueError exception. _
How can one reproduce the bug?
_
1- find a function that uses the "@query_params" decorator
2- pass an int or float parameter
3- check the value of the passed parameter in the function to find it is not passed as it is called
_
What is the expected behavior?
values passed int or float should stay the same and not be converted/casted into strings.
What is your host/environment?
MAC OS 14.1, python 3.9, opensearch-py 2.2.0
Do you have any screenshots?
Do you have any additional context?
calling opensearchpy.client.OpenSearch.delete_by_query with params dictionary and adding any needed parameters works fine can be used as a solution for current and old versions.
The text was updated successfully, but these errors were encountered: