I have a partitioned table - with 201 partitions. I need to find latest partition in this table and use it to post process my data. The query to find list of all partitions is :
use db;
show partitions table_name;
I need a query to find the latest of these partitions. The partitions are in format
ingest_date=2016-03-09
I tried using max() which gave me a wrong result. I do not want to traverse through entire table by doing
select max(ingest_date) from db.table_name;
This would give me the expected output.. but kill the whole point of having partitions in the 1st place.
Is there a more efficient query to get the latest partition for HIve table ?