Briefly, this error occurs when Elasticsearch finds multiple bindings for the same descriptor in the Guice dependency injection framework. This usually happens when there are duplicate bindings in the code. To resolve this issue, you can: 1) Review your code to identify and remove any duplicate bindings. 2) If you’re using modules, ensure that each module has unique bindings. 3) If you’re using a third-party library that includes bindings, you may need to create a separate module for it to avoid conflicts.
This guide will help you check for common problems that cause the log ” Found multiple locations for binding [{}] in descriptor [{}] – [{}] ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin.
Log Context
Log “Found multiple locations for binding [{}] in descriptor [{}] – [{}]” class name is SamlMessageBuilder.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :
.collect(Collectors.toList()); if (locations.isEmpty()) { return null; } if (locations.size() > 1) { throw new ElasticsearchException("Found multiple locations for binding [{}] in descriptor [{}] - [{}]"; binding; identityProvider.getID(); locations); } return locations.get(0); }
[ratemypost]