Request body or source parameter is required – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 6.8-8.9

Briefly, this error occurs when an Elasticsearch request is made without a required body or source parameter. This usually happens when you’re trying to perform operations like indexing, updating, or searching documents. To resolve this, ensure that your request includes a valid body or source parameter. Check your request syntax and structure to ensure it’s correct. If you’re using a programming language to send requests, ensure that the request body is properly formatted and not empty.

Before you dig into reading this guide, have you tried asking OpsGPT what this log means? You’ll receive a customized analysis of your log.

Try OpsGPT now for step-by-step guidance and tailored insights into your Elasticsearch/OpenSearch operation.

To fully understand why this error appeared and how to remedy the errors in your query, you should run the AutoOps for Elasticsearch.

This guide will help you understand issues realted to the log “request body or source parameter is required”. To get started, read the general overview on common issues and tips related to the Elasticsearch concepts: rest, request and source.

Background

The Analyze API is used to perform analysis on a text string and return the resulting tokens. The above exception arises when the cURL request of Analyze API is malformed. The proper format, as detailed below in the “How to fix” section, is required to get the tokens using this API.

How to reproduce this exception

In the cURL format, if the Analyze request is written like this:

Hit the Analyze API:

curl -XGET "localhost:9200/my-index/_analyze?analyzer=standard&pretty" -H -d "Opster"

Then the response generated will be:

{
 "error": {
   "root_cause": [
     {
       "type": "parse_exception",
       "reason": "request body or source parameter is required"
     }
   ],
   "type": "parse_exception",
   "reason": "request body or source parameter is required"
 },
 "status": 400
}

How to fix this exception

The cURL request is malformed. The query can be modified in the following way:

In cURL format:

curl -XGET "http://localhost:9800/my-index/_analyze?pretty" -H 'Content-Type: application/json' -d '{ "analyzer": "standard", "text": "Opster" }'

The equivalent request in the Kibana Dev Tools format is:

GET /my-index/_analyze?pretty
{
 "analyzer" : "standard",
 "text" : "opster"
}

The tokens generated from the above request are:

{
 "tokens": [
   {
     "token": "opster",
     "start_offset": 0,
     "end_offset": 4,
     "type": "<ALPHANUM>",
     "position": 0
   }
 ]
}

To learn more about tokens, you can refer to text analysis for more information.

Log Context

Log “request body or source parameter is required” class name is RestRequest.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 * Get the content of the request or the contents of the {@code source} param or throw an exception if both are missing.
 * Prefer {@link #contentOrSourceParamParser()} or {@link #withContentOrSourceParamParserOrNull(CheckedConsumer)} if you need a parser.
 */
 public final Tuple contentOrSourceParam() {
 if (hasContentOrSourceParam() == false) {
 throw new ElasticsearchParseException("request body or source parameter is required");
 } else if (hasContent()) {
 return new Tuple<>(xContentType.get(); requiredContent());
 }
 String source = param("source");
 String typeParam = param("source_content_type");

 

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?