java.lang.runtimeexception:org.apache.storm.thrift.tapplicationexception:内部错误处理beginfeupload

7bsow1i6  于 2021-06-24  发布在  Storm
关注(0)|答案(1)|浏览(458)

我试图将在storm start中找到的惊呼本体论示例提交到单节点集群,并得到以下错误

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)

我的环境:
linuxmint-19.1(64位)
apache-storm-2.1.0版
apache-zookeeper-3.5.5版本

klh5stk1

klh5stk11#

你的案子有nimbus日志吗?
有时会有关于此类错误消息的有用信息。寻找
没有可用于拓扑的插槽:
在我的例子中,我必须使用名为
storm admin删除\u损坏的\u拓扑
也许这对你有帮助!

相关问题