-
Notifications
You must be signed in to change notification settings - Fork 416
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
ES-compatible API #2653
Comments
Bumping priority for:
|
One thing I'm noticing missing from the // curl -XPOST http://localhost:7200/api/v1/_elastic/ac*/_search -d '{"query": { "match_all": {} }, "size": 1}'
{
"status": 404,
"error": {
"caused_by": null,
"reason": "Index `ac*` does not exist.",
"stack_trace": null,
"type": null
}
} // curl -XPOST http://localhost:7200/api/v1/_elastic/foo,bar/_search -d '{"query": { "match_all": {} }, "size": 1}'
{
"message": "Route not found"
} |
Thanks for the feedback. Just confirming that search across multiple indices is not yet supported. |
The Validation for index names is a little different than what elasticsearch allows.
|
It looks like the |
It looks like the |
Commenting about the HEAD request. @fmassot fixed it. |
I think we can probably call this done for our purposes @fulmicoton, what do you thin? |
If you have everything you need I think we can close it yes! |
Endpoints:
indices-stats
elasticsearch endpoint #3526cat-indices
elasticsearch endpoint #3525Search parameters:
search_after
parameter in a search query #3523 (under discussion)Query DSL:
lenient
,default_field
,fields
params (high priority)[phrase_prefix, phrase]
type,lenient
(high priority)- [Multi-match query withanalyze_wildcard
+analyzer
(under discussion){"match_all": {}}
Aggregation DSL:
Other missing elastic features that we might discuss:
The text was updated successfully, but these errors were encountered: