I am inserting entries using the left join in Hive. When I set the request to limit 1, but for all requests, the records are stuck at 99% work.
The request is executed below
Insert overwrite table tablename select a.id , b.name from a left join b on a.id = b.id limit 1;
But it is not
Insert overwrite table tablename select table1.id , table2.name from table1 left join table2 on table1.id = table2.id;
I increased the number of gearboxes, but it still doesn't work.
source
share