-
Notifications
You must be signed in to change notification settings - Fork 129
/
CHANGES.txt
1560 lines (1049 loc) · 58.9 KB
/
CHANGES.txt
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Hadoop MapReduce Change Log
Trunk (unreleased changes)
INCOMPATIBLE CHANGES
NEW FEATURES
IMPROVEMENTS
OPTIMIZATIONS
BUG FIXES
MAPREDUCE-1707. TaskRunner can get NPE in getting ugi from TaskTracker.
(Vinod Kumar Vavilapalli)
Release 0.21.0 - Unreleased
INCOMPATIBLE CHANGES
MAPREDUCE-516. Fix the starvation problem in the Capacity Scheduler
when running High RAM Jobs. (Arun Murthy via yhemanth)
MAPREDUCE-358. Change org.apache.hadoop.examples. AggregateWordCount
and org.apache.hadoop.examples.AggregateWordHistogram to use new
mapreduce api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-245. Change Job and jobcontrol classes to use the List interface
rather than ArrayList in APIs. (Tom White via cdouglas)
MAPREDUCE-766. Enhanced list-blacklisted-trackers to display reasons
for blacklisting a node. (Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-817. Add a cache for retired jobs with minimal job info and
provide a way to access history file url. (sharad)
MAPREDUCE-711. Moved Distributed Cache from Common to Map/Reduce
project. (Vinod Kumar Vavilapalli via yhemanth)
MAPREDUCE-895. Per the contract elucidated in HADOOP-6201, throw
FileNotFoundException from FileSystem::listStatus rather than returning
null. (Jakob Homan via cdouglas)
MAPREDUCE-479. Provide full task id to map output servlet rather than the
reduce id, only. (Jiaqi Tan via cdouglas)
MAPREDUCE-873. Simplify job recovery. Incomplete jobs are resubmitted on
jobtracker restart. Removes a public constructor in JobInProgress. (sharad)
HADOOP-6230. Moved process tree and memory calculator related classes from
Common to Map/Reduce. (Vinod Kumar Vavilapalli via yhemanth)
MAPREDUCE-157. Refactor job history APIs and change the history format to
JSON. (Jothi Padmanabhan via sharad)
MAPREDUCE-849. Rename configuration properties. (Amareshwari Sriramadasu
via sharad)
MAPREDUCE-1287. Only call the partitioner with more than one reducer.
(cdouglas)
MAPREDUCE-1385. Use the new UserGroupInformation from HADOOP-6299.
(ddas via omalley)
MAPREDUCE-1493. Authorization for job-history pages. (vinodkv)
MAPREDUCE-1644. Remove Sqoop contrib module. (Aaron Kimball via cdouglas)
NEW FEATURES
MAPREDUCE-706. Support for FIFO pools in the fair scheduler.
(Matei Zaharia)
MAPREDUCE-546. Provide sample fair scheduler config file in conf/ and use
it by default if no other config file is specified. (Matei Zaharia)
MAPREDUCE-551. Preemption support in the Fair Scheduler. (Matei Zaharia)
HADOOP-5887. Sqoop should create tables in Hive metastore after importing
to HDFS. (Aaron Kimball via tomwhite)
MAPREDUCE-567. Add a new example MR that always fails. (Philip Zeyliger
via tomwhite)
MAPREDUCE-211. Provides ability to run a health check script on the
tasktracker nodes and blacklist nodes if they are unhealthy.
(Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-637. Add an example, distbbp, which able to compute the n th bit
of Pi for some large n. (szetszwo)
MAPREDUCE-532. Provide a way to limit the number of used slots
per queue in the capacity scheduler.
(Rahul Kumar Singh via yhemanth)
MAPREDUCE-467. Provide ability to collect statistics about total tasks
and succeeded tasks in different time windows. (sharad)
MAPREDUCE-740. Log a job-summary at the end of a job, while allowing it
to be configured to use a custom appender if desired. (acmurthy)
MAPREDUCE-705. User-configurable quote and delimiter characters for Sqoop
records and record reparsing. (Aaron Kimball via tomwhite)
MAPREDUCE-814. Provide a way to configure completed job history files
to be on HDFS. (sharad)
MAPREDUCE-800. MRUnit should support the new API. (Aaron Kimball via
tomwhite)
MAPREDUCE-798. MRUnit should be able to test a succession of MapReduce
passes. (Aaron Kimball via tomwhite)
MAPREDUCE-768. Provide an option to dump jobtracker configuration in JSON
format to standard output. (V.V.Chaitanya Krishna via yhemanth)
MAPREDUCE-824. Add support for a hierarchy of queues in the capacity
scheduler. (Rahul Kumar Singh via yhemanth)
MAPREDUCE-751. Add Rumen, a tool for extracting statistics from job tracker
logs and generating job traces for simulation and analysis. (Dick King via
cdouglas)
MAPREDUCE-938. Postgresql support for Sqoop. (Aaron Kimball via tomwhite)
MAPREDUCE-830. Add support for splittable compression to TextInputFormats.
(Abdul Qadeer via cdouglas)
MAPREDUCE-861. Add support for hierarchical queues in the Map/Reduce
framework. (Rahul Kumar Singh via yhemanth)
MAPREDUCE-776. Add Gridmix, a benchmark processing Rumen traces to simulate
a measured mix of jobs on a cluster. (cdouglas)
MAPREDUCE-862. Enhance JobTracker UI to display hierarchical queues.
(V.V.Chaitanya Krishna via yhemanth)
MAPREDUCE-777. Brand new apis to track and query jobs as a
replacement for JobClient. (Amareshwari Sriramadasu via acmurthy)
MAPREDUCE-775. Add native and streaming support for Vertica as an input
or output format taking advantage of parallel read and write properties of
the DBMS. (Omer Trajman via ddas)
MAPREDUCE-679. XML-based metrics as JSP servlet for JobTracker.
(Aaron Kimball via tomwhite)
MAPREDUCE-980. Modify JobHistory to use Avro for serialization. (cutting)
MAPREDUCE-728. Add Mumak, a Hadoop map/reduce simulator. (Arun C Murthy,
Tamas Sarlos, Anirban Dasgupta, Guanying Wang, and Hong Tang via cdouglas)
MAPREDUCE-1383. Automates fetching of delegation tokens in File*Formats
Distributed Cache and Distcp. Also, provides a config
mapreduce.job.hdfs-servers that the jobs can populate with a comma
separated list of namenodes. The job client automatically fetches
delegation tokens from those namenodes. (Boris Shkolnik via ddas)
MAPREDUCE-698. Per-pool task limits for the fair scheduler.
(Kevin Peterson via matei)
MAPREDUCE-1017. Compression and output splitting for Sqoop.
(Aaron Kimball via tomwhite)
MAPREDUCE-1026. Does mutual authentication of the shuffle
transfers using a shared JobTracker generated key.
(Boris Shkolnik via ddas)
MAPREDUCE-1168. Export data to databases via Sqoop. (Aaron Kimball via
tomwhite)
MAPREDUCE-744. Introduces the notion of a public distributed cache.
(Devaraj Das)
MAPREDUCE-1338. Introduces the notion of token cache using which
tokens and secrets can be sent by the Job client to the JobTracker.
(Boris Shkolnik via ddas)
HDFS-503. This patch implements an optional layer over HDFS that
implements offline erasure-coding. It can be used to reduce the
total storage requirements of HDFS. (dhruba)
MAPREDUCE-1432. Adds hooks in the jobtracker and tasktracker
for loading the tokens in the user's ugi. This is required
for the copying of files from the hdfs. (ddas)
MAPREDUCE-1335. Adds SASL Kerberos/Digest authentication in MapReduce.
(Kan Zhang via ddas)
MAPREDUCE-1464. Makes a compatible change in JobTokenIdentifier to
account for HADOOP-6510. (Jitendra Nath Pandey via ddas)
MAPREDUCE-1433. Add a delegation token for MapReduce. (omalley)
MAPREDUCE-1341. Sqoop should have an option to create hive tables and
skip the table import step. (Leonid Furman via tomwhite)
MAPREDUCE-1307. Introduces the Job level ACLs feature.
(Vinod Kumar Vavilapalli via ddas)
MAPREDUCE-1430. JobTracker automatically renews delegation tokens for jobs.
(Boris Shkolnik via ddas)
MAPREDUCE-1455. Introduces job-level authorization for mapreduce servlets.
(Ravi Gummadi via vinodkv)
MAPREDUCE-1446. Sqoop should support CLOB and BLOB datatypes.
(Aaron Kimball via tomwhite)
IMPROVEMENTS
MAPREDUCE-816. Rename "local" mysql import to "direct" in Sqoop.
(Aaron Kimball via matei)
HADOOP-5967. Sqoop should only use a single map task. (Aaron Kimball via
tomwhite)
HADOOP-5968. Sqoop should only print a warning about mysql import speed
once. (Aaron Kimball via tomwhite)
MAPREDUCE-463. Makes job setup and cleanup tasks as optional.
(Amareshwari Sriramadasu via sharad)
MAPREDUCE-502. Allow jobtracker to be configured with zero completed jobs
in memory. (Amar Kamat via sharad)
MAPREDUCE-416. Moves the history file to a "done" folder whenever a job
completes. (Amar Kamat via ddas)
MAPREDUCE-646. Increase srcfilelist replication number in dictcp job.
(Ravi Gummadi via szetszwo)
HADOOP-6106. Updated hadoop-core and test jars from hudson trunk
build #12. (Giridharan Kesavan)
MAPREDUCE-642. A option to distcp that allows preserving the full
source path of a file in the specified destination directory.
(Rodrigo Schmidt via dhruba)
MAPREDUCE-686. Move TestSpeculativeExecution.Fake* into a separate class
so that it can be used by other tests. (Jothi Padmanabhan via sharad)
MAPREDUCE-625. Modify TestTaskLimits to improve execution time.
(Jothi Padmanabhan via sharad)
MAPREDUCE-465. Deprecate o.a.h.mapred.lib.MultithreadedMapRunner and add
test for o.a.h.mapreduce.lib.MultithreadedMapper.
(Amareshwari Sriramadasu via sharad)
MAPREDUCE-692. Make Hudson run Sqoop unit tests.
(Aaron Kimball via tomwhite)
MAPREDUCE-701. Improves the runtime of the TestRackAwareTaskPlacement
by making it a unit test. (Jothi Padmanabhan via ddas)
MAPREDUCE-674. Sqoop should allow a "where" clause to avoid having to
export entire tables. (Kevin Weil via tomwhite)
MAPREDUCE-675. Sqoop should allow user-defined class and package names.
(Aaron Kimball via tomwhite)
MAPREDUCE-371. Change KeyFieldBasedComparator and KeyFieldBasedPartitioner
to use new api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-713. Sqoop has some superfluous imports. (Aaron Kimball via
tomwhite)
MAPREDUCE-623. Resolve javac warnings in mapreduce. (Jothi Padmanabhan
via sharad)
MAPREDUCE-655. Change KeyValueLineRecordReader and KeyValueTextInputFormat
to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-632. Merge TestCustomOutputCommitter with
TestCommandLineJobSubmission. (Jothi Padmanabhan via sharad)
MAPREDUCE-710. Sqoop should read and transmit passwords in a more secure
manner. (Aaron Kimball via tomwhite)
MAPREDUCE-627. Improves execution time of TestTrackerBlacklistAcrossJobs.
(Jothi Padmanabhan via ddas)
MAPREDUCE-630. Improves execution time of TestKillCompletedJob.
(Jothi Padmanabhan via ddas)
MAPREDUCE-626. Improves the execution time of TestLostTracker.
(Jothi Padmanabhan via ddas)
MAPREDUCE-353. Makes the shuffle read and connection timeouts
configurable. (Ravi Gummadi via ddas)
MAPREDUCE-739. Allow relative paths to be created in archives. (Mahadev
Konar via cdouglas)
MAPREDUCE-772. Merge HADOOP-4010 changes to LineRecordReader into mapreduce
package. (Abdul Qadeer via cdouglas)
MAPREDUCE-785. Separate sub-test of TestReduceFetch to be included in
MR-670. (Jothi Padmanabhan via cdouglas)
MAPREDUCE-784. Modify TestUserDefinedCounters to use LocalJobRunner
instead of MiniMR. (Jothi Padmanabhan via sharad)
HADOOP-6160. Fix releaseaudit target to run on specific directories.
(gkesavan)
MAPREDUCE-782. Use PureJavaCrc32 in SpillRecord. (Todd Lipcon via
szetszwo)
MAPREDUCE-369. Change org.apache.hadoop.mapred.lib.MultipleInputs to
use new api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-373. Change org.apache.hadoop.mapred.lib.FieldSelectionMapReduce
to use new api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-628. Improves the execution time of TestJobInProgress.
(Jothi Padmanabhan via ddas)
MAPREDUCE-793. Creates a new test that consolidates a few tests to
include in the commit-test list. (Jothi Padmanabhan via ddas)
MAPREDUCE-797. Adds combiner support to MRUnit MapReduceDriver.
(Aaron Kimball via johan)
MAPREDUCE-656. Change org.apache.hadoop.mapred.SequenceFile* classes
to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-670. Creates ant target for 10 mins patch test build.
(Jothi Padmanabhan via gkesavan)
MAPREDUCE-375. Change org.apache.hadoop.mapred.lib.NLineInputFormat
and org.apache.hadoop.mapred.MapFileOutputFormat to use new api.
(Amareshwari Sriramadasu via ddas)
MAPREDUCE-779. Added node health failure counts into
JobTrackerStatistics. (Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-789. Oracle support for Sqoop. (Aaron Kimball via tomwhite)
MAPREDUCE-842. Setup secure permissions for localized job files,
intermediate outputs and log files on tasktrackers.
(Vinod Kumar Vavilapalli via yhemanth)
MAPREDUCE-478. Allow map and reduce jvm parameters, environment variables
and ulimit to be set separately.
Configuration changes:
add mapred.map.child.java.opts
add mapred.reduce.child.java.opts
add mapred.map.child.env
add mapred.reduce.child.ulimit
add mapred.map.child.env
add mapred.reduce.child.ulimit
deprecated mapred.child.java.opts
deprecated mapred.child.env
deprecated mapred.child.ulimit
(acmurthy)
MAPREDUCE-767. Remove the dependence on the CLI 2.0 snapshot.
(Amar Kamat via omalley)
MAPREDUCE-712. Minor efficiency tweaks to RandomTextWriter. (cdouglas)
MAPREDUCE-870. Remove the job retire thread and the associated
config parameters. (sharad)
MAPREDUCE-749. Make Sqoop unit tests more Hudson-friendly.
(Aaron Kimball via tomwhite)
MAPREDUCE-874. Rename the PiEstimator example to QuasiMonteCarlo.
(szetszwo)
MAPREDUCE-336. Allow logging level of map/reduce tasks to be configurable.
Configuration changes:
add mapred.map.child.log.level
add mapred.reduce.child.log.level
(acmurthy)
MAPREDUCE-355. Update mapred.join package to use the new API. (Amareshwari
Sriramadasu via cdouglas)
HADOOP-6184. Updated hadoop common and test jars to get the new API
in Configuration for dumping in JSON format from Hudson trunk build #68.
(yhemanth)
MAPREDUCE-476. Extend DistributedCache to work locally (LocalJobRunner).
(Philip Zeyliger via tomwhite)
MAPREDUCE-750. Extensible ConnManager factory API. (Aaron Kimball via
tomwhite)
MAPREDUCE-825. JobClient completion poll interval of 5s causes slow tests
in local mode. (Aaron Kimball via tomwhite)
MAPREDUCE-910. Support counters in MRUnit. (Aaron Kimball via cdouglas)
MAPREDUCE-788. Update gridmix2 to use the new API (Amareshwari Sriramadasu
via cdouglas)
MAPREDUCE-875. Make DBRecordReader execute queries lazily. (Aaron Kimball
via enis)
MAPREDUCE-318. Modularizes the shuffle code. (Jothi Padmanabhan and
Arun Murthy via ddas)
MAPREDUCE-936. Allow a load difference for fairshare scheduler.
(Zheng Shao via dhruba)
MAPREDUCE-370. Update MultipleOutputs to use the API, merge funcitonality
of MultipleOutputFormat. (Amareshwari Sriramadasu via cdouglas)
MAPREDUCE-898. Changes DistributedCache to use the new API.
(Amareshwari Sriramadasu via ddas)
MAPREDUCE-876. Sqoop import of large tables can time out.
(Aaron Kimball via tomwhite)
MAPREDUCE-918. Test hsqldb server should be memory-only.
(Aaron Kimball via tomwhite)
MAPREDUCE-144. Includes dump of the process tree in task diagnostics when
a task is killed due to exceeding memory limits.
(Vinod Kumar Vavilapalli via yhemanth)
MAPREDUCE-945. Modifies MRBench and TestMapRed to use ToolRunner so that
options such as queue name can be passed via command line.
(Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-963. Deprecate o.a.h.mapred.FileAlreadyExistsException and
replace it with o.a.h.fs.FileAlreadyExistsException. (Boris Shkolnik
via szetszwo)
MAPREDUCE-960. Remove an unnecessary intermediate copy and obsolete API
from KeyValueLineRecordReader. (cdouglas)
MAPREDUCE-930. Modify Rumen to resolve paths in the canonical way, rather
than defaulting to the local filesystem. (cdouglas)
MAPREDUCE-944. Extend the LoadManager API of the fair-share scheduler
to support regulating tasks for a job based on resources currently in use
by that job. (dhruba)
MAPREDUCE-973. Move FailJob and SleepJob from examples to test. (cdouglas
via omalley)
MAPREDUCE-966. Modify Rumen to clean up interfaces and simplify integration
with other tools. (Hong Tang via cdouglas)
MAPREDUCE-856. Setup secure permissions for distributed cache files.
(Vinod Kumar Vavilapalli via yhemanth)
MAPREDUCE-885. More efficient SQL queries for DBInputFormat. (Aaron Kimball
via enis)
MAPREDUCE-284. Enables ipc.client.tcpnodelay in Tasktracker's Child.
(Ravi Gummadi via sharad)
MAPREDUCE-907. Sqoop should use more intelligent splits. (Aaron Kimball
via tomwhite)
MAPREDUCE-916. Split the documentation to match the project split.
(Corinne Chandel via omalley)
MAPREDUCE-649. Validate a copy by comparing the source and destination
checksums in distcp. Also adds an intra-task retry mechanism for errors
detected during the copy. (Ravi Gummadi via cdouglas)
MAPREDUCE-654. Add a -dryrun option to distcp printing a summary of the
file data to be copied, without actually performing the copy. (Ravi Gummadi
via cdouglas)
MAPREDUCE-664. Display the number of files deleted by distcp when the
-delete option is specified. (Ravi Gummadi via cdouglas)
MAPREDUCE-781. Let the name of distcp jobs be configurable. (Venkatesh S
via cdouglas)
MAPREDUCE-975. Add an API in job client to get the history file url for
a given job id. (sharad)
MAPREDUCE-905. Add Eclipse launch tasks for MapReduce. (Philip Zeyliger
via tomwhite)
MAPREDUCE-277. Makes job history counters available on the job history
viewers. (Jothi Padmanabhan via ddas)
MAPREDUCE-893. Provides an ability to refresh queue configuration
without restarting the JobTracker.
(Vinod Kumar Vavilapalli and Rahul Kumar Singh via yhemanth)
MAPREDUCE-1011. Add build.properties to svn and git ignore. (omalley)
MAPREDUCE-954. Change Map-Reduce context objects to be interfaces.
(acmurthy)
MAPREDUCE-639. Change Terasort example to reflect the 2009 updates.
(omalley)
MAPREDUCE-1063. Document gridmix benchmark. (cdouglas)
MAPREDUCE-931. Use built-in interpolation classes for making up task
runtimes in Rumen. (Dick King via cdouglas)
MAPREDUCE-1012. Mark Context interfaces as public evolving. (Tom White via
cdouglas)
MAPREDUCE-971. Document use of distcp when copying to s3, managing timeouts
in particular. (Aaron Kimball via cdouglas)
HDFS-663. DFSIO for append. (shv)
HDFS-641. Move all of the components that depend on map/reduce to
map/reduce. (omalley)
HADOOP-5107. Use Maven ant tasks to publish artifacts. (Giridharan Kesavan
via omalley)
MAPREDUCE-1229. Allow customization of job submission policy in Mumak.
(Hong Tang via cdouglas)
MAPREDUCE-1317. Reduce the memory footprint of Rumen objects by interning
host Strings. (Hong Tang via cdouglas)
MAPREDUCE-1097. Add support for Vertica 3.5 to its contrib module. (Omer
Trajman via cdouglas)
MAPREDUCE-1627. HadoopArchives should not uses a method in DistCp.
(szetszwo)
MAPREDUCE-1198. Alternatively schedule different types of tasks in
fair share scheduler. (Scott Chen via matei)
MAPREDUCE-707. Provide a jobconf property for explicitly assigning a job to
a pool in the Fair Scheduler. (Alan Heirich via matei)
MAPREDUCE-999. Improve Sqoop test speed and refactor tests.
(Aaron Kimball via tomwhite)
MAPREDUCE-906. Update Sqoop documentation. (Aaron Kimball via cdouglas)
MAPREDUCE-947. Added commitJob and abortJob apis to OutputCommitter.
Enhanced FileOutputCommitter to create a _SUCCESS file for successful
jobs. (Amar Kamat & Jothi Padmanabhan via acmurthy)
MAPREDUCE-1103. Added more metrics to Jobtracker. (sharad)
MAPREDUCE-1048. Add occupied/reserved slot usage summary on jobtracker UI.
(Amareshwari Sriramadasu and Hemanth Yamijala via sharad)
MAPREDUCE-1090. Modified log statement in TaskMemoryManagerThread to
include task attempt id. (yhemanth)
MAPREDUCE-1069. Implement Sqoop API refactoring. (Aaron Kimball via
tomwhite)
MAPREDUCE-1036. Document Sqoop API. (Aaron Kimball via cdouglas)
MAPREDUCE-1189. Reduce ivy console output to ovservable level (cos)
MAPREDUCE-1167. ProcfsBasedProcessTree collects rss memory information.
(Scott Chen via dhruba)
MAPREDUCE-1169. Improvements to mysqldump use in Sqoop.
(Aaron Kimball via tomwhite)
MAPREDUCE-1231. Added a new DistCp option, -skipcrccheck, so that the CRC
check during setup can be skipped. (Jothi Padmanabhan via szetszwo)
MAPREDUCE-1190. Add package documentation for BBP example.
(Tsz Wo (Nicholas) Sze via cdouglas)
MAPREDUCE-1119. When tasks fail to report status, show tasks's stack dump
before killing. (Aaron Kimball via tomwhite)
MAPREDUCE-1185. Redirect running job url to history url if job is already
retired. (Amareshwari Sriramadasu and Sharad Agarwal via sharad)
MAPREDUCE-1050. Introduce a mock object testing framework. (tomwhite)
MAPREDUCE-1084. Implementing aspects development and fault injeciton
framework for MapReduce. (Sreekanth Ramakrishnan via cos)
MAPREDUCE-1209. Move common specific part of the test TestReflectionUtils
out of mapred into common. (Todd Lipcon via tomwhite)
MAPREDUCE-967. TaskTracker does not need to fully unjar job jars.
(Todd Lipcon via tomwhite)
MAPREDUCE-1083. Changes in MapReduce so that group information of users
can be refreshed in the JobTracker via command line.
(Boris Shkolnik via ddas)
MAPREDUCE-181. Changes the job submission process to be secure.
(Devaraj Das)
MAPREDUCE-1250. Refactors the JobToken to use Common's Token interface.
(Kan Zhang via ddas)
MAPREDUCE-896. Enhance tasktracker to cleanup files that might have
been created by user tasks with non-writable permissions.
(Ravi Gummadi via yhemanth)
MAPREDUCE-372. Change org.apache.hadoop.mapred.lib.ChainMapper/Reducer
to use new mapreduce api. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-1295. Add a tool in Rumen for folding and manipulating job
traces. (Dick King via cdouglas)
MAPREDUCE-1302. TrackerDistributedCacheManager deletes file
asynchronously, thus reducing task initialization delays.
(Zheng Shao via dhruba)
MAPREDUCE-1218. TaskTrackers send cpu and memory usage of
node to JobTracker. (Scott Chen via dhruba)
MAPREDUCE-847. Fix Releaseaudit warning count to zero
(Giridharan Kesavan)
MAPREDUCE-1337. Use generics in StreamJob to improve readability of that
class. (Kay Kay via cdouglas)
MAPREDUCE-361. Port terasort example to the new mapreduce API. (Amareshwari
Sriramadasu via cdouglas)
MAPREDUCE-1356. Allow user-specified hive table name in sqoop.
(Aaron Kimball via tomwhite)
MAPREDUCE-1367. LocalJobRunner should support parallel mapper execution.
(Aaron Kimball via tomwhite)
MAPREDUCE-64. Eliminate io.sort.record.percent from MapTask configuration.
(cdouglas)
MAPREDUCE-1440. Replace the long user name in MapReduce with the local
name. (omalley)
MAPREDUCE-1470. Move delegation tokens from HDFS to Common so that
MapReduce can use them too. (omalley)
MAPREDUCE-1425. Reduce memory usage by archive. (mahadev via szetszwo)
MAPREDUCE-1441. Trim whitespace from directory lists pulled from the
configuration. (Todd Lipcon via cdouglas)
MAPREDUCE-1445. Refactor Sqoop tests to support better ConnManager testing.
(Aaron Kimball via tomwhite)
MAPREDUCE-1309. Refactor Rumen trace generator to improve code structure
and add extensible support for log formats. (Dick King via cdouglas)
MAPREDUCE-1503. Delegation token renewing and cancelling should provide
meaningful exceptions when there are failures instead of returning
false. (omalley)
HADOOP-6579. Upgrade commons-codec library to 1.4. (omalley)
MAPREDUCE-1423. Improve performance of CombineFileInputFormat when multiple
pools are configured. (Dhruba Borthakur via zshao)
MAPREDUCE-1454. Quote user supplied strings in Tracker servlets. (cdouglas)
MAPREDUCE-1408. Add customizable job submission policies to Gridmix. (Rahul
Singh via cdouglas)
MAPREDUCE-1527. Better warning logged when mapred.queue.names is
overshadowed by mapred-queues.xml. (Hong Tang via acmurthy)
MAPREDUCE-1403. Save the size and number of distributed cache artifacts in
the configuration. (Arun Murthy via cdouglas)
MAPREDUCE-1482. Truncate state string and diagnostic information in
TaskStatus. (Amar Kamat via szetszwo)
MAPREDUCE-1593. [Rumen] Improvements to random seed generation (tamas via
mahadev)
MAPREDUCE-1460. Oracle support in DataDrivenDBInputFormat.
(Aaron Kimball via tomwhite)
MAPREDUCE-1569. Pass configuration through mocked contexts in MRUnit.
(Chris White via cdouglas)
MAPREDUCE-1590. Move HarFileSystem from Hadoop Common to Mapreduce tools.
(mahadev)
MAPREDUCE-1629. Get rid of fakeBlockLocations() on HarFileSystem, since
it's not used (mahadev)
MAPREDUCE-1489. DataDrivenDBInputFormat should not query the database
when generating only one split. (Aaron Kimball via tomwhite)
MAPREDUCE-1514. Add documentation on replication, permissions, new options,
limitations and internals of har. (mahadev via szetszwo)
MAPREDUCE-1428. Make block size and the size of archive created files
configurable. (mahadev via szetszwo)
MAPREDUCE-1656. JobStory should provide queue info. (hong via mahadev)
MAPREDUCE-1466. Record number of files processed in FileInputFormat in the
Configuration for offline analysis. (Luke Lu and Arun Murthy via cdouglas)
MAPREDUCE-1538. TrackerDistributedCacheManager manages the
number of files. (Scott Chen via dhruba)
MAPREDUCE-1673. Scripts to start and stop RaidNode.
(Rodrigo Schmidt via dhruba)
MAPREDUCE-1659. RaidNode writes temp files on configured tmp directory and
add random numbers to their names to avoid conflicts
(Rodrigo Schmidt via dhruba)
MAPREDUCE-1221. Allow admins to control physical memory limits per-task
and per-node. (Scott Chen via acmurthy)
MAPREDUCE-1065. Update mapred tutorial to use the new API. (Aaron Kimball
via cdouglas)
MAPREDUCE-1304. Add a task counter tracking time spent in GC. (Aaron
Kimball via cdouglas)
MAPREDUCE-1570. Add grouping comparators to MRUnit. (Chris White via
cdouglas)
MAPREDUCE-1650. Exclude Private elements from generated MapReduce
Javadoc. (tomwhite)
MAPREDUCE-1625. Improve grouping of packages in Javadoc. (tomwhite)
MAPREDUCE-1417. Forrest documentation should be updated to reflect
the changes in MAPREDUCE-744. (Ravi Gummadi via vinodkv)
MAPREDUCE-1568. TrackerDistributedCacheManager should clean up cache
in a background thread. (Scott Chen via zshao)
MAPREDUCE-1749. Move configuration strings out of JobContext so that it
can be made public stable. (omalley)
OPTIMIZATIONS
MAPREDUCE-270. Fix the tasktracker to optionally send an out-of-band
heartbeat on task-completion for better job-latency. (acmurthy)
Configuration changes:
add mapreduce.tasktracker.outofband.heartbeat
MAPREDUCE-1224. Calling "SELECT t.* from <table> AS t" to get meta
information is too expensive for big tables. (Spencer Ho via tomwhite)
MAPREDUCE-1186. Modified code in distributed cache to set permissions
only on required set of localized paths.
(Amareshwari Sriramadasu via yhemanth)
MAPREDUCE-1467. Add a --verbose flag to Sqoop.
(Aaron Kimball via tomwhite)
MAPREDUCE-1501. FileInputFormat supports multi-level, recursive
directory listing. (Zheng Shao via dhruba)
MAPREDUCE-1556. upgrade to Avro 1.3.0. (cutting via tomwhite)
MAPREDUCE-1613. Install/deploy source jars to Maven repo
(Patrick Angeles via ddas)
BUG FIXES
MAPREDUCE-878. Rename fair scheduler design doc to
fair-scheduler-design-doc.tex and add Apache license header (matei)
MAPREDUCE-703. Sqoop requires dependency on hsqldb in ivy.
(Aaron Kimball via matei)
HADOOP-4687. MapReduce is split from Hadoop Core. It is a subproject under
Hadoop (Owen O'Malley)
HADOOP-6096. Fix Eclipse project and classpath files following project
split. (tomwhite)
MAPREDUCE-419. Reconcile mapred.userlog.limit.kb defaults in configuration
and code. (Philip Zeyliger via cdouglas)
MAPREDUCE-2. Fixes a bug in KeyFieldBasedPartitioner in handling empty
keys. (Amar Kamat via sharad)
MAPREDUCE-130. Delete the jobconf copy from the log directory of the
JobTracker when the job is retired. (Amar Kamat via sharad)
MAPREDUCE-657. Fix hardcoded filesystem problem in CompletedJobStatusStore.
(Amar Kamat via sharad)
MAPREDUCE-179. Update progress in new RecordReaders. (cdouglas)
MAPREDUCE-658. Replace NPE in distcp with a meaningful error message when
the source path does not exist. (Ravi Gummadi via cdouglas)
MAPREDUCE-671. Update ignore list to include untracked, generated
build artifacts and config files. (cdouglas)
MAPREDUCE-433. Use more reliable counters in TestReduceFetch. (cdouglas)
MAPREDUCE-124. Fix a bug in failure handling of abort task of
OutputCommiter. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-673. Sqoop depends on commons-cli, which is not in its ivy.xml.
(Kevin Weil via tomwhite)
MAPREDUCE-694. Fix to add jsp-api jars to capacity-scheduler classpath.
(Giridharan Kesavan)
MAPREDUCE-690. Sqoop's test "hive" script needs to be executable.
(Aaron Kimball via tomwhite)
MAPREDUCE-702. Fix eclipse-plugin jar target (Giridharan Kesavan)
MAPREDUCE-522. Replace TestQueueCapacities with simpler test case to
test integration between capacity scheduler and MR framework.
(Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-683. Fixes an initialization problem in the JobHistory.
The initialization of JobHistoryFilesManager is now done in the
JobHistory.init call. (Amar Kamat via ddas)
MAPREDUCE-708. Fixes a bug to allow updating the reason for
blacklisting a node on the JobTracker UI.
(Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-709. Fixes message displayed for a blacklisted node where
the reason for blacklisting is due to the health check script
timing out. (Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-676. Existing diagnostic rules fail for MAP ONLY jobs.
(Suhas Gogate via tomwhite)
MAPREDUCE-722. Fixes a bug with tasktracker reservations for
high memory jobs in capacity scheduler.
(Vinod Kumar Vavilapalli via yhemanth)
HADOOP-6090. Updates gridmix script to use new mapreduce api output
format. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-732. Removed spurious log statements in the node
blacklisting logic. (Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-685. Sqoop will fail with OutOfMemory on large tables
using mysql. (Aaron Kimball via tomwhite)
MAPREDUCE-734. Fix a ConcurrentModificationException in unreserving
unused reservations for a job when it completes.
(Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-733. Fix a RuntimeException while unreserving trackers
that are blacklisted for a job.
(Arun Murthy and Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-677. Fix timeout in TestNodeRefresh. (Amar Kamat via
sharad)
MAPREDUCE-153. Fix timeout in TestJobInProgressListener. (Amar
Kamat via sharad)
MAPREDUCE-742. Fix output messages and java comments in the Pi related
examples. (szetszwo)
MAPREDUCE-565. Fix partitioner to work with new API. (Owen O'Malley via
cdouglas)
MAPREDUCE-680. Fix so MRUnit can handle reuse of Writable objects.
(Aaron Kimball via johan)
MAPREDUCE-18. Puts some checks for cross checking whether a reduce
task gets the correct shuffle data. (Ravi Gummadi via ddas)
MAPREDUCE-771. Fix scheduling of setup and cleanup tasks to use
free slots instead of tasks for scheduling. (yhemanth)
MAPREDUCE-717. Fixes some corner case issues in speculative
execution heuristics. (Devaraj Das)
MAPREDUCE-716. Make DBInputFormat work with Oracle. (Aaron Kimball
via tomwhite)
MAPREDUCE-735. Fixes a problem in the KeyFieldHelper to do with
the end index for some inputs (Amar Kamat via ddas)
MAPREDUCE-682. Removes reservations on tasktrackers which are
blacklisted. (Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-743. Fixes a problem to do with progress reporting
in the map phase. (Ravi Gummadi via ddas)
MAPREDUCE-765. Eliminate the deprecated warnings introduced by H-5438.
(He Yongqiang via szetszwo)
MAPREDUCE-383. Fix a bug in Pipes combiner due to bytes count not
getting reset after the spill. (Christian Kunz via sharad)
MAPREDUCE-809. Fix job-summary logs to correctly record status of FAILED
and KILLED jobs. (acmurthy)
MAPREDUCE-792. Fix unchecked warnings in DBInputFormat. (Aaron Kimball
via szetszwo)
MAPREDUCE-760. Fix a timing issue in TestNodeRefresh. (Amar Kamat via
sharad)
MAPREDUCE-40. Keep memory management backwards compatible for job
configuration parameters and limits. (Rahul Kumar Singh via yhemanth)
MAPREDUCE-587. Fixes a OOM issue in TestStreamingExitStatus.
(Amar Kamat via ddas)
MAPREDUCE-408. Fixes an assertion problem in TestKillSubProcesses
(Ravi Gummadi via ddas)
MAPREDUCE-659. Fix gridmix2 compilation. (Giridharan Kesavan)
MAPREDUCE-796. Fixes a ClassCastException in an exception log in
MultiThreadedMapRunner. (Amar Kamat via ddas)
MAPREDUCE-808. Fixes a serialization problem in TypedBytes.
(Klaas Bosteels via ddas)
MAPREDUCE-845. Fix a findbugs heap size problem in build.xml and add
a new property findbugs.heap.size. (Lee Tucker via szetszwo)
MAPREDUCE-838. Fixes a problem in the way commit of task outputs
happens. The bug was that even if commit failed, the task would
be declared as successful. (Amareshwari Sriramadasu via ddas)
MAPREDUCE-813. Updates Streaming and M/R tutorial documents.
(Corinne Chandel via ddas)
MAPREDUCE-805. Fixes some deadlocks in the JobTracker due to the fact
the JobTracker lock hierarchy wasn't maintained in some JobInProgress
method calls. (Amar Kamat via ddas)
MAPREDUCE-799. Fixes so all of the MRUnit self-tests run.
(Aaron Kimball via johan)
MAPREDUCE-848. Fixes a problem to do with TestCapacityScheduler
failing (Amar Kamat via ddas)
MAPREDUCE-840. DBInputFormat leaves open transaction.
(Aaron Kimball via tomwhite)
MAPREDUCE-859. Adds Avro and its dependencies required by Hadoop
common. (Ravi Gummadi via sharad)
MAPREDUCE-867. Fix ivy conf to look for avro jar from maven repo.
(Giridharan Kesavan)
MAPREDUCE-877. Added avro as a dependency to contrib ivy settings.
(Tsz Wo (Nicholas) Sze via yhemanth)
MAPREDUCE-852. In build.xml, remove the Main-Class, which is incorrectly
set in tools, and rename the target "tools-jar" to "tools". (szetszwo)
MAPREDUCE-773. Sends progress reports for compressed gzip inputs in maps.
Fixes a native direct buffer leak in LineRecordReader classes.
(Hong Tang and ddas)
MAPREDUCE-832. Reduce number of warning messages printed when
deprecated memory variables are used. (Rahul Kumar Singh via yhemanth)
MAPREDUCE-745. Fixes a testcase problem to do with generation of JobTracker
IDs. (Amar Kamat via ddas)
MAPREDUCE-834. Enables memory management on tasktrackers when old
memory management parameters are used in configuration.
(Sreekanth Ramakrishnan via yhemanth)
MAPREDUCE-818. Fixes Counters#getGroup API. (Amareshwari Sriramadasu
via sharad)
MAPREDUCE-807. Handles the AccessControlException during the deletion of
mapred.system.dir in the JobTracker. The JobTracker will bail out if it
encounters such an exception. (Amar Kamat via ddas)
MAPREDUCE-430. Fix a bug related to task getting stuck in case of
OOM error. (Amar Kamat via ddas)
MAPREDUCE-871. Fix ownership of Job/Task local files to have correct
group ownership according to the egid of the tasktracker.
(Vinod Kumar Vavilapalli via yhemanth)
MAPREDUCE-911. Fix a bug in TestTaskFail related to speculative
execution. (Amareshwari Sriramadasu via sharad)
MAPREDUCE-687. Fix an assertion in TestMiniMRMapRedDebugScript.
(Amareshwari Sriramadasu via sharad)
MAPREDUCE-924. Fixes the TestPipes testcase to use Tool.
(Amareshwari Sriramadasu via sharad)
MAPREDUCE-903. Add Avro jar to eclipse classpath.
(Philip Zeyliger via tomwhite)
MAPREDUCE-943. Removes a testcase in TestNodeRefresh that doesn't make
sense in the new Job recovery model. (Amar Kamat via ddas)
MAPREDUCE-764. TypedBytesInput's readRaw() does not preserve custom type