📅  最后修改于: 2020-12-03 03:48:32             🧑  作者: Mango
Hive中的分区意味着根据特定列的值(例如日期,课程,城市或国家/地区)将表格分为几个部分。分区的优势在于,由于数据存储在切片中,因此查询响应时间变得更快。
我们知道Hadoop用于处理大量数据,因此始终需要使用最佳方法来处理它。 Hive中的分区就是最好的例子。
假设我们有一个在一所大学学习的1000万学生的数据。现在,我们必须获取特定课程的学生。如果使用传统方法,则必须遍历整个数据。这导致性能下降。在这种情况下,我们可以采用更好的方法,即在Hive中进行分区,然后根据特定列在不同的数据集中划分数据。
Hive中的分区可以通过两种方式执行:
在静态或手动分区中,需要在将数据加载到表中时手动传递已分区列的值。因此,数据文件不包含分区列。
静态分区示例
hive> use test;
hive> create table student (id int, name string, age int, institute string)
partitioned by (course string)
row format delimited
fields terminated by ',';
hive> describe student;
hive> load data local inpath '/home/codegyani/hive/student_details1' into table student
partition(course= "java");
在这里,我们根据课程对研究所的学生进行划分。
hive> load data local inpath '/home/codegyani/hive/student_details2' into table student
partition(course= "hadoop");
在下面的屏幕截图中,我们可以看到学生桌分为两类。
hive> select * from student;
hive> select * from student where course="java";
在这种情况下,我们不会检查整个数据。因此,这种方法改善了查询响应时间。
hive> select * from student where course= "hadoop";