Store data in SEQUENCEFILE if the data needs to be compressed. You can import text files compressed with Gzip or Bzip2 directly into a table stored as TextFile. The compression will be detected automatically and the file will be decompressed on-the-fly during query execution.
CREATE TABLE raw_sequence (line STRING)
STORED AS SEQUENCEFILE;