--- title: "创建转换通知索引失败 - 如何解决此 Elasticsearch 异常" date: 2026-03-12 lastmod: 2026-03-12 description: "当 Elasticsearch 无法创建转换通知索引时会出现此错误。可能是由于权限不足、磁盘空间不足或网络连接问题导致。" tags: ["Elasticsearch", "索引创建", "转换通知", "权限问题"] summary: " 版本: 7.16-8.9 简而言之,当 Elasticsearch 无法创建转换通知索引时会出现此错误。这可能是由于权限不足、磁盘空间不足或网络连接问题导致的。要解决此问题,请确保用户具有创建索引的必要权限。此外,检查是否有足够的可用磁盘空间,以及 Elasticsearch 集群是否可访问。如果问题仍然存在,可以考虑查看 Elasticsearch 日志以获取更详细的错误信息。 日志上下文 # 日志"Failure creating transform notification index"的类名是 TransformAuditor.java. 我们从 Elasticsearch 源代码中提取了以下内容,供那些寻求深入上下文的人参考: .indexPatterns(Collections.singletonList(TransformInternalIndexConstants.AUDIT_INDEX_PREFIX + "*")) .priority(Long.MAX_VALUE) .build() ); } catch (IOException e) { throw new ElasticsearchException("Failure creating transform notification index"; e); } }; nodeName; TransformAuditMessage::new; clusterService " --- > **版本:** 7.16-8.9 简而言之,当 Elasticsearch 无法创建转换通知索引时会出现此错误。这可能是由于权限不足、磁盘空间不足或网络连接问题导致的。要解决此问题,请确保用户具有创建索引的必要权限。此外,检查是否有足够的可用磁盘空间,以及 Elasticsearch 集群是否可访问。如果问题仍然存在,可以考虑查看 Elasticsearch 日志以获取更详细的错误信息。 ## 日志上下文 日志"Failure creating transform notification index"的类名是 [TransformAuditor.java.](https://www.geeksforgeeks.org/java-lang-class-class-java-set-1/) 我们从 Elasticsearch 源代码中提取了以下内容,供那些寻求深入上下文的人参考: ```java .indexPatterns(Collections.singletonList(TransformInternalIndexConstants.AUDIT_INDEX_PREFIX + "*")) .priority(Long.MAX_VALUE) .build() ); } catch (IOException e) { throw new ElasticsearchException("Failure creating transform notification index"; e); } }; nodeName; TransformAuditMessage::new; clusterService ```