Hive
刚刚下班
这个作者很懒,什么都没留下…
展开
-
hive与hbase的兼容性问题
Hive命令行查询表时的错误信息:(hbase-0.98.X)(hive-0.12.0)Failed with exception java.io.IOException:java.lang.ClassCastException: org.apache.hadoop.hbase.client.Result cannot be cast to org.apache.hadoop.io.Writa原创 2014-06-28 17:05:11 · 2998 阅读 · 1 评论 -
java通过jdbc驱动连接hive
1,hive首先要起动远程服务接口,命令:nohup hive –service hiveserver & 2,java工程中导入相应的需求jar包,列表如下:antlr-runtime-3.0.1.jarhive-exec-0.7.1.jarhive-jdbc-0.7.1.jarhive-metastore-0.7.1.jarhive-service原创 2014-06-28 17:58:33 · 4927 阅读 · 0 评论 -
hive原生和复合类型的数据加载和使用
hive原生和复合类型的数据加载和使用原创 2014-07-19 17:58:22 · 10177 阅读 · 0 评论 -
hive和hbase整合
整合后hive的启动方法1 单节点启动 hive -hiveconf hbase.master=master:600002 集群启动 hive -hiveconf hbase.zookeeper.quorum=node1,node23.在hive中创建hbase识别的表的方法create table hbase_table_1(key int,value string, value原创 2014-06-28 17:29:24 · 877 阅读 · 0 评论 -
Hive全排序
全排序Hive的排序关键字是SORT BY,它有意区别于传统数据库的ORDER BY也是为了强调两者的区别–SORT BY只能在单机范围内排序。考虑以下表定义:CREATE TABLE if not exists t_order( id int, -- 订单编号 sale_id int, -- 销售ID customer_id int, -- 客户ID product _id int,转载 2014-09-20 14:00:21 · 765 阅读 · 0 评论 -
Hive:Failed with exception Wrong file format. Please check the file's format.
2012-09-11 20:32:26| 分类: 默认分类|举报|字号 订阅 指定存储格式为 Sequencefile 时,把txt格式的数据导入表中,hive 会报文件格式错(Failed with exception Wrong file format. Please check the file's format.)。 create table test1 (id int, na原创 2014-11-28 09:24:13 · 7513 阅读 · 0 评论