gpt4 book ai didi

java - 多次执行的prepare方法

转载 作者:行者123 更新时间:2023-12-02 09:34:46 25 4
gpt4 key购买 nike

您好,我正在使用 apache-storm 创建一个拓扑,其中我的 Spout 正在从 Kakfa 主题收集数据并将其发送到 Bolt。

我正在对元组进行一些验证,并再次为其他 Bolt 发出流。

现在的问题是我使用第一个 bolt 流的第二个 bolt 有一个重载方法 prepare(Map<String, Object> map, TopologyContext topologyContext, OutputCollector outputCollector)假设每 2 秒执行一次。

拓扑代码是

topologyBuilder.setBolt("abc",new ValidationBolt()).shuffleGrouping(configurations.SPOUT_ID);

topologyBuilder.setBolt("TEST",new TestBolt()).shuffleGrouping("abc",Utils.VALIDATED_STREAM);

第一个 bolt “abc”的代码是

@Override
public void execute(Tuple tuple) {
String document = String.valueOf(tuple.getValue(4));
if (Utils.isJSONValid(document)) {
outputCollector.emit(Utils.VALIDATED_STREAM,new Values(document));
}
}


@Override
public void declareOutputFields(OutputFieldsDeclarer outputFieldsDeclarer) {
outputFieldsDeclarer.declareStream(Utils.VALIDATED_STREAM,new Fields("document"));
}

当我搜索时,我发现了

The prepare method is called when the bolt is initialised and is 
similar to the open method in spout. It is called only once for the bolt.
It gets the configuration for the bolt and also the context of the bolt.
The collector is used to emit or output the tuples from this bolt.

链接到日志的公共(public)要点 Storm topology log

最佳答案

您的日志显示您正在使用 LocalCluster。它是一个测试/演示工具,请勿将其用于生产工作负载。而是建立一个真正的分布式集群。

关于正在发生的事情:

当您在 LocalCluster 中运行拓扑时,Storm 通过将所有组件(Nimbus、Supervisor 和 Workers)作为单个 JVM 中的线程运行来模拟真实的集群。您的日志显示这些行:

20:14:12.451 [SLOT_1027] INFO o.a.s.ProcessSimulator - Begin killing process 2ea97301-24c9-4c1a-bcba-61008693971a

20:14:12.451 [SLOT_1027] INFO o.a.s.d.w.Worker - Shutting down worker smart-transactional-data-1-1566571315 72bbf510-c342-4385-9599-0821a2dee94e 1027

20:14:15.518 [SLOT_1027] INFO o.a.s.d.s.Slot - STATE running msInState: 33328 topo:smart-transactional-data-1-1566571315 worker:2ea97301-24c9-4c1a-bcba-61008693971a -> kill-blob-update msInState: 3001 topo:smart-transactional-data-1-1566571315 worker:2ea97301-24c9-4c1a-bcba-61008693971a

20:14:15.540 [SLOT_1027] INFO o.a.s.d.w.Worker - Launching worker for smart-transactional-data-1-1566571315

LocalCluster 正在关闭其中一个模拟工作线程,因为 Blob 存储中的 Blob 之一(例如拓扑 jar、拓扑配置、其他类型的共享文件,请参阅 https://storm.apache.org/releases/2.0.0/distcache-blobstore.html )发生了变化。通常,当这种情况在真实集群中发生时,工作线程 JVM 将被终止,blob 将被更新,并且工作线程将重新启动。由于您使用的是 LocalCluster,它只会杀死工作线程并重新启动它。这就是为什么您会看到多次调用 prepare

关于java - 多次执行的prepare方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57627459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com