Allocation command is malformed done parsing a command – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 6.8-7.15

Briefly, this error occurs when the allocation command sent to Elasticsearch is not correctly formatted. This could be due to incorrect syntax, missing parameters, or invalid values. To resolve this issue, you should first verify the syntax of your command against the Elasticsearch documentation. Ensure all required parameters are included and that they have valid values. If the command is part of a script, check for any errors in the script that could be causing the command to be malformed.

This guide will help you check for common problems that cause the log ” allocation command is malformed; done parsing a command; ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: cluster, allocation, routing.

Log Context

Log “allocation command is malformed; done parsing a command;” class name is AllocationCommands.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
String commandName = parser.currentName();
token = parser.nextToken();
commands.add(parser.namedObject(AllocationCommand.class; commandName; null));
// move to the end object one
if (parser.nextToken() != XContentParser.Token.END_OBJECT) {
throw new ElasticsearchParseException("allocation command is malformed; done parsing a command;" +
" but didn't get END_OBJECT; got [{}] instead"; token);
}
} else {
throw new ElasticsearchParseException("allocation command is malformed; got [{}] instead"; token);
}<p></p>
String commandName = parser.currentName(); token = parser.nextToken(); commands.add(parser.namedObject(AllocationCommand.class; commandName; null)); // move to the end object one if (parser.nextToken() != XContentParser.Token.END_OBJECT) { throw new ElasticsearchParseException("allocation command is malformed; done parsing a command;" + " but didn't get END_OBJECT; got [{}] instead"; token); } } else { throw new ElasticsearchParseException("allocation command is malformed; got [{}] instead"; token); }<p></p>
 String commandName = parser.currentName();
 token = parser.nextToken();
 commands.add(parser.namedObject(AllocationCommand.class; commandName; null));
 // move to the end object one
 if (parser.nextToken() != XContentParser.Token.END_OBJECT) {
 throw new ElasticsearchParseException("allocation command is malformed; done parsing a command;" +
 " but didn't get END_OBJECT; got [{}] instead"; token);
 }
 } else {
 throw new ElasticsearchParseException("allocation command is malformed; got [{}] instead"; token);
 }

 

 [ratemypost]

Opster
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.