Alex的Hadoop菜鸟教程:第9课Sqoop1从Hbase或者Hive导出mysql(三)
2015-01-27 18:09:53
·
作者:
·
浏览: 82
input records=2
Map output records=2
Input split bytes=144
Spilled Records=0
Failed Shuffles=0
Merged Map outputs=0
GC time elapsed (ms)=97
CPU time spent (ms)=1360
Physical memory (bytes) snapshot=167555072
Virtual memory (bytes) snapshot=684212224
Total committed heap usage (bytes)=148897792
File Input Format Counters
Bytes Read=0
File Output Format Counters
Bytes Written=0
14/12/05 08:50:10 INFO mapreduce.ExportJobBase: Transferred 166 bytes in 27.0676 seconds (6.1328 bytes/sec)
14/12/05 08:50:10 INFO mapreduce.ExportJobBase: Exported 2 records.
注意
在这段日志中有这样一句话
14/12/05 08:49:46 INFO mapreduce.Job: The url to track the job: http://hadoop01:8088/proxy/application_1406097234796_0037/
意思是你可以用
浏览器访问这个地址去看下任务的执行情况,如果你的任务长时间卡主没结束就是出错了,可以去这个地址查看详细的错误日志
查看结果
mysql> select * from employee;
+--------+----+-------+
| rowkey | id | name |
+--------+----+-------+
| 1 | 1 | peter |
| 2 | 2 | paul |
+--------+----+-------+
2 rows in set (0.00 sec)
mysql>
导入成功