forked from aseldawy/spatialhadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
11243 lines (7689 loc) · 436 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 Change Log
Release 1.0.3 - 2012.05.07
NEW FEATURES
IMPROVEMENTS
MAPREDUCE-4017. Add jobname to jobsummary log (tgraves and Koji Noguchi
via bobby)
BUG FIXES
HADOOP-6924. Adds a directory to the list of directories to search for
the libjvm.so file. The new directory is found by running a 'find' command
and the first output is taken. This was done to handle the build of Hadoop
with IBM's JDK. (Stephen Watt, Guillermo Cabrera and ddas)
HADOOP-6941. Adds support for building Hadoop with IBM's JDK
(Stephen Watt, Eli and ddas)
HADOOP-8188. Fixes the build process to do with jsvc, with IBM's JDK
as the underlying jdk. (ddas)
HDFS-3127. Do not throw exceptions when FSImage.restoreStorageDirs()
fails. (Brandon Li via szetszwo)
MAPREDUCE-3377. Ensure OutputCommitter.checkOutputSpecs is called prior to
copying job.xml. (Jane Chen via acmurthy)
HADOOP-5528. Ensure BinaryPartitioner is present in mapred libs. (Klaas
Bosteels via acmurthy)
HADOOP-6963. In FileUtil.getDU(..), neither include the size of directories
nor follow symbolic links. (Ravi Prakash via szetszwo)
HADOOP-8251. Fix SecurityUtil.fetchServiceTicket after HADOOP-6941. (todd)
HADOOP-8293. Fix the Makefile.am for the native library to include the
JNI path. (omalley)
MAPREDUCE-4154. streaming MR job succeeds even if the streaming command
fails. (Devaraj Das via tgraves)
HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
(shv)
HADOOP-8294. IPC Connection becomes unusable even if server address
was temporarilly unresolvable. Backport of HADOOP-7428. (Kihwal Lee via
mattf)
HDFS-3310. Make sure that we abort when no edit log directories are left.
(Colin Patrick McCabe via eli)
MAPREDUCE-4207. Remove System.out.println() in FileInputFormat
(Kihwal Lee via harsh)
HDFS-3265. PowerPc Build error. (Kumar Ravi via mattf)
HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
the first datanode fails. (szetszwo)
HADOOP-8338. Fix renew and cancel of RPC HDFS delegation tokens. (omalley)
HADOOP-8346. Makes oid changes to make SPNEGO work. Was broken due
to fixes introduced by the IBM JDK compatibility patch. (ddas)
HADOOP-8352. Regenerate configure scripts for the c++ compilation.
(omalley)
HDFS-3061. Cached directory size in INodeDirectory can get permanently
out of sync with computed size, causing quota issues; port of HDFS-1487.
(Kihwal Lee via mattf)
HADOOP-7381. FindBugs OutOfMemoryError. (Joep Rottinghuis via mattf)
HADOOP-8151. Error handling in snappy decompressor throws invalid
exceptions. (Matt Foley)
HDFS-3374. hdfs' TestDelegationToken fails intermittently with a race
condition. (Owen O'Malley via mattf)
MAPREDUCE-3857. Grep example ignores mapred.job.queue.name.
(Jonathan Eagles via mattf)
MAPREDUCE-1238. mapred metrics shows negative count of waiting maps and
reduces (tgraves via bobby)
MAPREDUCE-4003. log.index (No such file or directory) AND Task process
exit with nonzero status of 126. (Koji Noguchi via tgraves)
MAPREDUCE-4012. Hadoop Job setup error leaves no useful info to users
(when LinuxTaskController is used) (tgraves)
HADOOP-8027. Visiting /jmx on the daemon web interfaces may print unnecessary
error in logs (Aaron Myers and Hitesh Shah)
Release 1.0.2 - 2012.03.24
NEW FEATURES
HADOOP-7206. Support Snappy compression. (Issei Yoshida and
Alejandro Abdelnur via vinodkv).
HDFS-2701. Cleanup FS* processIOError methods. (eli)
HDFS-2978. The NameNode should expose name dir statuses via JMX. (atm)
IMPROVEMENTS
MAPREDUCE-3773. Add queue metrics with buckets for job run times. (omalley
via acmurthy)
HADOOP-1722. Allow hadoop streaming to handle non-utf8 byte array. (Klaas
Bosteels and Matthias Lehmann via acmurthy)
HADOOP-5450. Add support for application-specific typecodes to typed
bytes. (Klaas Bosteels via acmurthy)
HADOOP-8090. rename hadoop 64 bit rpm/deb package name. (Giridharan Kesavan
via mattf)
BUG FIXES
HADOOP-8050. Deadlock in metrics. (Kihwal Lee via mattf)
MAPREDUCE-3824. Distributed caches are not removed properly. (Thomas Graves
via mattf)
MAPREDUCE-3583. Change pid to String and stime to BigInteger in order to
avoid NumberFormatException caused by overflow. (Zhihong Yu via szetszwo)
HDFS-3006. In WebHDFS, when the return body is empty, set the Content-Type
to application/octet-stream instead of application/json. (szetszwo)
MAPREDUCE-764. Fix TypedBytesInput.readRaw to preserve custom type codes.
(Klaas Bosteels via acmurthy)
HDFS-2703. removedStorageDirs is not updated everywhere we remove
a storage dir. (eli)
HDFS-2702. A single failed name dir can cause the NN to exit. (eli)
HDFS-3075. Backport HADOOP-4885: Try to restore failed name-node storage
directories at checkpoint time. (Brandon Li via szetszwo)
HDFS-3101. Cannot read empty file using WebHDFS. (szetszwo)
MAPREDUCE-3851. Allow more aggressive action on detection of the jetty
issue (tgraves via bobby)
HADOOP-8088. User-group mapping cache incorrectly does negative caching on
transient failures (Kihwal Lee via bobby)
HADOOP-8132. 64bit secure datanodes do not start as the jsvc path is wrong
(Arpit Gupta via mattf)
HADOOP-8201. create the configure script for native compilation as part of
the build (Giri Kesavan via mattf)
Release 1.0.1 - 2012.02.14
NEW FEATURES
IMPROVEMENTS
MAPREDUCE-3607. Port missing new API mapreduce lib classes to
1.x. (tomwhite)
HADOOP-7987. Support setting the run-as user in unsecure mode. (jitendra)
HADOOP-7988. Upper case in hostname part of the principals doesn't
work with kerberos. (jitendra)
HDFS-2814. NamenodeMXBean does not account for svn revision in the version
information. (Hitesh Shah via jitendra)
HADOOP-7470. Move up to Jackson 1.8.8. (Enis Soztutar via szetszwo)
HDFS-2379. Allow block reports to proceed without holding FSDataset lock.
(todd via suresh)
HADOOP-8009. Create hadoop-client and hadoop-minicluster artifacts for
downstream projects. (Alejandro Abdelnur via mattf)
MAPREDUCE-3184. Add a thread to the TaskTracker which monitors for
spinning Jetty selector threads, and shuts down the daemon when one is
detected. (todd)
BUG FIXES
HADOOP-7960. Port HADOOP-5203 to branch-1, build version comparison is too
restrictive. (mattf)
HADOOP-7964. Deadlock in NetUtils and SecurityUtil class initialization.
(Daryn Sharp via suresh)
HADOOP-8010. hadoop-config.sh errors when HADOOP_HOME_WARN_SUPPRESS is set
to true and HADOOP_HOME is present. (Roman Shaposhnik via mattf)
HADOOP-8052. Hadoop Metrics2 should emit Float.MAX_VALUE (instead of
Double.MAX_VALUE) to avoid making Ganglia's gmetad core. (Varun Kapoor
via mattf)
MAPREDUCE-3343. TaskTracker Out of Memory because of distributed cache.
(Zhao Yunjiong).
HADOOP-8037. Binary tarball does not preserve platform info for
native builds, and RPMs fail to provide needed symlinks for
libhadoop.so. (Matt Foley)
Release 1.0.0 - 2011.12.15
NEW FEATURES
HDFS-2316. [umbrella] WebHDFS: a complete FileSystem implementation for
accessing HDFS over HTTP (szetszwo)
HDFS-2539. Support doAs and GETHOMEDIRECTORY in WebHDFS.
(szetszwo)
IMPROVEMENTS
HDFS-2427. Change the default permission in WebHDFS to 755 and add range
check/validation for all parameters. (szetszwo)
HDFS-2501. Add version prefix and root methods to WebHDFS. (szetszwo)
HADOOP-7728. Enable task memory management to be configurable in hadoop
config setup script. (ramya)
HDFS-2450. Filesystem supports path with both short names and FQDN.
(Daryn Sharp via suresh)
HDFS-617. Support for non-recursive create() in HDFS.
(Kan Zhang via jitendra)
HADOOP-6840. Support non-recursive create() in FileSystem &
SequenceFile.Writer. (Nicolas Spiegelberg via jitendra)
HADOOP-6886. LocalFileSystem Needs createNonRecursive API.
(Nicolas Spiegelberg via jitendra)
HADOOP-5124. A few optimizations to FsNamesystem#RecentInvalidateSets.
(Hairong Kuang via jitendra)
HADOOP-7664. Remove warmings when overriding final parameter configuration
if the override value is same as the final parameter value.
(Ravi Prakash via szetszwo)
HADOOP-7816. Allow HADOOP_HOME deprecated warning suppression based
on config specified in hadoop-env.sh (Dave Thompson via suresh)
MAPREDUCE-3169. Create a new MiniMRCluster equivalent which only provides
client APIs cross MR1 and MR2. (Ahmed via tucu)
HDFS-2552. Add Forrest doc for WebHDFS REST API. (szetszwo)
HDFS-2246. Shortcut a local client reads to a Datanodes files directly.
(Andrew Purtell, Suresh, Jitendra)
HADOOP-7804. Enable hadoop config generator to set configurations to enable
short circuit read. (Arpit Gupta via jitendra)
HDFS-2604. Add a log message to show if WebHDFS is enabled and a
configuration section in the forrest doc. (szetszwo)
HADOOP-7923. Update doc versions from 0.20 to 1.0, and automate the
updating of version numbers in the doc system. (szetszwo via mattf)
BUG FIXES
HDFS-2673. While Namenode processing the blocksBeingWrittenReport,
it will log incorrect number blocks count. (Uma Maheswara via mattf)
MAPREDUCE-3319. Hadoop example "multifilewc" broken in 0.20.205.0.
(Subroto Sanyal via mattf)
HDFS-2589. Remove unnecessary hftp token fetch and renewal thread.
(Daryn Sharp via mattf)
MAPREDUCE-3475. JT can't renew its own tokens. (Daryn Sharp via mattf)
HADOOP-7869. HADOOP_HOME warning happens all of the time (Owen O'Malley
via mattf)
HADOOP-7815. Fixed configuring map memory mb in hadoop-setup-conf.sh.
(Ramya Sunil)
HDFS-2346. TestHost2NodesMap & TestReplicasMap will fail depending
upon execution order of test methods. (Laxman and Uma Maheswara
Rao via Matt Foley)
MAPREDUCE-3374. src/c++/task-controller/configure is not set executable in
the tarball and that prevents task-controller from rebuilding.
(Roman Shaposhnik via Matt Foley)
HDFS-1943. Fail to start datanode while start-dfs.sh is executed by root
user. (Wei Yongjun's patch updated by Matt Foley)
HADOOP-7784. Fixed jsvc packaging. (Eric Yang)
HADOOP-7740. Fixed security audit logger configuration.
(Arpit Gupta via Eric Yang)
HADOOP-7765. Clean packaging working directory for Debian packaging.
(Eric Yang)
HDFS-2441. Remove the Content-Type set by HttpServer.QuotingInputFilter in
WebHDFS responses. (szetszwo)
HDFS-2428. Convert com.sun.jersey.api.ParamException$QueryParamException
to IllegalArgumentException and response it as http BAD_REQUEST in WebHDFS.
(szetszwo)
HDFS-2424. Added a root element "HdfsFileStatuses" for the response
of WebHDFS listStatus. (szetszwo)
HDFS-2439. Fix NullPointerException in WebHDFS when opening a non-existing
file or creating a file without specifying the replication parameter.
(szetszwo)
HDFS-2453. Fix http response code for partial content in WebHDFS, added
getDefaultBlockSize() and getDefaultReplication() in WebHdfsFileSystem
and cleared content type in ExceptionHandler. (szetszwo)
HDFS-2416. Distcp with a WebHDFS uri on a secure cluster fails. (jitendra)
HDFS-2494. Close the streams and DFSClient in DatanodeWebHdfsMethods.
(Uma Maheswara Rao G via szetszwo)
HDFS-2432. WebHDFS: response FORBIDDEN when setReplication on non-files;
clear umask before creating a flie; throw IllegalArgumentException if
setOwner with both owner and group empty; throw FileNotFoundException if
getFileStatus on non-existing files; fix bugs in getBlockLocations; and
changed getFileChecksum json response root to "FileChecksum". (szetszwo)
HDFS-2065. Add null checks in DFSClient.getFileChecksum(..). (Uma
Maheswara Rao G via szetszwo)
HDFS-2527. WebHDFS: remove the use of "Range" header in Open; use ugi
username if renewer parameter is null in GetDelegationToken; response OK
when setting replication for non-files; rename GETFILEBLOCKLOCATIONS to
GET_BLOCK_LOCATIONS and state that it is a private unstable API; replace
isDirectory and isSymlink with enum {FILE, DIRECTORY, SYMLINK} in
HdfsFileStatus JSON object. (szetszwo)
HDFS-2528. WebHDFS: set delegation kind to WEBHDFS and add a HDFS token
when http requests are redirected to datanode. (szetszwo)
HDFS-2540. WebHDFS: change "Expect: 100-continue" to two-step write; change
"HdfsFileStatus" and "localName" respectively to "FileStatus" and
"pathSuffix" in JSON response. (szetszwo)
HDFS-1257. Race condition on FSNamesystem#recentInvalidateSets introduced
by HADOOP-5124. (Eric Payne via jitendra)
HDFS-611. Heartbeats times from Datanodes increase when there are plenty of
blocks to delete. (Zheng Shao via jitendra)
HADOOP-7853. multiple javax security configurations cause conflicts.
(Daryn via jitendra)
HDFS-2590. Fix the missing links in the WebHDFS forrest doc. (szetszwo)
HADOOP-7854. UGI getCurrentUser is not synchronized. (Daryn Sharp
via jitendra)
HADOOP-7865. Test Failures in 1.0 hdfs/common. (jitendra)
MAPREDUCE-3480. Disable TestJvmReuse in branch-1. (jitendra)
HADOOP-7855. fix to remove datanode dir creation and attribute
setup from hadoop-conf-setup.sh (gkesavan)
HADOOP-7461. Fix to add jackson dependency to hadoop pom. (gkesavan)
Release 0.20.205.0 - 2011.10.06
NEW FEATURES
HDFS-2202. Add a new DFSAdmin command to set balancer bandwidth of
datanodes without restarting. (Eric Payne via szetszwo)
HDFS-200. Support append and sync for hadoop 0.20 branch. (dhruba)
HDFS-826. Allow a mechanism for an application to detect that
datanode(s) have died in the write pipeline. (dhruba)
HDFS-142. Blocks that are being written by a client are stored in the
blocksBeingWritten directory.
(Dhruba Borthakur, Nicolas Spiegelberg, Todd Lipcon via dhruba)
HDFS-630. Client can exclude specific nodes in the write pipeline.
(Nicolas Spiegelberg via dhruba)
HDFS-895. Allow hflush/sync to occur in parallel with new writes to
the file. (Todd Lipcon via hairong)
HDFS-1520. Lightweight NameNode operation recoverLease to trigger
lease recovery. (Hairong Kuang via dhruba)
MAPREDUCE-2764. Allow JobTracker to renew and cancel arbitrary token types,
including delegation tokens obtained via hftp. (omalley)
HADOOP-7119 add Kerberos HTTP SPNEGO authentication support to
Hadoop JT/NN/DN/TT web-consoles backport from Trunk (sanjay)
HDFS-2284. Add a new FileSystem, webhdfs://, for supporting write Http
access to HDFS. (szetszwo)
HDFS-2317. Support read access to HDFS in WebHDFS. (szetszwo)
HDFS-2338. Add configuration option to enable/disable WebHDFS.
(jitendra via szetszwo)
HDFS-2318. Provide authentication to WebHDFS using SPNEGO and delegation
tokens. (szetszwo)
HDFS-2340. Support getFileBlockLocations and getDelegationToken in WebHDFS.
(szetszwo)
HDFS-2348. Support getContentSummary and getFileChecksum in WebHDFS.
(szetszwo)
HDFS-2385. Support renew and cancel delegation tokens in WebHDFS.
(szetszwo)
MAPREDUCE-2777. Backport of MAPREDUCE-220 and MAPREDUCE-2469. Includes
adding cumulative CPU usage and total heap usage to task conters. (amarrk)
BUG FIXES
HDFS-2404. WebHDFS liststatus json response is not correct.
(Suresh Srinivas via mattf)
HDFS-2358. NPE when the default filesystem's uri has no authority.
(Daryn Sharp via mattf)
MAPREDUCE-3112. Calling hadoop cli inside mapreduce job leads to errors.
(Eric Yang via mattf)
HADOOP-7691. Hadoop deb pkg group id. (Eric Yang via mattf)
HADOOP-7685. Resolve issues with hadoop-common file hadoop-setup-conf.sh.
(Eric Yang and Devaraj K, via mattf)
HADOOP-7684. jobhistory server and secondarynamenode should have
init.d script for rpm and deb. (Eric Yang via mattf)
HADOOP-7683. remove hdfs-site.xml template has properties that are not used
in 0.20-security. (Arpit Gupta via mattf)
HADOOP-7603. Set default hdfs, mapred uid, and hadoop group gid for RPM
packages. (Eric Yang via mattf)
HADOOP-7681. log4j.properties is missing properties for security audit and
hdfs audit should be changed to info. (Arpit Gupta via mattf)
HADOOP-7679. log4j.properties templates must define
mapred.jobsummary.logger (Ramya Sunil via mattf)
HDFS-2325. Fuse-DFS fails to build on Hadoop 20.203.0
(Kihwal Lee via mattf)
HDFS-2342. add Jersey libraries to ivy.xml files in contrib, to fix
TestSleepJob and TestHdfsProxy. (Tsz Wo (Nicholas), SZE via mattf)
MAPREDUCE-2324. Removed usage of broken
ResourceEstimator.getEstimatedReduceInputSize to check against usable
disk-space on TaskTracker. (Robert Evans via acmurthy)
MAPREDUCE-2729. Ensure jobs with reduces which can't be launched due to
slow-start do not count for user-limits. (Sherry Chen via acmurthy)
HADOOP-6833. IPC leaks call parameters when exceptions thrown.
(Todd Lipcon via eli)
HADOOP-7400. Fix HdfsProxyTests fails when the -Dtest.build.dir
and -Dbuild.test is set a dir other than build dir (gkesavan)
MAPREDUCE-2650. back-port MAPREDUCE-2238 to 0.20-security.
(Sherry Chen via mahadev)
HDFS-2053. Bug in INodeDirectory#computeContentSummary warning
(Michael Noll via eli)
HDFS-2117. DiskChecker#mkdirsWithExistsAndPermissionCheck may
return true even when the dir is not created. (eli)
MAPREDUCE-2489. Jobsplits with random hostnames can make the
queue unusable. (Jeffrey Naisbitt via mahadev)
HDFS-2190. NN fails to start if it encounters an empty or malformed fstime
file. (atm)
HDFS-2259. DN web-UI doesn't work with paths that contain html. (eli)
HDFS-561. Fix write pipeline READ_TIMEOUT.
(Todd Lipcon via dhruba)
HDFS-606. Fix ConcurrentModificationException in invalidateCorruptReplicas.
(Todd Lipcon via dhruba)
HDFS-1118. Fix socketleak on DFSClient.
(Zheng Shao via dhruba)
HDFS-988. Fix bug where savenameSpace can corrupt edits log.
(Nicolas Spiegelberg via dhruba)
HDFS-1054. remove sleep before retry for allocating a block.
(Todd Lipcon via dhruba)
HDFS-1207. FSNamesystem.stallReplicationWork should be volatile.
(Todd Lipcon via dhruba)
HDFS-1141. completeFile does not check lease ownership.
(Todd Lipcon via dhruba)
HDFS-1204. Lease expiration should recover single files,
not entire lease holder (Sam Rash via dhruba)
HDFS-1346. DFSClient receives out of order packet ack. (hairong)
HDFS-1057. Concurrent readers hit ChecksumExceptions if following
a writer to very end of file (Sam Rash via dhruba)
HDFS-724. Use a bidirectional heartbeat to detect stuck
pipeline. (hairong)
HDFS-1555. Disallow pipelien recovery if a file is already being
lease recovered. (hairong)
HDFS-1554. New semantics for recoverLease. (hairong)
HADOOP-7596. Makes packaging of 64-bit jsvc possible. Has other
bug fixes to do with packaging. (Eric Yang via ddas)
HDFS-2309. TestRenameWhileOpen fails. (jitendra)
HDFS-2300. TestFileAppend4 and TestMultiThreadedSync failure. (jitendra)
HDFS-1122. client block verification may result in blocks in
DataBlockScanner prematurely. (Sam Rash via jitendra)
HADOOP-6722. NetUtils.connect should check that it hasn't connected a
socket to itself. (Todd Lipcon via suresh)
HDFS-1779. After NameNode restart , Clients can not read partial files
even after client invokes Sync. (Uma Maheswara Rao G via jitendra)
HDFS-1197. Blocks are considered "complete" prematurely after
commitBlockSynchronization or DN restart. (Todd Lipcon via jitendra)
HDFS-1218. Blocks recovered on startup should be treated with lower
priority during block synchronization. (Todd Lipcon via suresh)
HDFS-1186. DNs should interrupt writers at start of recovery.
(Todd Lipcon via suresh)
HDFS-1252. Fix TestDFSConcurrentFileOperations.
(Todd Lipcon via suresh).
HDFS-1260. Block lost when multiple DNs trying to recover it to different
genstamps. (Todd Lipcon via jitendra)
HADOOP-7626. Bugfix for a config generator (Eric Yang via ddas)
MAPREDUCE-2549. Fix resource leaks in Eclipse plugin. (Devaraj K via
acmurthy)
HDFS-2328. HFTP throws NPE if security is enabled locally, but not
remotely. (omalley)
HADOOP-7602. wordcount, sort etc on har files fails with NPE.
(John George via jitendra)
HADOOP-7625. Fix TestDelegationToken by having DFSClient set the service
correctly and having the test cases use the common jar. (omalley)
HADOOP-7644. Fix TestDelegationTokenRenewal and TestDelegationTokenFetcher
to use and test the new style renewers. (omalley)
HADOOP-7637. Fix to include FairScheduler configuration file in
RPM. (Eric Yang via ddas)
HADOOP-7633. Adds log4j.properties to the hadoop-conf dir on
deploy (Eric Yang via ddas)
HADOOP-7631. Fixes a config problem to do with running streaming jobs
(Eric Yang via ddas)
HADOOP-7630. Fixes hadoop-metrics2.properties to have a property
*.period set to a default value. (Eric Yang via ddas)
HADOOP-7615. Fixes to have contrib jars in the HADOOP_CLASSPATH
for the binary layout case. (Eric Yang via ddas)
HADOOP-7661. FileSystem.getCanonicalServiceName throws NPE for any
file system uri that doesn't have an authority. (jitendra)
HADOOP-7649. TestMapredGroupMappingServiceRefresh and
TestRefreshUserMappings fail after HADOOP-7625. (jitendra)
HADOOP-7658. Fix hadoop config template for secured and unsecured
installation (Eric Yang via gkesavan)
MAPREDUCE-3076. Annotate o.a.h.mapreduce.TestSleepJob with @Ignore since it
is not a junit test. (acmurthy via szetszwo)
HDFS-2331. Fix WebHdfsFileSystem compilation problems for a bug in JDK
version < 1.6.0_26. (Abhijit Suresh Shingate via szetszwo)
HADOOP-7645. HTTP auth tests requiring Kerberos infrastructure are not
disabled on branch-0.20-security. (jitendra)
HADOOP-7674. TestKerberosName fails in 20 branch. (jitendra)
HDFS-2333. Change DFSOutputStream back to package private, otherwise,
there are two SC_START_IN_CTOR findbugs warnings. (szetszwo)
HADOOP-7676. Enable hbase to run as hdfs user (gkesavan)
HDFS-2359. Fix NullPointerException in DataBlockScanner.
(Jonthan Eagles via suresh)
MAPREDUCE-3081. Fix for vaidya.sh to work with the new layout
(Suhas via gkesavan)
HDFS-2366. Initialize WebHdfsFileSystem.ugi in object construction.
(szetszwo)
HDFS-2361. hftp is broken. Fixed username checks in JspHelper. (jitendra)
HDFS-2375. Fix TestFileAppend4 failure. (suresh)
HDFS-2373. Commands using WebHDFS and hftp print unnecessary debug
info on the console with security enabled. (Arpit Gupta via suresh)
HADOOP-7610. Fix for hadoop debian package (Eric Yang via gkesavan)
HADOOP-7715. Removed unnecessary security logger configuration. (Eric Yang)
HADOOP-7711. Fixed recursive sourcing of HADOOP_OPTS environment
variables (Arpit Gupta via Eric Yang)
HDFS-2392. Dist with hftp is failing again. (Daryn Sharp via jitendra)
HDFS-2408. DFSClient#getNumCurrentReplicas is package private in 205 but
public in branch-0.20-append (stack via atm)
HADOOP-7721. dfs.web.authentication.kerberos.principal expects the full
hostname and does not replace _HOST with the hostname. (jitendra)
HDFS-2403. NamenodeWebHdfsMethods.generateDelegationToken(..) does not use
the renewer parameter. (szetszwo)
HADOOP-7724. Fixed hadoop-setup-conf.sh to put proxy user in
core-site.xml. (Arpit Gupta via Eric Yang)
HDFS-2411. With WebHDFS enabled in secure mode the auth to local mappings
are not being respected. (jitendra)
IMPROVEMENTS
MAPREDUCE-2928. MR-2413 improvements (Eli Collins via mattf)
HADOOP-7655. provide a small validation script that smoke tests
the installed cluster. (Arpit Gupta via mattf)
MAPREDUCE-2187. Reporter sends progress during sort/merge. (Anupam Seth via
acmurthy)
MAPREDUCE-2705. Implements launch of multiple tasks concurrently.
(Thomas Graves via ddas)
HADOOP-7343. Make the number of warnings accepted by test-patch
configurable to limit false positives. (Thomas Graves via cdouglas)
HDFS-1836. Thousand of CLOSE_WAIT socket. Contributed by Todd Lipcon,
ported to security branch by Bharath Mundlapudi. (via mattf)
HADOOP-7432. Back-port HADOOP-7110 to 0.20-security: Implement chmod
in NativeIO library. (Sherry Chen via mattf)
HADOOP-7314. Add support for throwing UnknownHostException when a host
doesn't resolve. Needed for MAPREDUCE-2489. (Jeffrey Naisbitt via mattf)
MAPREDUCE-2494. Make the distributed cache delete entires using LRU
priority (Robert Joseph Evans via mahadev)
HADOOP-6889. Make RPC to have an option to timeout - backport to
0.20-security. Unit tests updated to 17/Aug/2011 version.
(John George and Ravi Prakash via mattf)
MAPREDUCE-2780. Use a utility method to set service in token.
(Daryn Sharp via jitendra)
HADOOP-7472. RPC client should deal with IP address change.
(Kihwal Lee via suresh)
MAPREDUCE-2489. Jobsplits with random hostnames can make the queue unusable
(Jeffrey Naisbit via mahadev)
MAPREDUCE-2852. Jira for YDH bug 2854624. (Kihwal Lee via eli)
HDFS-1210. DFSClient should log exception when block recovery fails.
(Todd Lipcon via dhruba)
HDFS-1211. Block receiver should not log "rewind" packets at INFO level.
(Todd Lipcon)
HDFS-1164. TestHdfsProxy is failing. (Todd Lipcon)
HDFS-1202. DataBlockScanner throws NPE when updated before initialized.
(Todd Lipcon)
HADOOP-7539. merge hadoop archive goodness from trunk to .20 (John George
via mahadev)
HADOOP-7594. Support HTTP REST in HttpServer. (szetszwo)
HDFS-1242. Add test for appendFile() race solved in HDFS-142.
(Todd Lipcon via jitendra)
HDFS-2320. Make 0.20-append protocol changes compatible with
0.20-secuirty. (suresh)
MAPREDUCE-2610. Make QueueAclsInfo public. (Joep Rottinghuis via acmurthy)
MAPREDUCE-2915. Ensure LTC passes java.library.path. (Kihwal Lee via
acmurthy)
HADOOP-7599. Script improvements to setup a secure Hadoop cluster
(Eric Yang via ddas)
MAPREDUCE-2981. Backport FairScheduler from trunk. (Matei Zaharia via
acmurthy)
MAPREDUCE-1734. Undeprecate old API in branch-0.20-security. (Todd Lipcon
via acmurthy)
HDFS-2356. Support case insensitive query parameter names in WebHDFS.
(szetszwo)
HADOOP-7510. Add configurable option to use original hostname in token
instead of IP to allow server IP change. (Daryn Sharp via suresh)
HDFS-2368. Move SPNEGO conf properties from hdfs-default.xml to
hdfs-site.xml. (szetszwo)
HADOOP-7710. Added hadoop-setup-application.sh for creating
application directory (Arpit Gupta via Eric Yang)
HADOOP-7708. Fixed hadoop-setup-conf.sh to handle config file
consistently. (Eric Yang)
HADOOP-7707. Added toggle for dfs.support.append, WebHDFS and hadoop proxy
user to setup config script. (Arpit Gupta via Eric Yang)
HADOOP-7720. Added parameter for HBase user to setup config script.
(Arpit Gupta via Eric Yang)
HDFS-2395. Add a root element in the JSON responses of WebHDFS.
(szetszwo)
Release 0.20.204.0 - 2011-8-25
NEW FEATURES
HADOOP-6255. Create RPM and Debian packages for common. Changes deployment
layout to be consistent across the binary tgz, rpm, and deb. Adds setup
scripts for easy one node cluster configuration and user creation.
(Eric Yang via omalley)
HADOOP-7324. Ganglia plugins for metrics v2. (Priyo Mustafi via llu)
BUG FIXES
MAPREDUCE-2804. Fixed a race condition in setting up the log directories
for tasks that are starting at the same time. (omalley)
MAPREDUCE-2846. Fixed a race condition in writing the log index file that
caused tasks to fail. (omalley)
MAPREDUCE-2651. Fix race condition in Linux task controller for
job log directory creation. (Bharath Mundlapudi via llu)
MAPREDUCE-2621. TestCapacityScheduler fails with "Queue "q1" does not
exist". (Sherry Chen via mahadev)
HADOOP-7475. Fix hadoop-setup-single-node.sh to reflect new layout. (eyang
via omalley)
HADOOP-7045. TestDU fails on systems with local file systems with
extended attributes. (eli)
MAPREDUCE-2495. exit() the TaskTracker when the distributed cache cleanup
thread dies. (Robert Joseph Evans via cdouglas)
HDFS-1878. TestHDFSServerPorts unit test failure - race condition
in FSNamesystem.close() causes NullPointerException without serious
consequence. (mattf)
MAPREDUCE-2452. Moves the cancellation of delegation tokens to a separate
thread. (ddas)
MAPREDUCE-2555. Avoid sprious logging from completedtasks. (Thomas Graves
via cdouglas)
MAPREDUCE-2451. Log the details from health check script at the
JobTracker. (Thomas Graves via cdouglas)
MAPREDUCE-2535. Fix NPE in JobClient caused by retirement. (Robert Joseph
Evans via cdouglas)
MAPREDUCE-2456. Log the reduce taskID and associated TaskTrackers with
failed fetch notifications in the JobTracker log.
(Jeffrey Naisbitt via cdouglas)
HDFS-2044. TestQueueProcessingStatistics failing automatic test due to
timing issues. (mattf)
HADOOP-7248. Update eclipse target to generate .classpath from ivy config.
(Thomas Graves and Tom White via cdouglas)
MAPREDUCE-2558. Add queue-level metrics 0.20-security branch (test fixes)
(Jeffrey Naisbitt via mahadev)
HADOOP-7364. TestMiniMRDFSCaching fails if test.build.dir is set to
something other than build/test. (Thomas Graves via mahadev)
HADOOP-7277. Add generation of run configurations to eclipse target.
(Jeffrey Naisbitt and Philip Zeyliger via cdouglas)
HADOOP-7373. Fix {start,stop}-{dfs,mapred} and hadoop-daemons.sh from
trying to use the wrong bin directory. (omalley)
HADOOP-7274. Fix typos in IOUtils. (Jonathan Eagles via cdouglas)
HADOOP-7369. Fix permissions in tarball for sbin/* and libexec/* (omalley)
MAPREDUCE-2479. Move distributed cache cleanup to a background task,
backporting MAPREDUCE-1568. (Robert Joseph Evans via cdouglas)
HADOOP-7356. Fix bin/hadoop scripts (eyang via omalley)
HADOOP-7272. Remove unnecessary security related info logs. (suresh)
MAPREDUCE-2514. Fix typo in TaskTracker ReinitTrackerAction log message.
(Jonathan Eagles via cdouglas)
HDFS-1906. Remove logging exception stack trace in client logs when one of
the datanode targets to read from is not reachable. (suresh)
MAPREDUCE-2490. Add logging to graylist and blacklist activity to aid
diagnosis of related issues. (Jonathan Eagles via cdouglas)
MAPREDUCE-2447. Fix Child.java to set Task.jvmContext sooner to avoid
corner cases in error handling. (Siddharth Seth via acmurthy)
MAPREDUCE-2429. Validate JVM in TaskUmbilicalProtocol. (Siddharth Seth via
acmurthy)
MAPREDUCE-2418. Show job errors in JobHistory page. (Siddharth Seth via
acmurthy)
HDFS-1592. At Startup, Valid volumes required in FSDataset doesn't
handle consistently with volumes tolerated. (Bharath Mundlapudi)
HDFS-1598. Directory listing on hftp:// does not show
.*.crc files. (szetszwo)
HDFS-1750. ListPathsServlet should not use HdfsFileStatus.getLocalName()
to get file name since it may return an empty string. (szetszwo)
HDFS-1758. Make Web UI JSP pages thread safe. (Tanping via suresh)
HDFS-1773. Do not show decommissioned datanodes, which are not in both
include and exclude lists, on web and JMX interfaces.
(Tanping Wang via szetszwo)
MAPREDUCE-2409. Distinguish distributed cache artifacts localized as
files, archives. (Siddharth Seth via cdouglas)
MAPREDUCE-118. Fix Job.getJobID() to get the new ID as soon as it's
assigned. (Amareshwari Sriramadasu and Dick King via cdouglas)
MAPREDUCE-2411. Force an exception when the queue has an invalid name or
its ACLs are misconfigured. (Dick King via cdouglas)
HDFS-1258. Clearing namespace quota on "/" corrupts fs image.
(Aaron T. Myers via szetszwo)
HDFS-1189. Quota counts missed between clear quota and set quota.
(John George via szetszwo)
HDFS-1692. In secure mode, Datanode process doesn't exit when disks
fail. (bharathm via boryas)
MAPREDUCE-2420. JobTracker should be able to renew delegation token
over HTTP (boryas)
MAPREDUCE-2443. Fix TaskAspect for TaskUmbilicalProtocol.ping(..).
(Siddharth Seth via szetszwo)
HDFS-1842. Handle editlog opcode conflict with 0.20.203 during upgrade,
by throwing an error to indicate the editlog needs to be empty.
(suresh)
HDFS-1377. Quota bug for partial blocks allows quotas to be violated. (eli)
HDFS-2057. Wait time to terminate the threads causes unit tests to
take longer time. (Bharath Mundlapudi via suresh)
HDFS-2218. Disable TestHdfsProxy.testHdfsProxyInterface in automated test
suite for 0.20-security-204 release. (Matt Foley)
IMPROVEMENTS
HADOOP-7144. Expose JMX metrics via JSON servlet. (Robert Joseph Evans via
cdouglas)
MAPREDUCE-2524. Port reduce failure reporting semantics from trunk, to
fail faulty maps more aggressively. (Thomas Graves via cdouglas)
MAPREDUCE-2529. Add support for regex-based shuffle metric counting
exceptions. (Thomas Graves via cdouglas)
HADOOP-7398. Add mechanism to suppress warnings about use of HADOOP_HOME.
(omalley)
HDFS-2023. Backport of NPE for File.list and File.listFiles.
Merged ports of HADOOP-7322, HDFS-1934, HADOOP-7342, and HDFS-2019.
(Bharath Mundlapudi via mattf)
MAPREDUCE-2415. Distribute the user task logs on to multiple disks.
(Bharath Mundlapudi via omalley)
MAPREDUCE-2413. TaskTracker should handle disk failures by reinitializing
itself. (Ravi Gummadi and Jagane Sundar via omalley)
HDFS-1541. Not marking datanodes dead when namenode in safemode.
(hairong)
HDFS-1767. Namenode ignores non-initial block report from datanodes
when in safemode during startup. (Matt Foley via suresh)
MAPREDUCE-1251. c++ utils doesn't compile. (Eli Collins via shv)
HADOOP-7459. Remove jdk-1.6.0 dependency check from rpm. (omalley)
HADOOP-7330. Fix MetricsSourceAdapter to use the value instead of the
object. (Luke Lu via omalley)
Release 0.20.203.0 - 2011-5-11
MAPREDUCE-1280. Update Eclipse plugin to the new eclipse.jdt API.
(Alex Kozlov via szetszwo)
HADOOP-7259. Contrib modules should include the build.properties from
the enclosing hadoop directory. (omalley)
HADOOP-7253. Update the default configuration to fix security audit log
and metrics2 property configuration warnings. (omalley)
HADOOP-7247. Update documentation to match current jar names. (omalley)
HADOOP-7246. Update the log4j configuration to match the EventCounter
package. (Luke Lu via omalley)
HADOOP-7143. Restore HadoopArchives. (Joep Rottinghuis via omalley)
MAPREDUCE-2316. Updated CapacityScheduler documentation. (acmurthy)
HADOOP-7243. Fix contrib unit tests missing dependencies. (omalley)
HADOOP-7190. Add metrics v1 back for backwards compatibility. (omalley)
MAPREDUCE-2360. Remove stripping of scheme, authority from submit dir in
support of viewfs. (cdouglas)
MAPREDUCE-2359 Use correct file system to access distributed cache objects.
(Krishna Ramachandran)
MAPREDUCE-2361. "Fix Distributed Cache is not adding files to class paths
correctly" - Drop the host/scheme/fragment from URI (cdouglas)
MAPREDUCE-2362. Fix unit-test failures: TestBadRecords (NPE due to
rearranged MapTask code) and TestTaskTrackerMemoryManager
(need hostname in output-string pattern). (Greg Roelofs, Krishna
Ramachandran)
HDFS-1729. Add statistics logging for better visibility into
startup time costs. (Matt Foley)
MAPREDUCE-2363. When a queue is built without any access rights we
explain the problem. (Richard King)
MAPREDUCE-1563. TaskDiagnosticInfo may be missed sometime. (Krishna