| 1. |
What Are The Important Steps When You Are Partitioning Table? |
|
Answer» Don’t over PARTITION the data with too small partitions, it’s overhead to the namenode. if dynamic partition, atleast ONE STATIC partition should exist and set to strict mode by USING GIVEN commands. SET hive.exec.dynamic.partition = true; first load data into nonpartitioned table, then load such data into partitioned table. It’s not possible to load data from local to partitioned table. Don’t over partition the data with too small partitions, it’s overhead to the namenode. if dynamic partition, atleast one static partition should exist and set to strict mode by using given commands. SET hive.exec.dynamic.partition = true; first load data into nonpartitioned table, then load such data into partitioned table. It’s not possible to load data from local to partitioned table. |
|