0

以下のハイブクエリを実行しています。mapreduce が完了すると、データが挿入されていないことがわかります。

create table t_123 as
  select  * from
(
  select * from t1 union all
  select * from t2 union all
  select * from t3   
) X

しかし、以下のように選択クエリを実行すると、結果が得られます。t1、t2、t3 のデータ型は同じです。最後に、次のステートメントを取得します。

"numFiles = 27 , numRows = 0 and totalSize = 34567...."

select * from t1 union all
select * from t2 union all
select * from t3 

問題になる可能性のある考え。TEZを使用してこれを実行しています。

4

0 に答える 0