Help for this page

Select Code to Download


  1. or download this
        package My::Hadoop::Example::Wordcount;
        use Moose::Role;
    ...
        with Hadoop::Streaming::Reducer,  My::Hadoop::Example::Wordcount;
    
        1;
    
  2. or download this
      #!/usr/bin/perl
      use My::Hadoop::Example;
      My::Hadoop::Example::Mapper->run();
    
  3. or download this
      #!/usr/bin/perl
      use My::Hadoop::Example;
      My::Hadoop::Example::Combiner->run();
    
  4. or download this
      #!/usr/bin/perl
      use My::Hadoop::Example;
      My::Hadoop::Example::Reducer->run();
    
  5. or download this
      hadoop                                     \
          jar $streaming_jar_name                \
    ...
          -mapper   my_mapper                    \
          -combiner my_combiner                  \
          -reducer  my_reducer