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最终输出是bmp图像的应用程序。我将输出格式更改为byte,这是我的问题:reducer output order如果我将输出键设置为 ,会发生NullWritable什么?
hadoop
bmp
byte
reducer output order
NullWritable
reducer 的输出键类型对 reducer 输出的顺序没有影响 - 这由 reducer 输入键控制,并且通过键compareTo方法或原始比较器(如果已配置)进行自然排序。
compareTo
因此,顺序将与您的减速器处理记录的顺序相同(除非您的减速器维护键/值之间的状态并定期刷新此状态)