为非结构化数据创建配置单元 table

creation a hive table for unstructed data

如何为以下数据创建配置单元 table..??

3.94.78.5 - 69827    [15/Sep/2013:23:58:36 +0100] "GET /KBDOC-00033.html HTTP/1.0"
19.38.140.62 - 21475 [15/Sep/2013:23:58:34 +0100] "GET /KBDOC-00033.html HTTP/1.0"
19.38.140.62 - 21475 [15/Sep/2013:23:58:34 +0100] "GET /KBDOC-00033.html HTTP/1.0"

我已经找到我上面问题的答案了,谢谢

create table weblogs4(id String,sal int,time string,gets String)
 ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.RegexSerDe'
 WITH SERDEPROPERTIES ('input.regex'='^(\S+)\s+\S+\s+(\S+)\s+.(\S+\s+\S+).\s+.(\S+\s+\S+\s+\S+).');