Hive动态分区

在动态分区中, 表中存在分区列的值。因此, 不需要手动传递分区列的值。

  • 首先, 选择我们要在其中创建表的数据库。
hive> use show;

Hive动态分区

文章图片
  • 使用以下命令启用动态分区:-
hive> set hive.exec.dynamic.partition=true; hive> set hive.exec.dynamic.partition.mode=nonstrict;

  • 创建一个虚拟表来存储数据。
hive> create table stud_demo(id int, name string, age int, institute string, course string) row format delimitedfields terminated by ', ';

Hive动态分区

文章图片
  • 现在, 将数据加载到表中。
hive> load data local inpath '/home/codegyani/hive/student_details' into table stud_demo;

Hive动态分区

文章图片
  • 使用以下命令创建分区表:-
hive> create table student_part (id int, name string, age int, institute string) partitioned by (course string)row format delimitedfields terminated by ', ';

Hive动态分区

文章图片
  • 现在, 将虚拟表的数据插入分区表。
hive> insert into student_partpartition(course)select id, name, age, institute, coursefrom stud_demo;

Hive动态分区

文章图片
Hive动态分区

文章图片
  • 在下面的屏幕截图中, 我们可以看到表student_part分为两类。
Hive动态分区

文章图片
  • 让我们使用以下命令检索表的全部数据:-
hive> select * from student_part;

Hive动态分区

文章图片
  • 现在, 尝试使用以下命令检索基于分区列的数据:-
hive> select * from student_part where course= "java ";

Hive动态分区

文章图片
【Hive动态分区】在这种情况下, 我们不会检查整个数据。因此, 这种方法改善了查询响应时间。
  • 我们还使用以下命令来检索另一个分区数据集的数据:-
hive> select * from student_part where course= "hadoop";

Hive动态分区

文章图片

    推荐阅读