Merged HDFS-2349, HDFS-2729, HDFS-2726, HDFS-554, HDFS-1314, HADOOP-7910 to branch-0.23, updating CHANGES.txt for trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1228567 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5ba6477099
commit
8819fda489
@ -12,8 +12,6 @@ Trunk (unreleased changes)
|
|||||||
HADOOP-7875. Add helper class to unwrap protobuf ServiceException.
|
HADOOP-7875. Add helper class to unwrap protobuf ServiceException.
|
||||||
(suresh)
|
(suresh)
|
||||||
|
|
||||||
HADOOP-7910. Add Configuration.getLongBytes to handle human readable byte size values. (Sho Shimauchi via harsh)
|
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
HADOOP-7595. Upgrade dependency to Avro 1.5.3. (Alejandro Abdelnur via atm)
|
HADOOP-7595. Upgrade dependency to Avro 1.5.3. (Alejandro Abdelnur via atm)
|
||||||
@ -155,6 +153,9 @@ Release 0.23.1 - Unreleased
|
|||||||
|
|
||||||
HADOOP-7657. Add support for LZ4 compression. (Binglin Chang via todd)
|
HADOOP-7657. Add support for LZ4 compression. (Binglin Chang via todd)
|
||||||
|
|
||||||
|
HADOOP-7910. Add Configuration.getLongBytes to handle human readable byte size values. (Sho Shimauchi via harsh)
|
||||||
|
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
|
|
||||||
HADOOP-7801. HADOOP_PREFIX cannot be overriden. (Bruno Mahé via tomwhite)
|
HADOOP-7801. HADOOP_PREFIX cannot be overriden. (Bruno Mahé via tomwhite)
|
||||||
|
@ -90,8 +90,6 @@ Trunk (unreleased changes)
|
|||||||
HDFS-2564. Cleanup unnecessary exceptions thrown and unnecessary casts.
|
HDFS-2564. Cleanup unnecessary exceptions thrown and unnecessary casts.
|
||||||
(Hari Mankude via eli)
|
(Hari Mankude via eli)
|
||||||
|
|
||||||
HDFS-2572. Remove unnecessary double-check in DN#getHostName. (harsh)
|
|
||||||
|
|
||||||
HDFS-2410. Further cleanup of hardcoded configuration keys and values.
|
HDFS-2410. Further cleanup of hardcoded configuration keys and values.
|
||||||
(suresh)
|
(suresh)
|
||||||
|
|
||||||
@ -110,12 +108,6 @@ Trunk (unreleased changes)
|
|||||||
|
|
||||||
HDFS-2669 Enable protobuf rpc for ClientNamenodeProtocol
|
HDFS-2669 Enable protobuf rpc for ClientNamenodeProtocol
|
||||||
|
|
||||||
HDFS-2726. Fix a logging issue under DFSClient's createBlockOutputStream method (harsh)
|
|
||||||
|
|
||||||
HDFS-2729. Update BlockManager's comments regarding the invalid block set (harsh)
|
|
||||||
|
|
||||||
HDFS-1314. Make dfs.blocksize accept size-indicating prefixes (Sho Shimauchi via harsh)
|
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
HDFS-2477. Optimize computing the diff between a block report and the
|
HDFS-2477. Optimize computing the diff between a block report and the
|
||||||
namenode state. (Tomasz Nykiel via hairong)
|
namenode state. (Tomasz Nykiel via hairong)
|
||||||
@ -126,8 +118,6 @@ Trunk (unreleased changes)
|
|||||||
HDFS-2476. More CPU efficient data structure for under-replicated,
|
HDFS-2476. More CPU efficient data structure for under-replicated,
|
||||||
over-replicated, and invalidated blocks. (Tomasz Nykiel via todd)
|
over-replicated, and invalidated blocks. (Tomasz Nykiel via todd)
|
||||||
|
|
||||||
HDFS-554. Use System.arraycopy in BlockInfo.ensureCapacity. (harsh)
|
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
HDFS-2299. TestOfflineEditsViewer is failing on trunk. (Uma Maheswara Rao G
|
HDFS-2299. TestOfflineEditsViewer is failing on trunk. (Uma Maheswara Rao G
|
||||||
via atm)
|
via atm)
|
||||||
@ -148,9 +138,6 @@ Trunk (unreleased changes)
|
|||||||
HDFS-2373. Commands using WebHDFS and hftp print unnecessary debug
|
HDFS-2373. Commands using WebHDFS and hftp print unnecessary debug
|
||||||
info on the console with security enabled. (Arpit Gupta via suresh)
|
info on the console with security enabled. (Arpit Gupta via suresh)
|
||||||
|
|
||||||
HDFS-2349. Corruption detected during block transfers between DNs
|
|
||||||
should log a WARN instead of INFO. (harsh)
|
|
||||||
|
|
||||||
HDFS-2188. Make FSEditLog create its journals from a list of URIs rather
|
HDFS-2188. Make FSEditLog create its journals from a list of URIs rather
|
||||||
than NNStorage. (Ivan Kelly via jitendra)
|
than NNStorage. (Ivan Kelly via jitendra)
|
||||||
|
|
||||||
@ -252,6 +239,19 @@ Release 0.23.1 - UNRELEASED
|
|||||||
|
|
||||||
HDFS-2511. Add dev script to generate HDFS protobufs. (tucu)
|
HDFS-2511. Add dev script to generate HDFS protobufs. (tucu)
|
||||||
|
|
||||||
|
HDFS-2349. Corruption detected during block transfers between DNs
|
||||||
|
should log a WARN instead of INFO. (harsh)
|
||||||
|
|
||||||
|
HDFS-2572. Remove unnecessary double-check in DN#getHostName. (harsh)
|
||||||
|
|
||||||
|
HDFS-2729. Update BlockManager's comments regarding the invalid block set (harsh)
|
||||||
|
|
||||||
|
HDFS-2726. Fix a logging issue under DFSClient's createBlockOutputStream method (harsh)
|
||||||
|
|
||||||
|
HDFS-554. Use System.arraycopy in BlockInfo.ensureCapacity. (harsh)
|
||||||
|
|
||||||
|
HDFS-1314. Make dfs.blocksize accept size-indicating prefixes (Sho Shimauchi via harsh)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-2130. Switch default checksum to CRC32C. (todd)
|
HDFS-2130. Switch default checksum to CRC32C. (todd)
|
||||||
|
Loading…
Reference in New Issue
Block a user