- Java REST Client (deprecated): other versions:
- Overview
- Java Low Level REST Client
- Java High Level REST Client
- Getting started
- Document APIs
- Search APIs
- Miscellaneous APIs
- Indices APIs
- Analyze API
- Create Index API
- Delete Index API
- Indices Exists API
- Open Index API
- Close Index API
- Shrink Index API
- Split Index API
- Refresh API
- Flush API
- Flush Synced API
- Clear Cache API
- Force Merge API
- Rollover Index API
- Put Mapping API
- Get Mappings API
- Get Field Mappings API
- Index Aliases API
- Exists Alias API
- Get Alias API
- Update Indices Settings API
- Get Settings API
- Put Template API
- Validate Query API
- Get Templates API
- Templates Exist API
- Get Index API
- Freeze Index API
- Unfreeze Index API
- Delete Template API
- Cluster APIs
- Ingest APIs
- Snapshot APIs
- Tasks APIs
- Script APIs
- Licensing APIs
- Machine Learning APIs
- Put Job API
- Get Job API
- Delete Job API
- Open Job API
- Close Job API
- Update Job API
- Flush Job API
- Put Datafeed API
- Update Datafeed API
- Get Datafeed API
- Delete Datafeed API
- Preview Datafeed API
- Start Datafeed API
- Stop Datafeed API
- Get Datafeed Stats API
- Get Job Stats API
- Forecast Job API
- Delete Forecast API
- Get Buckets API
- Get Overall Buckets API
- Get Records API
- Post Data API
- Get Influencers API
- Get Categories API
- Get Calendars API
- Put Calendar API
- Get Calendar Events API
- Post Calendar Event API
- Delete Calendar Event API
- Put Calendar Job API
- Delete Calendar Job API
- Delete Calendar API
- Put Filter API
- Get Filters API
- Update Filter API
- Delete Filter API
- Get Model Snapshots API
- Delete Model Snapshot API
- Revert Model Snapshot API
- Update Model Snapshot API
- ML Get Info API
- Delete Expired Data API
- Migration APIs
- Rollup APIs
- Security APIs
- Put User API
- Get Users API
- Delete User API
- Enable User API
- Disable User API
- Change Password API
- Put Role API
- Get Roles API
- Delete Role API
- Delete Privileges API
- Get Privileges API
- Clear Roles Cache API
- Clear Realm Cache API
- Authenticate API
- Has Privileges API
- Get User Privileges API
- SSL Certificate API
- Put Role Mapping API
- Get Role Mappings API
- Delete Role Mapping API
- Create Token API
- Invalidate Token API
- Put Privileges API
- Watcher APIs
- Graph APIs
- CCR APIs
- Index Lifecycle Management APIs
- Using Java Builders
- Migration Guide
- License
Explain API
editExplain API
editThe explain api computes a score explanation for a query and a specific document. This can give useful feedback whether a document matches or didn’t match a specific query.
Explain Request
editAn ExplainRequest
expects an index
, a type
and an id
to specify a certain document,
and a query represented by QueryBuilder
to run against it (the way of building queries).
ExplainRequest request = new ExplainRequest("contributors", "doc", "1"); request.query(QueryBuilders.termQuery("user", "tanguy"));
Optional arguments
edit
Use the preference parameter e.g. to execute the search to prefer local shards. The default is to randomize across shards. |
Set to true to retrieve the _source of the document explained. You can also retrieve part of the document by using _source_include & _source_exclude (see Get API for more details) |
Synchronous Execution
editThe explain
method executes the request synchronously:
ExplainResponse response = client.explain(request, RequestOptions.DEFAULT);
Asynchronous Execution
editThe explainAsync
method executes the request asynchronously,
calling the provided ActionListener
when the response is ready:
The asynchronous method does not block and returns immediately. Once the request
completes, the ActionListener
is called back using the onResponse
method
if the execution successfully completed or using the onFailure
method if
it failed.
A typical listener for ExplainResponse
is constructed as follows:
ExplainResponse
editThe ExplainResponse
contains the following information:
String index = response.getIndex(); String type = response.getType(); String id = response.getId(); boolean exists = response.isExists(); boolean match = response.isMatch(); boolean hasExplanation = response.hasExplanation(); Explanation explanation = response.getExplanation(); GetResult getResult = response.getGetResult();
The index name of the explained document. |
|
The type name of the explained document. |
|
The id of the explained document. |
|
Indicates whether or not the explained document exists. |
|
Indicates whether or not there is a match between the explained document and
the provided query (the |
|
Indicates whether or not there exists a lucene |
|
Get the lucene |
|
Get the |
The GetResult
contains two maps internally to store the fetched _source
and stored fields.
You can use the following methods to get them:
On this page