欢迎来到天天文库
浏览记录
ID:43463649
大小:28.93 KB
页数:6页
时间:2019-10-03
《Hive配置和基本操作》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验报告(四)《大数据存储》实验报告实验名称:Hive操作姓名/学号:日期:实验环境:操作系统:LinuxHadoop版本:2.x版本HBase版本:1.1.1或以上Zookeeper版本:3.4.6或以上JDK版本:1.6或以上版本JavaIDE:EclipseHIVE版本:实验内容与完成情况:一:Hive的配置hive的安装十分简单,只需要在一台服务器上部署即可。上传hive安装包,解压缩,将其配入环境变量。解压Hive的Jar包后,进入conf目录,修改配置文件:cphive-env.sh.templatehive-env.s
2、hcphive-default.xml.templatehive-default.xmlcphive-log4j.properties.templatehive-log4j.propertiescphive-exec-log4j.properties.templatehive-exec-log4j.properties在hive-env.sh文件中配置hadoop的home目录。新建一个hive-site.xml文件并增加内容hive.exec.local.scratch
3、dir/usr/local/hive/iotmphive.exec.scratchdir/tmp/hivehive.server2.logging.operation.log.location/usr/local/hive/iotmphive.
4、downloaded.resources.dir/usr/local/hive/iotmphive.querylog.location/usr/local/hive/iotmphive.metastore.warehouse.dir/user/hive/warehouse
5、roperty>javax.jdo.option.ConnectionDriverNamecom.mysql.jdbc.Driverjavax.jdo.option.ConnectionURLjdbc:mysql://localhost:3306/hive?characterEncoding=UTF-8javax.jdo.opt
6、ion.ConnectionUserNamehivejavax.jdo.option.ConnectionPasswordhivehive.metastore.localfalsehive.metastore.uris7、>thrift://localhost:9083二:Hive的基本操作创建表:hive>CREATETABLEpokes(fooINT,barSTRING); Createsatablecalledpokeswithtwocolumns,thefirstbeinganintegerandtheotherastring创建一个新表,结构与其他一样hive>createtablenew_tablelikerecords;创建分区表:hive>createt
7、>thrift://localhost:9083
8、ablelogs(tsbigint,linestring)partitionedby(dtString,countryString);加载分区表数据:hive>loaddatalocalinpath'/home/hadoop/inpu
此文档下载收益归作者所有