记录一下自己对于Hadoop源码的问题,版本0.20.2。
1,在FIFO算法中,一个Job的status是什么时候被设为RUNNING的?
2,《Hadoop权威指南2nd》210页关于“The Relationship Between Input Splits and HDFS Blocks”这部分也不是很理解,TextInputFormat的getSplits()会调用父类FileInputFormat的getSplits(),而FileInputFormat.getSplits()是按数据块大小生成split的,那图7-3的split为什么是按逻辑记录生成了?像NLineInputFormat是覆盖了父类FileInputFormat的getSplits()才可以改变split的。
3,《Hadoop权威指南2nd》217页MapFileOutputFormat如何保证reduce输出的键是有序的?