-
Notifications
You must be signed in to change notification settings - Fork 66
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
Issue: Unable to pickup Default Model id during search #664
Comments
it works fine without hybrid search. i mean in the case of semantic search with out id it works as mentioned in the documentation. could you please share what is the proper syntax to make it work with hybrid search. |
This is a server-side error, right? Moving to OpenSearch core repo. |
I will look into it |
@vibrantvarun have you found a fix? I have the same issue and I do not use hybrid search |
Hey @IanMenendez @eswarthammana Can you add the default model Id setting in the normalization process itself. And do not create a separate search pipeline for default model id.
|
It is not a bug. |
I have just tested it on local and everything is working as expected. |
Thanks for testing it. I just found out the problem is related to my code searching the index through an alias and not the full name. Linked issue is: opensearch-project/OpenSearch#7512 |
Closing this issue. Feel free to open if still facing the issue. |
Found out that NeuralQueryEnricher search processor is not working with NestedQueries how to reproduce:
This should work but instead throws:
|
opensearch 2.11.1
python 3.11
opensearch-py 2.5.0
using the mentioned steps in the documentation with opensearch-py and requests module.
i have created a ingest pipeline with a default model id using PUT "/_ingest/pipeline/" and updated same in the index settings, which is working fine with out any issues.
Similarly i have created a search pipeline with a default model id using PUT "/_search/pipeline/" and updated same in the index settings under search.default_pipeline.
These settings got updated with proper model id and got verified.
when i perform search query, hybrid search with out model_id it throws null pointer exception as
As per the documentation it shall accept with out model id but throws null pointer and if i pass model id the query works with out any issues.
Please do share your thoughts or suggestions.
The text was updated successfully, but these errors were encountered: