Changes between Version 1 and Version 2 of III140412/Lab21


Ignore:
Timestamp:
Apr 13, 2014, 3:09:55 PM (10 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • III140412/Lab21

    v1 v2  
    3737}}}
    3838
     39 * Reference:
     40   * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/FileInputFormat.html
     41   * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/TextInputFormat.html
     42{{{
     43#!text
     44public class TextInputFormat
     45extends FileInputFormat<LongWritable,Text>
     46}}}
     47   * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/KeyValueTextInputFormat.html
     48{{{
     49#!text
     50public class KeyValueTextInputFormat
     51extends FileInputFormat<Text,Text>
     52}}}
     53   * http://hadoop.apache.org/docs/r1.0.4/api/org/apache/hadoop/mapreduce/lib/input/NLineInputFormat.html
     54{{{
     55#!text
     56public class NLineInputFormat
     57extends FileInputFormat<LongWritable,Text>
     58
     59NLineInputFormat which splits N lines of input as one split.
     60}}}
    3961== 實作習題 ==
    4062