In this post let us learn how to drop partition in hive using examples
Partition in hive
Hive table can have one or multiple partition keys by which the query performance has been improved. By including the partition keys in our query , we can actually achieve the query optimization.
External and internal table in hive
Two types of tables available in hive are external and internal
For external tables , table properties need to be changed before dropping partitions .
Drop partition in hive
We can drop the respective partition of the external table using the following command .
Resetting the location
We can even set the partition to the new location using the following command .
Dropping the range of partition in hive
For dropping range of data , we can try like below.
Dropping all the partitions
Following one drop all the partitions
Reference
https://cwiki.apache.org/confluence/display/hive/languagemanual+ddl#LanguageManualDDL-DropPartitions