[root@mastera0 conf]# chown hadoop. /usr/local/hive-0.13.1-cdh5.3.6/ -R [root@mastera0 conf]# su - hadoop Last login: Fri Apr 7 10:57:07 CST 2017 from 172.25.0.250 on pts/0 [hadoop@mastera0 ~]$ cat test2.txt 1 2 3 4 [hadoop@mastera0 ~]$ hive 17/04/07 13:15:00 WARN conf.HiveConf: DEPRECATED: hive.metastore.ds.retry.* no longer has any effect. Use hive.hmshandler.retry.* instead
Logging initialized using configuration in file:/usr/local/hive-0.13.1-cdh5.3.6/conf/hive-log4j.properties hive> show tables; OK Time taken: 0.493 seconds hive> create table booboo (id tinyint,name varchar(20)); OK Time taken: 0.576 seconds hive> show tables; OK booboo Time taken: 0.023 seconds, Fetched: 1 row(s) hive> create table test2 (id int) row format delimited fields terminated by '\t'; OK Time taken: 0.073 seconds hive> load data local inpath 'test2.txt' into table test2; Loading data to table default.test2 Table default.test2 stats: [numFiles=1, numRows=0, totalSize=8, rawDataSize=0] OK Time taken: 0.216 seconds hive> select * from test2; OK 1 2 3 4 Time taken: 0.065 seconds, Fetched: 4 row(s) hive> select id from test2; Total jobs = 1 Launching Job 1 out of 1 Number of reduce tasks is set to 0 since there's no reduce operator Starting Job = job_1491538637923_0001, Tracking URL = http://mastera0.example.com:8088/proxy/application_1491538637923_0001/ Kill Command = /hadoop/hadoop-2.5.0-cdh5.3.6/bin/hadoop job -kill job_1491538637923_0001 Hadoop job information for Stage-1: number of mappers: 1; number of reducers: 0 2017-04-07 14:06:51,861 Stage-1 map = 0%, reduce = 0% 2017-04-07 14:06:58,219 Stage-1 map = 100%, reduce = 0%, Cumulative CPU 1.04 sec MapReduce Total cumulative CPU time: 1 seconds 40 msec Ended Job = job_1491538637923_0001 MapReduce Jobs Launched: Stage-Stage-1: Map: 1 Cumulative CPU: 1.04 sec HDFS Read: 221 HDFS Write: 8 SUCCESS Total MapReduce CPU Time Spent: 1 seconds 40 msec OK 1 2 3 4 Time taken: 16.543 seconds, Fetched: 4 row(s)
hive> create table stu2 (id int); OK Time taken: 0.072 seconds hive> load data local inpath 'stu.txt' into table stu2; Loading data to table default.stu2 Table default.stu2 stats: [numFiles=1, numRows=0, totalSize=8, rawDataSize=0] OK Time taken: 0.184 seconds hive> select * from stu2; OK 1 2 3 4 Time taken: 0.055 seconds, Fetched: 4 row(s) hive> drop table stu2; OK Time taken: 0.123 seconds hive> dfs -ls /; Found 3 items drwxr-xr-x - hadoop supergroup 0 2017-04-05 15:22 /booboo drwxrwx--- - hadoop supergroup 0 2017-04-07 13:17 /tmp drwxr-xr-x - hadoop supergroup 0 2017-04-07 12:20 /user
hive> dfs -cat /user/hive/warehouse/test2/test2.txt; 1 2 3 4 hive> exit;
|