版本: 7.1-7.15
简要来说,当 Elasticsearch 在请求中遇到意外的索引选项时,就会发生此错误。这可能是由于拼写错误、语法不正确或使用了不存在的选项导致的。要解决此问题,您应该首先验证请求中使用的索引选项。确保其拼写正确并遵循正确的语法。如果问题仍然存在,请查阅 Elasticsearch 文档,以确保该选项在您的 Elasticsearch 版本中有效且受支持。如果该选项已被弃用或不受支持,您需要找到替代方案。
Log Context #
日志 “could not read indices options. unexpected index option [” 的类名是 IndicesOptions.java。我们从 Elasticsearch 源代码中提取了以下内容,供那些需要深入上下文的人参考:
} else if (ALLOW_NO_INDICES_FIELD.match(currentFieldName, parser.getDeprecationHandler())) {
allowNoIndices = parser.booleanValue();
} else if (IGNORE_THROTTLED_FIELD.match(currentFieldName, parser.getDeprecationHandler())) {
ignoreThrottled = parser.booleanValue();
} else {
throw new ElasticsearchParseException("could not read indices options. unexpected index option [" +
currentFieldName + "]");
}
} else {
throw new ElasticsearchParseException("could not read indices options. unexpected object field [" +
currentFieldName + "]");





