根据to the docs,在Presto中创建表格
CREATE TABLE orders (
orderkey bigint,
orderstatus varchar,
totalprice double,
orderdate date
)
WITH (format = 'ORC')
您可以指定format = 'xxx'
。除了'ORC',我知道有一个TEXTFILE
。我很好奇format
有哪些其他选项?你有没有理由不使用'ORC'(我认为这是默认的)。
答案 0 :(得分:3)
对于Hive连接器,支持的文件格式列在Hive connector documentation。
中 ORC是不是默认(hive.storage-format
连接器配置属性在CREATE TABLE
中未指定时默认格式,并且该设置当前默认为RCBINARY
),尽管它& #39;一般值得推荐的选择。