Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am very new to PIG and I am having what feels like a very basic problem. I have a line of code that reads:

A = load 'Sites/trial_clustering/shortdocs/*'
      AS (word1:chararray, word2:chararray, word3:chararray, word4:chararray);

where each file is basically a line of 4 comma separated words. However PIG is not splitting this into the 4 words. When I do dump A, I get: (Money, coins, loans, debt,,,) I have tried googling and I cannot seem to find what format my file needs to be in so that PIG will interpret it properly. Please help!

share|improve this question

1 Answer

Your problem is that Pig, by default, loads files delimited by tab, not comma. To fix this, you should specify PigStorage to load by comma by doing:

A = LOAD '...' USING PigStorage(',') AS (...);
share|improve this answer
Thank you! This worked! Now I have a new question, how do I deal with file delimited by newline? I have tried – YuliaPro Nov 14 '11 at 17:07
Thank you this worked. Now I have a new question; I cannot seem to make this work with a file delimited by new lines, A = LOAD '...' USING PigStorage('\n') AS (...); does not work! and neither does A = LOAD '...' USING PigStorage('\\n') AS (...); Thank you! – YuliaPro Nov 14 '11 at 17:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.