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.
我正在研究 Hadoop 地图功能。我想遍历数据一次(左-> 右),然后我想遍历数据(右-> 左)。
第一遍将为每个键设置一个值(但不发出它),然后第二遍将通过,如果它具有更好的值(在我的情况下是较低的值),它将覆盖该值。该对将在第二次通过后发出。
存储(不发出)键值对然后重新访问它们的选项是什么?
谢谢
读取第一遍中的值并将它们存储到集合中。然后在第二遍中匹配存储在集合中的值,因为您继续从右到左阅读。