脚踏实地、勇往直前!
全部博文(1005)
发布时间:2017-12-07 11:26:32
平时我们在将外部文件导入到hive表的过程中,要是原文件包含有中文的,导入就经常会出现乱码,这个时候我们可以事先把文件编码格式修改为utf8后再导入.1.查看文件的当前的编码[hadoop@master exter_data]$ file --mime-encoding provcode.TXTprovcode.TXT: iso-8859-12.转换为utf8格式iconv.........【阅读全文】
发布时间:2014-11-12 14:38:26
在hbase中创建表后,我们只能在hbase shell中使用scan查询数据,这对于熟悉SQL的使用者不怎么习惯,不过我们可以在hive中创建外部表来访问hbase表中的数据,例子如下:1.这里hbase中的表oss_user_label_action_data已经存在=> #hbase(main):067:0> scan 'oss_user_label_action_data',L.........【阅读全文】
发布时间:2014-10-30 10:48:09
导出到本地系统将hive表数据导出到os目录/home/hadoop1/file/from_hive,导出后会在tb_emp_info目录下生成文件名为000000_0的文件,好像不能指定具体的文件名导出hive> insert overwrite local directory '/home/hadoop1/file/tb_emp_info' select * from tb_emp_info;导出到hdfs系统hive> insert overwrite dire.........【阅读全文】
发布时间:2014-10-28 17:36:13
下面是一个本地数据文件加载到hive表中的例子1.在hxl数据库下创建表hive> create table tb_emp_info > (id int, > name string, > age int, > tel string) > ROW FORMAT DELIMITED > FIEL.........【阅读全文】