Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想获取每个 mapper 和 reducer 任务的 id,因为我想根据 mapper 和 reducer id 标记这些 mapper 和 reducer 的输出。如何检索每个的 id?
谢谢
您可以使用以下代码在地图、设置等功能中打印 taskId。
context.getTaskAttemptID().getTaskID();
你可以使用:org.apache.hadoop.mapreduce.MapContext::getTaskAttemptID()。