0
我試圖使用Presto將數據插入表中。PrestoDB:插入失敗,出現空錯誤信息
我正在做的事情,我在蜂巢創建了一個表,這是儘可能簡單一個簡單的插入(存儲爲文本):
CREATE TABLE `stam`(
`name` string)
ROW FORMAT SERDE
'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe'
STORED AS INPUTFORMAT
'org.apache.hadoop.mapred.TextInputFormat'
OUTPUTFORMAT
'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat';
當我嘗試插入或者使用下面的查詢:
insert into stam values('test');
insert into stam select 'test' from another_table;
都失敗 - 我得到以下錯誤:
Query 20141128_150952_00004_vaf59 failed: null
我什麼也看不到在日誌中,並我不知道如何調試這些。
任何想法將不勝感激。