Hive的order by和sort by

本文介绍Hive SQL的基本操作,包括创建表、加载数据、使用order by和sort by进行排序,并详细讲解了如何创建、查看、重建及删除索引。通过这些步骤,可以有效地管理和优化Hive中的数据查询。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

0.创建数据库

  hive>create table hive.test(id int);

  hive>load data local inpath '/home/hyxy/test_order.txt' into table hive.test;

1.order by 全局排序

  hive>select * from hive.test order by id;

2.sort by 局部排序(reduce)

  hive>set mapreduce.job.reduces=3;

  hive>select * from hive.test sort by id;

索引

  1.创建索引

    hive>create index test_id_index on table hive.test(id) as 'org.apache.hadoop.hive.ql.index.compact.CompactIndexHandler' with deferred rebuild;

  2.默认查询索引表:在hive数据库的INDEX_TABLE下自动生成索引表

    hive>select * from hive.hive__test_test_test_id_index__;

    说明:默认生成的索引表无数据,空白状态;

    索引表有三个字段:  

      id:表示index字段

      _bucketname:表示数据所在的location位置

      _offsets:表示当前数据所处的偏移量

  3.重构index表,目的生成index数据

    hive>alter index test_id_index on hive.test rebuild;

    hive>select * from hive.hive__test_test_id_index__;

  4.删除索引

    hive>drop index stocks_id_index on table stocks;

转载于:https://www.cnblogs.com/lyr999736/p/9473985.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值