-
Notifications
You must be signed in to change notification settings - Fork 494
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
Add support for newer Elasticsearch search api #3360
Labels
Comments
vga91
added a commit
that referenced
this issue
Apr 15, 2024
vga91
added a commit
that referenced
this issue
Apr 15, 2024
vga91
added a commit
that referenced
this issue
Apr 16, 2024
RobertoSannino
pushed a commit
that referenced
this issue
Apr 17, 2024
github-project-automation
bot
moved this from Review
to Done (to cherry-pick)
in APOC Extended Larus
May 16, 2024
vga91
added a commit
that referenced
this issue
Dec 4, 2024
vga91
added a commit
that referenced
this issue
Dec 4, 2024
vga91
added a commit
that referenced
this issue
Dec 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature description
Add support for ElasticSearch 8.5.
Currently
apoc.es.query
generates requests on URL's that are no compatible with ElasticSearch 8.5. For example:http://x.x.x.x:9200/<index>/<type>/_search
This results in a 403 returned.
In ElasticSearch 8.5 this should be:
http://x.x.x.x:9200/<index>/_search
This is documented here:
https://www.elastic.co/guide/en/elasticsearch/reference/8.5/search-search.html
The text was updated successfully, but these errors were encountered: