Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 PIG 脚本中,是否可以在一行中组合多个命令,这样一个命令行的输出,而不是进入输出变量,可以直接作为另一个命令的输入?
这是允许的。但它不会在运行时优化任何东西。它只是混淆了语法。
STORE(FORECH(LOAD '$file') GENERATE $0, $1) ) INTO 'output.txt';