| Hadoop-Streaming documentation | view source | Contained in the Hadoop-Streaming distribution. |
Hadoop::Streaming::Reducer::Input - Parse input stream for reducer
version 0.110030
$Input->next_key();
Parses the next line into key/value (splits on tab) and returns the key portion.
Returns undef if there is no next line.
$Input->next_line();
Reads the next line into buffer and returns it.
Returns undef if there are no more lines (end of file).
$Input->getline();
Returns the next available line. Clears the internal line buffer if set.
$Input->iterator();
Returns a new Hadoop::Streaming::Reducer::Input::Iterator for this object.
$Input->each();
Grabs the next line and splits on tabs. Returns an array containing the output of the split.
This software is copyright (c) 2011 by Naoya Ito <naoya@hatena.ne.jp>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Hadoop-Streaming documentation | view source | Contained in the Hadoop-Streaming distribution. |