Apache Storm:在 Bolt 中获取拓扑名称
Apache Storm: get Topology name inside a Bolt
如何在 BaseRichBolt
实现中获取当前拓扑的名称?我看到我可以从 prepare()
调用访问 stormConfig 映射和 TopologyContext
,但是如何从其中任何一个中获取 运行 拓扑的名称并不明显。
你可以从config
地图上得到它。
使用 config.get(Config.TOPOLOGY_NAME)
http://nathanmarz.github.io/storm/doc/backtype/storm/Config.html#TOPOLOGY_NAME
@ComputerDruid 感谢指正
如何在 BaseRichBolt
实现中获取当前拓扑的名称?我看到我可以从 prepare()
调用访问 stormConfig 映射和 TopologyContext
,但是如何从其中任何一个中获取 运行 拓扑的名称并不明显。
你可以从config
地图上得到它。
使用 config.get(Config.TOPOLOGY_NAME)
http://nathanmarz.github.io/storm/doc/backtype/storm/Config.html#TOPOLOGY_NAME
@ComputerDruid 感谢指正