Hello all,
I'm running into an issue with Hive when it's doing small Parquet file
merges. It looks like it's been fixed by this patch: https://github.com/
apache/hive/commit/d68630b6ed25884a76030a9073cd864032ab85c2 (the issue was
a null pointer exception at that line).
Unfortunately, the bug is b
I created a ORC table A:
*create table A (id string i, age int, num_children int);*
*alter table A set fileformat orc;*
*insert into table A select * from B cluster by age;*
But, When I run query,
*select id from A where age=60;*
The data read from HDFS is almost equal to the size of A. I expect