首页 > 解决方案 > java.lang.RuntimeException: org.apache.storm.thrift.TApplicationException: 内部错误处理 beginFileUpload

问题描述

我正在尝试将 Storm-start 中的ExclamationTopology示例提交到单节点集群并收到以下错误

Exception in thread "main" java.lang.RuntimeException: org.apache.storm.thrift.TApplicationException: Internal error processing beginFileUpload
at org.apache.storm.StormSubmitter.submitJarAs(StormSubmitter.java:507)
at org.apache.storm.StormSubmitter.submitTopologyInDistributeMode(StormSubmitter.java:332)
at org.apache.storm.StormSubmitter.submitTopologyAs(StormSubmitter.java:274)
at org.apache.storm.StormSubmitter.submitTopology(StormSubmitter.java:206)
at org.apache.storm.StormSubmitter.submitTopology(StormSubmitter.java:169)
at ExclamationTopology.main(ExclamationTopology.java:85)
Caused by: org.apache.storm.thrift.TApplicationException: Internal error processing beginFileUpload
at org.apache.storm.thrift.TServiceClient.receiveBase(TServiceClient.java:79)
at org.apache.storm.generated.Nimbus$Client.recv_beginFileUpload(Nimbus.java:1035)
at org.apache.storm.generated.Nimbus$Client.beginFileUpload(Nimbus.java:1023)
at org.apache.storm.StormSubmitter.submitJarAs(StormSubmitter.java:476)

我的环境:

标签: apache-stormapache-storm-topology

解决方案


你有你的案例的灵气日志吗?

有时会有关于此类错误消息的有用信息。寻找

没有可用的拓扑插槽:

在我的情况下,我必须使用名为的风暴管理命令删除损坏的拓扑

风暴管理员 remove_corrupt_topologies

也许这对你的情况有帮助!


推荐阅读