如果您使用的是 Pig 版本 0.10.0 或更高版本,则可以利用源标记和MultiStorage的组合来跟踪文件。
例如,如果您有一个pigin
包含文件和内容的输入目录,如下所示:
pigin
|-test1 => "hello"
|-test2 => "world"
|-test3 => "Apache"
|-test4 => "Hadoop"
|-test5 => "Pig"
以下脚本将读取每个脚本并将每个文件的内容写入不同的目录。
%declare inputPath 'pigin'
%declare outputPath 'pigout'
-- Define MultiStorage to write output to different directories based on the
-- first element in the tuple
define MultiStorage org.apache.pig.piggybank.storage.MultiStorage('$outputPath','0');
-- Load the input files, prepending each tuple with the file name
A = load '$inputPath' using PigStorage(',', '-tagsource');
-- Write output to different directories
store A into '$outputPath' using MultiStorage();
上面的脚本将创建一个输出目录树,如下所示:
pigout
|-test1
| `-test1-0 => "test1 hello"
|-test2
| `-test2-0 => "test2 world"
|-test3
| `-test3-0 => "test3 Apache"
|-test4
| `-test4-0 => "test4 Hadoop"
|-test5
| `-test5-0 => "test5 Pig"
-0
文件名末尾的 对应于产生输出的化简器。如果你有多个 reducer,你可能会在每个目录中看到多个文件。