重新启动服务器后,NiFi 无法启动。在服务器重新启动之前,我能够毫无问题地关闭/启动 NiFi。
我确保所有节点上的 3 个配置文件(flow.xml.gz、authorizations.xml 和 users.xml)都相同。
2019-12-08 14:36:10,085 ERROR [main] o.a.nifi.controller.StandardFlowService Failed to load flow from cluster due to: org.apache.nifi.controller.UninheritableFlowException: Failed to connect node to cluster because local flow is different than cluster flow.
org.apache.nifi.controller.UninheritableFlowException: Failed to connect node to cluster because local flow is different than cluster flow.
at org.apache.nifi.controller.StandardFlowService.loadFromConnectionResponse(StandardFlowService.java:1026)
at org.apache.nifi.controller.StandardFlowService.load(StandardFlowService.java:539)
at org.apache.nifi.web.server.JettyServer.start(JettyServer.java:1009)
at org.apache.nifi.NiFi.<init>(NiFi.java:158)
at org.apache.nifi.NiFi.<init>(NiFi.java:72)
at org.apache.nifi.NiFi.main(NiFi.java:297)
Caused by: org.apache.nifi.controller.UninheritableFlowException: Proposed Authorizer is not inheritable by the flow controller because of Authorizer differences: Proposed Authorizations do not match current Authorizations: Proposed fingerprint is not inheritable because the current access policies is not empty.
Run Code Online (Sandbox Code Playgroud)
此外,通过删除 zookeeper 集群中 NiFi 的 znode,排除了任何 zookeeper 损坏问题。
我在 NiFi 1.9.1
任何帮助都受到高度赞赏。
这意味着authorizations.xml 或users.xml 存在差异,很可能是authorizations.xml。我会尝试将这两个文件从其他节点之一复制到出现问题的节点,这将确保它们完全相同。
小智 5
一个建议,如果存在我们无法复制 flow.xml.gz (就像我一样)的各种流程限制。我们可以在有问题的节点上停止 Nifi 服务,将现有的 flow.xml.gz 重命名为备份(只是为了确保我们不会丢失它)并重新启动 Nifi 服务。
Nifi会自动生成flow.xml.gz并将节点连接到集群。它对我有用,因此分享。
谢谢