如何找到每个map任务的id?
我想获取每个mapper和reducer任务的id,因为我想根据mapper和reducer id来标记这些mapper和reducer的输出。我如何检索每个的 id?
谢谢
I want to get the id of each mapper and reducer task because I want to tag the output of these mappers and reducers according to the mapper and reducer id. How can I retrieve the ids of each?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下代码在地图、设置等功能中打印任务ID。
You can print taskId in map, setup etc. functions by utilizing following code.
您可以使用:org.apache.hadoop.mapreduce.MapContext::getTaskAttemptID() 来完成此操作。
you can do it using: org.apache.hadoop.mapreduce.MapContext::getTaskAttemptID().