我有一个由下面的file.dat组成的文件:
1::Heat (1995)::Action|Crime|Thriller
2::Sabrina (1995)::Comedy|Romance
3::Tom and Huck (1995)::Adventure|Children's
现在我正在使用我的猪脚本加载文件:
input = LOAD 'hdfs://localhost:54310/file.dat' USING PigSCript(':',':') as (id:int, name:chararray, generes:chararray);
但我得到这样的输出
(1,,Heat (1995))
(2,,Sabrina (1995))
(3,,Tom and Huck (1995))
我无法理解问题发生的位置。任何人都可以给我解决这个问题的建议