Failed to get id id with includes excludes set – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 7.6-8.5

Briefly, this error occurs when Elasticsearch fails to retrieve a document with a specific ID due to incorrect or invalid includes/excludes parameters in the request. This could be due to a typo, incorrect field name, or a field that doesn’t exist. To resolve this issue, you can verify the field names in your includes/excludes parameters, ensure that the fields exist in the document, and check for any typographical errors in your request. Also, ensure that the document with the specified ID exists in your Elasticsearch index.

This guide will help you check for common problems that cause the log ” Failed to get id [” + id + “] with includes/excludes set ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: index.

Log Context

Log “Failed to get id [” + id + “] with includes/excludes set” class name is ShardGetService.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 } else if (fetchSourceContext.includes().length > 0 || fetchSourceContext.excludes().length > 0) {
 try {
 source = XContentFieldFilter.newFieldFilter(fetchSourceContext.includes(); fetchSourceContext.excludes())
 .apply(source; null);
 } catch (IOException e) {
 throw new ElasticsearchException("Failed to get id [" + id + "] with includes/excludes set"; e);
 }
 }
 }  return new GetResult(

 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?