版本: 6.8-7.4
简而言之,当 Elasticsearch 在搜索查询期间无法高亮显示特定字段时,会发生此错误。这可能是由于字段名不正确、字段为非文本类型或字段大小过大导致的。要解决此问题,请确保字段名正确且字段为文本数据类型。如果字段较大,可以考虑增加 highlight.max_analyzed_offset 设置或使用 ignore_above 参数来限制字段的大小。
日志上下文 #
日志 “Failed to highlight field [” + highlighterContext.fieldName + “]” 的类名是 PlainHighlighter.java。 我们从 Elasticsearch 源代码中提取了以下内容,供那些寻求深入了解的人参考:
// this can happen if for example a field is not_analyzed and ignore_above option is set.
// the field will be ignored when indexing but the huge term is still in the source and
// the plain highlighter will parse the source and try to analyze it.
return null;
} else {
throw new FetchPhaseExecutionException(context; "Failed to highlight field [" + highlighterContext.fieldName + "]"; e);
}
}
if (field.fieldOptions().scoreOrdered()) {
CollectionUtil.introSort(fragsList; new Comparator() {
@Override





