I’m still looking for better solutions but I do have one option. The hive code below will rebuild the underlying table into a consolidated file.
INSERT OVERWRITE TABLE <table>
select * from <table>;
Until I find a better solution, I plan on executing this script once a week on the tables that we are loading.