Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Q: How can I load data using Unicode control characters as delimiters?

The first parameter to ! PigStorage is the dataset name, the second is a regular expression to describe the delimiter. We used `String.split(regex, -1)` to extract fields from lines. See java.util.regex.Pattern for more information on the way to use special characters in regex.

...