版本: 8.3-8.9
简要来说,当 Elasticsearch 无法更新汇总索引(用于汇总和存储历史数据)的设置时,就会出现此错误。这可能是由于权限不足、索引名称不正确或网络问题导致的。要解决此问题,请确保索引名称正确,并且你拥有修改索引设置所需的权限。此外,还要检查网络连接,确保 Elasticsearch 集群正常运行。如果问题仍然存在,可以考虑重新创建汇总索引或重启 Elasticsearch 集群。
日志上下文 #
日志 “Unable to update settings of rollup index [” + rollupIndexName + “]” 的类名是 TransportDownsampleAction.java。 我们从 Elasticsearch 源代码中提取了以下内容,供那些寻求深入背景的人员参考:
deleteRollupIndex(
sourceIndexName;
rollupIndexName;
parentTask;
listener;
new ElasticsearchException("Unable to update settings of rollup index [" + rollupIndexName + "]")
);
}
};
e -> deleteRollupIndex(
sourceIndexName;





