1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| 2019-03-19 11:18:23,953 INFO client.RMProxy: Connecting to ResourceManager at hadoop01/172.18.0.7:8032 2019-03-19 11:18:24,381 INFO mapreduce.JobResourceUploader: Disabling Erasure Coding for path: /tmp/hadoop-yarn/staging/root/.staging/job_1552986653954_0001 2019-03-19 11:18:24,659 INFO input.FileInputFormat: Total input files to process : 1 2019-03-19 11:18:25,095 INFO mapreduce.JobSubmitter: number of splits:1 2019-03-19 11:18:25,129 INFO Configuration.deprecation: yarn.resourcemanager.system-metrics-publisher.enabled is deprecated. Instead, use yarn.system-metrics-publisher.enabled 2019-03-19 11:18:25,208 INFO mapreduce.JobSubmitter: Submitting tokens for job: job_1552986653954_0001 2019-03-19 11:18:25,210 INFO mapreduce.JobSubmitter: Executing with tokens: [] 2019-03-19 11:18:25,368 INFO conf.Configuration: resource-types.xml not found 2019-03-19 11:18:25,368 INFO resource.ResourceUtils: Unable to find 'resource-types.xml'. 2019-03-19 11:18:25,797 INFO impl.YarnClientImpl: Submitted application application_1552986653954_0001 2019-03-19 11:18:25,836 INFO mapreduce.Job: The url to track the job: http://hadoop01:8088/proxy/application_1552986653954_0001/ 2019-03-19 11:18:25,837 INFO mapreduce.Job: Running job: job_1552986653954_0001 2019-03-19 11:18:33,990 INFO mapreduce.Job: Job job_1552986653954_0001 running in uber mode : false 2019-03-19 11:18:33,991 INFO mapreduce.Job: map 0% reduce 0% 2019-03-19 11:18:39,067 INFO mapreduce.Job: map 100% reduce 0% 2019-03-19 11:18:45,106 INFO mapreduce.Job: map 100% reduce 100% 2019-03-19 11:18:46,124 INFO mapreduce.Job: Job job_1552986653954_0001 completed successfully 2019-03-19 11:18:46,227 INFO mapreduce.Job: Counters: 54 File System Counters FILE: Number of bytes read=46852 FILE: Number of bytes written=537641 FILE: Number of read operations=0 FILE: Number of large read operations=0 FILE: Number of write operations=0 HDFS: Number of bytes read=150665 HDFS: Number of bytes written=35324 HDFS: Number of read operations=8 HDFS: Number of large read operations=0 HDFS: Number of write operations=2 HDFS: Number of bytes read erasure-coded=0 Job Counters Launched map tasks=1 Launched reduce tasks=1 Data-local map tasks=1 Total time spent by all maps in occupied slots (ms)=3129 Total time spent by all reduces in occupied slots (ms)=3171 Total time spent by all map tasks (ms)=3129 Total time spent by all reduce tasks (ms)=3171 Total vcore-milliseconds taken by all map tasks=3129 Total vcore-milliseconds taken by all reduce tasks=3171 Total megabyte-milliseconds taken by all map tasks=3204096 Total megabyte-milliseconds taken by all reduce tasks=3247104 Map-Reduce Framework Map input records=2814 Map output records=21904 Map output bytes=234035 Map output materialized bytes=46852 Input split bytes=96 Combine input records=21904 Combine output records=2981 Reduce input groups=2981 Reduce shuffle bytes=46852 Reduce input records=2981 Reduce output records=2981 Spilled Records=5962 Shuffled Maps =1 Failed Shuffles=0 Merged Map outputs=1 GC time elapsed (ms)=111 CPU time spent (ms)=2340 Physical memory (bytes) snapshot=651853824 Virtual memory (bytes) snapshot=5483622400 Total committed heap usage (bytes)=1197998080 Peak Map Physical memory (bytes)=340348928 Peak Map Virtual memory (bytes)=2737307648 Peak Reduce Physical memory (bytes)=311504896 Peak Reduce Virtual memory (bytes)=2746314752 Shuffle Errors BAD_ID=0 CONNECTION=0 IO_ERROR=0 WRONG_LENGTH=0 WRONG_MAP=0 WRONG_REDUCE=0 File Input Format Counters Bytes Read=150569 File Output Format Counters Bytes Written=35324
|