【发布时间】:2015-04-24 14:28:54
【问题描述】:
到目前为止,我在一个pig脚本中只使用了两个store语句。在一个pig脚本中使用多个store语句有什么限制吗?
A = load 'page_views';
store A into 'tmp1' using PigStorage();
B = load 'tmp1' using PigStorage();
C = filter B by $0 is not null;
store C into 'tmp2';
....
....
store D into 'tmp3';
【问题讨论】:
-
请考虑提供有关您的特定用例的更多信息。
标签: hadoop apache-pig bigdata