hadoop git commit: YARN-3600. AM container link is broken (Naganarasimha G R via tgraves (cherry picked from commit 5d708a4725529cf09d2dd8b5b4aa3542cc8610b0)

2015-05-08 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/branch-2 28e0593b9 - 547b06988


YARN-3600. AM container link is broken (Naganarasimha G R via tgraves
(cherry picked from commit 5d708a4725529cf09d2dd8b5b4aa3542cc8610b0)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/547b0698
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/547b0698
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/547b0698

Branch: refs/heads/branch-2
Commit: 547b0698873334bf0bb50a54e41bd45b6c326d06
Parents: 28e0593
Author: Thomas Graves tgra...@apache.org
Authored: Fri May 8 16:35:40 2015 +
Committer: Thomas Graves tgra...@apache.org
Committed: Fri May 8 16:37:20 2015 +

--
 hadoop-yarn-project/CHANGES.txt | 2 ++
 .../yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java   | 5 +++--
 2 files changed, 5 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/547b0698/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 5ae87ef..25625b7 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -308,6 +308,8 @@ Release 2.8.0 - UNRELEASED
 
 YARN-3589. RM and AH web UI display DOCTYPE wrongly. (Rohith via ozawa)
 
+YARN-3600. AM container link is broken (Naganarasimha G R via tgraves)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/547b0698/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
index 30f55be..34ad08a 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
@@ -229,8 +229,9 @@ public class RMAppAttemptBlock extends AppAttemptBlock{
 AM Container:,
 appAttempt.getAmContainerId() == null || containers == null
 || !hasAMContainer(appAttemptReport.getAMContainerId(), containers)
-? N/A : root_url(container, appAttempt.getAmContainerId()),
-String.valueOf(appAttempt.getAmContainerId()))
+? null : root_url(container, appAttempt.getAmContainerId()),
+appAttempt.getAmContainerId() == null ? N/A :
+  String.valueOf(appAttempt.getAmContainerId()))
   ._(Node:, node)
   ._(
 Tracking URL:,



hadoop git commit: YARN-3600. AM container link is broken (Naganarasimha G R via tgraves

2015-05-08 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/trunk bcf289050 - 5d708a472


YARN-3600. AM container link is broken (Naganarasimha G R via tgraves


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/5d708a47
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/5d708a47
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/5d708a47

Branch: refs/heads/trunk
Commit: 5d708a4725529cf09d2dd8b5b4aa3542cc8610b0
Parents: bcf2890
Author: Thomas Graves tgra...@apache.org
Authored: Fri May 8 16:35:40 2015 +
Committer: Thomas Graves tgra...@apache.org
Committed: Fri May 8 16:35:40 2015 +

--
 hadoop-yarn-project/CHANGES.txt | 2 ++
 .../yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java   | 5 +++--
 2 files changed, 5 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/5d708a47/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 7f6a09f..b72c648 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -353,6 +353,8 @@ Release 2.8.0 - UNRELEASED
 
 YARN-3589. RM and AH web UI display DOCTYPE wrongly. (Rohith via ozawa)
 
+YARN-3600. AM container link is broken (Naganarasimha G R via tgraves)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/5d708a47/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
index 30f55be..34ad08a 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/RMAppAttemptBlock.java
@@ -229,8 +229,9 @@ public class RMAppAttemptBlock extends AppAttemptBlock{
 AM Container:,
 appAttempt.getAmContainerId() == null || containers == null
 || !hasAMContainer(appAttemptReport.getAMContainerId(), containers)
-? N/A : root_url(container, appAttempt.getAmContainerId()),
-String.valueOf(appAttempt.getAmContainerId()))
+? null : root_url(container, appAttempt.getAmContainerId()),
+appAttempt.getAmContainerId() == null ? N/A :
+  String.valueOf(appAttempt.getAmContainerId()))
   ._(Node:, node)
   ._(
 Tracking URL:,



hadoop git commit: YARN-20. More information for yarn.resourcemanager.webapp.address in yarn-default.xml (Bartosz Ługowski vai tgraves) (cherry picked from commit f0f5e3c0751bcadcacd6d91e2c5504803ec3d

2015-05-08 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/branch-2 68d85e92b - 638feaaa3


YARN-20. More information for yarn.resourcemanager.webapp.address in 
yarn-default.xml (Bartosz Ługowski vai tgraves)
(cherry picked from commit f0f5e3c0751bcadcacd6d91e2c5504803ec3d0a5)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/638feaaa
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/638feaaa
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/638feaaa

Branch: refs/heads/branch-2
Commit: 638feaaa354243bb53f480c161ffefee8a8fbc50
Parents: 68d85e9
Author: Thomas Graves tgra...@apache.org
Authored: Fri May 8 17:20:09 2015 +
Committer: Thomas Graves tgra...@apache.org
Committed: Fri May 8 17:22:33 2015 +

--
 hadoop-yarn-project/CHANGES.txt |  3 +++
 .../src/main/resources/yarn-default.xml | 12 ++--
 2 files changed, 13 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/638feaaa/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 25625b7..c2f8fb8 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -151,6 +151,9 @@ Release 2.8.0 - UNRELEASED
 
 YARN-2784. Make POM project names consistent. (Rohith via devaraj)
 
+YARN-20. More information for yarn.resourcemanager.webapp.address in 
+yarn-default.xml (Bartosz Ługowski vai tgraves)
+
   OPTIMIZATIONS
 
 YARN-3339. TestDockerContainerExecutor should pull a single image and not

http://git-wip-us.apache.org/repos/asf/hadoop/blob/638feaaa/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
index 5d0f07d..e1e0ebd 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
@@ -111,13 +111,21 @@
   /property
 
   property
-descriptionThe http address of the RM web application./description
+description
+  The http address of the RM web application.
+  If only a host is provided as the value,
+  the webapp will be served on a random port.
+/description
 nameyarn.resourcemanager.webapp.address/name
 value${yarn.resourcemanager.hostname}:8088/value
   /property
 
   property
-descriptionThe https adddress of the RM web application./description
+description
+  The https address of the RM web application.
+  If only a host is provided as the value,
+  the webapp will be served on a random port.
+/description
 nameyarn.resourcemanager.webapp.https.address/name
 value${yarn.resourcemanager.hostname}:8090/value
   /property



hadoop git commit: YARN-20. More information for yarn.resourcemanager.webapp.address in yarn-default.xml (Bartosz Ługowski vai tgraves)

2015-05-08 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/trunk a2d40bced - f0f5e3c07


YARN-20. More information for yarn.resourcemanager.webapp.address in 
yarn-default.xml (Bartosz Ługowski vai tgraves)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/f0f5e3c0
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/f0f5e3c0
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/f0f5e3c0

Branch: refs/heads/trunk
Commit: f0f5e3c0751bcadcacd6d91e2c5504803ec3d0a5
Parents: a2d40bc
Author: Thomas Graves tgra...@apache.org
Authored: Fri May 8 17:20:09 2015 +
Committer: Thomas Graves tgra...@apache.org
Committed: Fri May 8 17:21:32 2015 +

--
 hadoop-yarn-project/CHANGES.txt |  3 +++
 .../src/main/resources/yarn-default.xml | 12 ++--
 2 files changed, 13 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/f0f5e3c0/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index b72c648..eb27152 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -196,6 +196,9 @@ Release 2.8.0 - UNRELEASED
 
 YARN-2784. Make POM project names consistent. (Rohith via devaraj)
 
+YARN-20. More information for yarn.resourcemanager.webapp.address in 
+yarn-default.xml (Bartosz Ługowski vai tgraves)
+
   OPTIMIZATIONS
 
 YARN-3339. TestDockerContainerExecutor should pull a single image and not

http://git-wip-us.apache.org/repos/asf/hadoop/blob/f0f5e3c0/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
index 5d0f07d..e1e0ebd 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml
@@ -111,13 +111,21 @@
   /property
 
   property
-descriptionThe http address of the RM web application./description
+description
+  The http address of the RM web application.
+  If only a host is provided as the value,
+  the webapp will be served on a random port.
+/description
 nameyarn.resourcemanager.webapp.address/name
 value${yarn.resourcemanager.hostname}:8088/value
   /property
 
   property
-descriptionThe https adddress of the RM web application./description
+description
+  The https address of the RM web application.
+  If only a host is provided as the value,
+  the webapp will be served on a random port.
+/description
 nameyarn.resourcemanager.webapp.https.address/name
 value${yarn.resourcemanager.hostname}:8090/value
   /property



hadoop git commit: YARN-3517. RM web ui for dumping scheduler logs should be for admins only (Varun Vasudev via tgraves)

2015-04-29 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/trunk 3dd6395bb - 2e215484b


YARN-3517. RM web ui for dumping scheduler logs should be for admins only 
(Varun Vasudev via tgraves)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2e215484
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2e215484
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2e215484

Branch: refs/heads/trunk
Commit: 2e215484bd05cd5e3b7a81d3558c6879a05dd2d2
Parents: 3dd6395
Author: tgraves tgra...@apache.org
Authored: Wed Apr 29 21:25:42 2015 +
Committer: tgraves tgra...@apache.org
Committed: Wed Apr 29 21:25:42 2015 +

--
 hadoop-yarn-project/CHANGES.txt |  3 +
 .../server/security/ApplicationACLsManager.java | 11 +++
 .../webapp/CapacitySchedulerPage.java   | 51 +
 .../resourcemanager/webapp/RMWebServices.java   | 13 +++-
 .../webapp/TestRMWebServices.java   | 77 
 5 files changed, 139 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e215484/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index b5581d6..6b8bde9 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -268,6 +268,9 @@ Release 2.8.0 - UNRELEASED
 YARN-2740. Fix NodeLabelsManager to properly handle node label 
modifications 
 when distributed node label configuration enabled. (Naganarasimha G R via 
wangda)
 
+YARN-3517. RM web ui for dumping scheduler logs should be for admins only
+(Varun Vasudev via tgraves)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e215484/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
index 4daaa68..97b4163 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
@@ -138,4 +138,15 @@ public class ApplicationACLsManager {
 }
 return false;
   }
+
+  /**
+   * Check if the given user in an admin.
+   *
+   * @param calledUGI
+   *  UserGroupInformation for the user
+   * @return true if the user is an admin, false otherwise
+   */
+  public final boolean isAdmin(final UserGroupInformation calledUGI) {
+return this.adminAclsManager.isAdmin(calledUGI);
+  }
 }

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e215484/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
index 2eeda66..fa22a0d 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
@@ -24,6 +24,7 @@ import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.Map;
 
+import org.apache.hadoop.security.UserGroupInformation;
 import org.apache.hadoop.util.StringUtils;
 import org.apache.hadoop.yarn.server.resourcemanager.ResourceManager;
 import org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerHealth;
@@ -33,6 +34,7 @@ import 
org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.UserInfo
 import 
org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerInfo;
 import 
org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerLeafQueueInfo;
 import

hadoop git commit: YARN-3517. RM web ui for dumping scheduler logs should be for admins only (Varun Vasudev via tgraves) (cherry picked from commit 2e215484bd05cd5e3b7a81d3558c6879a05dd2d2)

2015-04-29 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/branch-2 460127e6f - 2e13183f6


YARN-3517. RM web ui for dumping scheduler logs should be for admins only 
(Varun Vasudev via tgraves)
(cherry picked from commit 2e215484bd05cd5e3b7a81d3558c6879a05dd2d2)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2e13183f
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2e13183f
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2e13183f

Branch: refs/heads/branch-2
Commit: 2e13183f6010182aef7b1dfec2f9c1f1e9968011
Parents: 460127e
Author: tgraves tgra...@apache.org
Authored: Wed Apr 29 21:25:42 2015 +
Committer: tgraves tgra...@apache.org
Committed: Wed Apr 29 21:27:16 2015 +

--
 hadoop-yarn-project/CHANGES.txt |  3 +
 .../server/security/ApplicationACLsManager.java | 11 +++
 .../webapp/CapacitySchedulerPage.java   | 51 +
 .../resourcemanager/webapp/RMWebServices.java   | 13 +++-
 .../webapp/TestRMWebServices.java   | 77 
 5 files changed, 139 insertions(+), 16 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e13183f/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 98e42c1..8f4907f 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -220,6 +220,9 @@ Release 2.8.0 - UNRELEASED
 YARN-2740. Fix NodeLabelsManager to properly handle node label 
modifications 
 when distributed node label configuration enabled. (Naganarasimha G R via 
wangda)
 
+YARN-3517. RM web ui for dumping scheduler logs should be for admins only
+(Varun Vasudev via tgraves)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e13183f/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
index 4daaa68..97b4163 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/server/security/ApplicationACLsManager.java
@@ -138,4 +138,15 @@ public class ApplicationACLsManager {
 }
 return false;
   }
+
+  /**
+   * Check if the given user in an admin.
+   *
+   * @param calledUGI
+   *  UserGroupInformation for the user
+   * @return true if the user is an admin, false otherwise
+   */
+  public final boolean isAdmin(final UserGroupInformation calledUGI) {
+return this.adminAclsManager.isAdmin(calledUGI);
+  }
 }

http://git-wip-us.apache.org/repos/asf/hadoop/blob/2e13183f/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
index 2eeda66..fa22a0d 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/webapp/CapacitySchedulerPage.java
@@ -24,6 +24,7 @@ import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.Map;
 
+import org.apache.hadoop.security.UserGroupInformation;
 import org.apache.hadoop.util.StringUtils;
 import org.apache.hadoop.yarn.server.resourcemanager.ResourceManager;
 import org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerHealth;
@@ -33,6 +34,7 @@ import 
org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.UserInfo
 import 
org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.CapacitySchedulerInfo;
 import

hadoop git commit: YARN-3434. Interaction between reservations and userlimit can result in significant ULF violation (cherry picked from commit 189a63a719c63b67a1783a280bfc2f72dcb55277)

2015-04-23 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/branch-2 889b92fa4 - 1cd2fcf25


YARN-3434. Interaction between reservations and userlimit can result in 
significant ULF violation
(cherry picked from commit 189a63a719c63b67a1783a280bfc2f72dcb55277)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/1cd2fcf2
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/1cd2fcf2
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/1cd2fcf2

Branch: refs/heads/branch-2
Commit: 1cd2fcf25dc614c0567e6da776fef737640e4293
Parents: 889b92f
Author: tgraves tgra...@apache.org
Authored: Thu Apr 23 14:39:25 2015 +
Committer: tgraves tgra...@apache.org
Committed: Thu Apr 23 14:49:24 2015 +

--
 hadoop-yarn-project/CHANGES.txt |   3 +
 .../scheduler/ResourceLimits.java   |  28 +++-
 .../scheduler/capacity/AbstractCSQueue.java |  94 +--
 .../scheduler/capacity/LeafQueue.java   | 162 ---
 .../scheduler/capacity/TestReservations.java|  65 +---
 5 files changed, 186 insertions(+), 166 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/1cd2fcf2/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 8b09926..261e052 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -204,6 +204,9 @@ Release 2.8.0 - UNRELEASED
 YARN-3495. Confusing log generated by FairScheduler.
 (Brahma Reddy Battula via ozawa)
 
+YARN-3434. Interaction between reservations and userlimit can result in 
+significant ULF violation (tgraves)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/1cd2fcf2/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
index 12333e8..8074794 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
@@ -19,22 +19,44 @@
 package org.apache.hadoop.yarn.server.resourcemanager.scheduler;
 
 import org.apache.hadoop.yarn.api.records.Resource;
+import org.apache.hadoop.yarn.util.resource.Resources;
 
 /**
  * Resource limits for queues/applications, this means max overall (please note
  * that, it's not extra) resource you can get.
  */
 public class ResourceLimits {
+  volatile Resource limit;
+
+  // This is special limit that goes with the RESERVE_CONT_LOOK_ALL_NODES
+  // config. This limit indicates how much we need to unreserve to allocate
+  // another container.
+  private volatile Resource amountNeededUnreserve;
+
   public ResourceLimits(Resource limit) {
+this.amountNeededUnreserve = Resources.none();
 this.limit = limit;
   }
-  
-  volatile Resource limit;
+
+  public ResourceLimits(Resource limit, Resource amountNeededUnreserve) {
+this.amountNeededUnreserve = amountNeededUnreserve;
+this.limit = limit;
+  }
+
   public Resource getLimit() {
 return limit;
   }
-  
+
+  public Resource getAmountNeededUnreserve() {
+return amountNeededUnreserve;
+  }
+
   public void setLimit(Resource limit) {
 this.limit = limit;
   }
+
+  public void setAmountNeededUnreserve(Resource amountNeededUnreserve) {
+this.amountNeededUnreserve = amountNeededUnreserve;
+  }
+
 }

http://git-wip-us.apache.org/repos/asf/hadoop/blob/1cd2fcf2/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/AbstractCSQueue.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/AbstractCSQueue.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn

hadoop git commit: YARN-3434. Interaction between reservations and userlimit can result in significant ULF violation

2015-04-23 Thread tgraves
Repository: hadoop
Updated Branches:
  refs/heads/trunk baf8bc6c4 - 189a63a71


YARN-3434. Interaction between reservations and userlimit can result in 
significant ULF violation


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/189a63a7
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/189a63a7
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/189a63a7

Branch: refs/heads/trunk
Commit: 189a63a719c63b67a1783a280bfc2f72dcb55277
Parents: baf8bc6
Author: tgraves tgra...@apache.org
Authored: Thu Apr 23 14:39:25 2015 +
Committer: tgraves tgra...@apache.org
Committed: Thu Apr 23 14:39:25 2015 +

--
 hadoop-yarn-project/CHANGES.txt |   3 +
 .../scheduler/ResourceLimits.java   |  28 +++-
 .../scheduler/capacity/AbstractCSQueue.java |  94 +--
 .../scheduler/capacity/LeafQueue.java   | 162 ---
 .../scheduler/capacity/TestReservations.java|  65 +---
 5 files changed, 186 insertions(+), 166 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/189a63a7/hadoop-yarn-project/CHANGES.txt
--
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index f4413a8..d335389 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -252,6 +252,9 @@ Release 2.8.0 - UNRELEASED
 YARN-3495. Confusing log generated by FairScheduler.
 (Brahma Reddy Battula via ozawa)
 
+YARN-3434. Interaction between reservations and userlimit can result in 
+significant ULF violation (tgraves)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/189a63a7/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
index 12333e8..8074794 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/ResourceLimits.java
@@ -19,22 +19,44 @@
 package org.apache.hadoop.yarn.server.resourcemanager.scheduler;
 
 import org.apache.hadoop.yarn.api.records.Resource;
+import org.apache.hadoop.yarn.util.resource.Resources;
 
 /**
  * Resource limits for queues/applications, this means max overall (please note
  * that, it's not extra) resource you can get.
  */
 public class ResourceLimits {
+  volatile Resource limit;
+
+  // This is special limit that goes with the RESERVE_CONT_LOOK_ALL_NODES
+  // config. This limit indicates how much we need to unreserve to allocate
+  // another container.
+  private volatile Resource amountNeededUnreserve;
+
   public ResourceLimits(Resource limit) {
+this.amountNeededUnreserve = Resources.none();
 this.limit = limit;
   }
-  
-  volatile Resource limit;
+
+  public ResourceLimits(Resource limit, Resource amountNeededUnreserve) {
+this.amountNeededUnreserve = amountNeededUnreserve;
+this.limit = limit;
+  }
+
   public Resource getLimit() {
 return limit;
   }
-  
+
+  public Resource getAmountNeededUnreserve() {
+return amountNeededUnreserve;
+  }
+
   public void setLimit(Resource limit) {
 this.limit = limit;
   }
+
+  public void setAmountNeededUnreserve(Resource amountNeededUnreserve) {
+this.amountNeededUnreserve = amountNeededUnreserve;
+  }
+
 }

http://git-wip-us.apache.org/repos/asf/hadoop/blob/189a63a7/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/AbstractCSQueue.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/AbstractCSQueue.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/main/java/org/apache/hadoop/yarn/server/resourcemanager/scheduler/capacity/AbstractCSQueue.java
index 9233e01

svn commit: r1606091 - in /hadoop/common/tags: release-0.23.11-rc0/ release-0.23.11/

2014-06-27 Thread tgraves
Author: tgraves
Date: Fri Jun 27 13:25:29 2014
New Revision: 1606091

URL: http://svn.apache.org/r1606091
Log:
Hadoop 0.23.11 release.

Added:
hadoop/common/tags/release-0.23.11/   (props changed)
  - copied from r1606090, hadoop/common/tags/release-0.23.11-rc0/
Removed:
hadoop/common/tags/release-0.23.11-rc0/

Propchange: hadoop/common/tags/release-0.23.11/
--
--- svn:ignore (added)
+++ svn:ignore Fri Jun 27 13:25:29 2014
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.11/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Jun 27 13:25:29 2014
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1603641 - /hadoop/common/branches/branch-0.23.11/

2014-06-18 Thread tgraves
Author: tgraves
Date: Wed Jun 18 21:43:10 2014
New Revision: 1603641

URL: http://svn.apache.org/r1603641
Log:
Branching for 0.23.11 releases

Added:
hadoop/common/branches/branch-0.23.11/   (props changed)
  - copied from r1603640, hadoop/common/branches/branch-0.23/

Propchange: hadoop/common/branches/branch-0.23.11/
--
--- svn:ignore (added)
+++ svn:ignore Wed Jun 18 21:43:10 2014
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/branches/branch-0.23.11/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Wed Jun 18 21:43:10 2014
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1603642 - in /hadoop/common/branches/branch-0.23: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/had

2014-06-18 Thread tgraves
Author: tgraves
Date: Wed Jun 18 21:47:05 2014
New Revision: 1603642

URL: http://svn.apache.org/r1603642
Log:
Preparing for 0.23.12 development

Modified:
hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml Wed Jun 18 
21:47:05 2014
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-client/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-client/pom.xml Wed Jun 18 
21:47:05 2014
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml Wed Jun 18 21:47:05 
2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml Wed Jun 18 
21:47:05 2014
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Mini

svn commit: r1603642 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/CHANGES.txt hadoop-common

2014-06-18 Thread tgraves
Author: tgraves
Date: Wed Jun 18 21:47:05 2014
New Revision: 1603642

URL: http://svn.apache.org/r1603642
Log:
Preparing for 0.23.12 development

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Wed Jun 18 21:47:05 2014
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 Wed Jun 18 21:47:05 2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
Wed Jun 18 21:47:05 2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.12-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.12-SNAPSHOT/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1603642r1=1603641r2=1603642view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Wed Jun 18 21:47:05 2014
@@ -1,6 +1,18 @@
 Hadoop Change Log
 
-Release 0.23.11 - UNRELEASED
+Release 0.23.12 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
+Release 0.23.11 - 2014-06-26
 
   INCOMPATIBLE CHANGES
 

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml?rev=1603642r1=1603641r2=1603642view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project

svn commit: r1603694 - in /hadoop/common/branches/branch-0.23.11: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/

2014-06-18 Thread tgraves
Author: tgraves
Date: Thu Jun 19 01:17:43 2014
New Revision: 1603694

URL: http://svn.apache.org/r1603694
Log:
Preparing for release 0.23.11

Modified:
hadoop/common/branches/branch-0.23.11/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23.11/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23.11/pom.xml

Modified: hadoop/common/branches/branch-0.23.11/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-assemblies/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- hadoop/common/branches/branch-0.23.11/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.11/hadoop-assemblies/pom.xml Thu Jun 19 
01:17:43 2014
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23.11/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-client/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- hadoop/common/branches/branch-0.23.11/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.11/hadoop-client/pom.xml Thu Jun 19 
01:17:43 2014
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23.11/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-dist/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- hadoop/common/branches/branch-0.23.11/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.11/hadoop-dist/pom.xml Thu Jun 19 
01:17:43 2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23.11/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-minicluster/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- hadoop/common/branches/branch-0.23.11/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.11/hadoop-minicluster/pom.xml Thu Jun 19 
01:17:43 2014
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   packagingjar/packaging

svn commit: r1603694 [3/3] - in /hadoop/common/branches/branch-0.23.11/hadoop-common-project: ./ hadoop-annotations/ hadoop-auth-examples/ hadoop-auth/ hadoop-common/ hadoop-common/src/main/docs/

2014-06-18 Thread tgraves
Modified: hadoop/common/branches/branch-0.23.11/hadoop-common-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-common-project/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- hadoop/common/branches/branch-0.23.11/hadoop-common-project/pom.xml 
(original)
+++ hadoop/common/branches/branch-0.23.11/hadoop-common-project/pom.xml Thu Jun 
19 01:17:43 2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common-project/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   descriptionApache Hadoop Common Project/description
   nameApache Hadoop Common Project/name
   packagingpom/packaging




svn commit: r1603694 [1/3] - in /hadoop/common/branches/branch-0.23.11/hadoop-common-project: ./ hadoop-annotations/ hadoop-auth-examples/ hadoop-auth/ hadoop-common/ hadoop-common/src/main/docs/

2014-06-18 Thread tgraves
Author: tgraves
Date: Thu Jun 19 01:17:43 2014
New Revision: 1603694

URL: http://svn.apache.org/r1603694
Log:
Preparing for release 0.23.11

Modified:

hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth-examples/pom.xml

hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/pom.xml

hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/src/main/docs/releasenotes.html
hadoop/common/branches/branch-0.23.11/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-annotations/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-annotations/pom.xml
 Thu Jun 19 01:17:43 2014
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth-examples/pom.xml
 Thu Jun 19 01:17:43 2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-auth/pom.xml 
Thu Jun 19 01:17:43 2014
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.11-SNAPSHOT/version
+version0.23.11/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.11-SNAPSHOT/version
+  version0.23.11/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1603694r1=1603693r2=1603694view=diff
==
--- 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/CHANGES.txt
 Thu Jun 19 01:17:43 2014
@@ -1,6 +1,6 @@
 Hadoop Change Log
 
-Release 0.23.11 - UNRELEASED
+Release 0.23.11 - 2014-06-26
 
   INCOMPATIBLE CHANGES
 

Modified: 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/pom.xml?rev=1603694r1=1603693r2=1603694view=diff
==
--- 
hadoop/common/branches/branch-0.23.11/hadoop-common-project/hadoop-common/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.11/hadoop-common

svn commit: r1603696 - /hadoop/common/tags/release-0.23.11-rc0/

2014-06-18 Thread tgraves
Author: tgraves
Date: Thu Jun 19 01:32:25 2014
New Revision: 1603696

URL: http://svn.apache.org/r1603696
Log:
Hadoop 0.23.11-rc0 release.

Added:
hadoop/common/tags/release-0.23.11-rc0/   (props changed)
  - copied from r1603695, hadoop/common/branches/branch-0.23.11/

Propchange: hadoop/common/tags/release-0.23.11-rc0/
--
--- svn:ignore (added)
+++ svn:ignore Thu Jun 19 01:32:25 2014
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.11-rc0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Thu Jun 19 01:32:25 2014
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1550240 - in /hadoop/common/site/main: author/src/documentation/content/xdocs/ publish/ publish/docs/r0.23.10/ publish/docs/r0.23.10/api/ publish/docs/r0.23.10/api/org/ publish/docs/r0.23

2013-12-11 Thread tgraves
Author: tgraves
Date: Wed Dec 11 19:38:50 2013
New Revision: 1550240

URL: http://svn.apache.org/r1550240
Log:
Updated site for release 0.23.10


[This commit notification would consist of 606 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1549854 - in /hadoop/common/tags: release-0.23.10-rc0/ release-0.23.10/

2013-12-10 Thread tgraves
Author: tgraves
Date: Tue Dec 10 14:48:45 2013
New Revision: 1549854

URL: http://svn.apache.org/r1549854
Log:
Hadoop 0.23.10 release

Added:
hadoop/common/tags/release-0.23.10/   (props changed)
  - copied from r1549853, hadoop/common/tags/release-0.23.10-rc0/
Removed:
hadoop/common/tags/release-0.23.10-rc0/

Propchange: hadoop/common/tags/release-0.23.10/
--
--- svn:ignore (added)
+++ svn:ignore Tue Dec 10 14:48:45 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.10/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Dec 10 14:48:45 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1547273 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:00:59 2013
New Revision: 1547273

URL: http://svn.apache.org/r1547273
Log:
Preparing for release 0.23.10

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1547273r1=1547272r2=1547273view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Tue Dec  3 04:00:59 2013
@@ -1,6 +1,6 @@
 Hadoop Change Log
 
-Release 0.23.10 - UNRELEASED
+Release 0.23.10 - 2013-12-09
 
   INCOMPATIBLE CHANGES
 




svn commit: r1547274 - /hadoop/common/branches/branch-0.23.10/

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:02:08 2013
New Revision: 1547274

URL: http://svn.apache.org/r1547274
Log:
Branching for 0.23.10 release

Added:
hadoop/common/branches/branch-0.23.10/   (props changed)
  - copied from r1547273, hadoop/common/branches/branch-0.23/

Propchange: hadoop/common/branches/branch-0.23.10/
--
--- svn:ignore (added)
+++ svn:ignore Tue Dec  3 04:02:08 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/branches/branch-0.23.10/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Dec  3 04:02:08 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1547275 - in /hadoop/common/branches/branch-0.23: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/had

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:06:37 2013
New Revision: 1547275

URL: http://svn.apache.org/r1547275
Log:
Preparing for 0.23.11 development

Modified:
hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml Tue Dec  3 
04:06:37 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-client/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-client/pom.xml Tue Dec  3 
04:06:37 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml Tue Dec  3 04:06:37 
2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml Tue Dec  3 
04:06:37 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Mini

svn commit: r1547275 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/CHANGES.txt hadoop-common

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:06:37 2013
New Revision: 1547275

URL: http://svn.apache.org/r1547275
Log:
Preparing for 0.23.11 development

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Tue Dec  3 04:06:37 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 Tue Dec  3 04:06:37 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
Tue Dec  3 04:06:37 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.11-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.11-SNAPSHOT/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1547275r1=1547274r2=1547275view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Tue Dec  3 04:06:37 2013
@@ -1,5 +1,17 @@
 Hadoop Change Log
 
+Release 0.23.11 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
 Release 0.23.10 - 2013-12-09
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml?rev=1547275r1=1547274r2=1547275view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml

svn commit: r1547276 [3/3] - in /hadoop/common/branches/branch-0.23.10/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-c

2013-12-02 Thread tgraves
Modified: hadoop/common/branches/branch-0.23.10/hadoop-common-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-common-project/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- hadoop/common/branches/branch-0.23.10/hadoop-common-project/pom.xml 
(original)
+++ hadoop/common/branches/branch-0.23.10/hadoop-common-project/pom.xml Tue Dec 
 3 04:11:20 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common-project/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   descriptionApache Hadoop Common Project/description
   nameApache Hadoop Common Project/name
   packagingpom/packaging




svn commit: r1547276 [1/3] - in /hadoop/common/branches/branch-0.23.10/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-c

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:11:20 2013
New Revision: 1547276

URL: http://svn.apache.org/r1547276
Log:
Preparing for release 0.23.10

Modified:

hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth-examples/pom.xml

hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-common/pom.xml

hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-common/src/main/docs/releasenotes.html
hadoop/common/branches/branch-0.23.10/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-annotations/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-annotations/pom.xml
 Tue Dec  3 04:11:20 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth-examples/pom.xml
 Tue Dec  3 04:11:20 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-auth/pom.xml 
Tue Dec  3 04:11:20 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-common/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-common/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.10/hadoop-common-project/hadoop-common/pom.xml
 Tue Dec  3 04:11:20 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project-dist/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../../hadoop-project-dist/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   descriptionApache Hadoop Common/description
   nameApache Hadoop Common/name
   packagingjar/packaging




svn commit: r1547276 - in /hadoop/common/branches/branch-0.23.10: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:11:20 2013
New Revision: 1547276

URL: http://svn.apache.org/r1547276
Log:
Preparing for release 0.23.10

Modified:
hadoop/common/branches/branch-0.23.10/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23.10/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23.10/pom.xml

Modified: hadoop/common/branches/branch-0.23.10/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-assemblies/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- hadoop/common/branches/branch-0.23.10/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.10/hadoop-assemblies/pom.xml Tue Dec  3 
04:11:20 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23.10/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-client/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- hadoop/common/branches/branch-0.23.10/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.10/hadoop-client/pom.xml Tue Dec  3 
04:11:20 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23.10/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-dist/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- hadoop/common/branches/branch-0.23.10/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.10/hadoop-dist/pom.xml Tue Dec  3 
04:11:20 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23.10/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.10/hadoop-minicluster/pom.xml?rev=1547276r1=1547275r2=1547276view=diff
==
--- hadoop/common/branches/branch-0.23.10/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.10/hadoop-minicluster/pom.xml Tue Dec  3 
04:11:20 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.10-SNAPSHOT/version
+version0.23.10/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.10-SNAPSHOT/version
+  version0.23.10/version
   packagingjar/packaging

svn commit: r1547277 - /hadoop/common/tags/release-0.23.10-rc0/

2013-12-02 Thread tgraves
Author: tgraves
Date: Tue Dec  3 04:13:20 2013
New Revision: 1547277

URL: http://svn.apache.org/r1547277
Log:
Hadoop 0.23.10-rc0 release

Added:
hadoop/common/tags/release-0.23.10-rc0/   (props changed)
  - copied from r1547276, hadoop/common/branches/branch-0.23.10/

Propchange: hadoop/common/tags/release-0.23.10-rc0/
--
--- svn:ignore (added)
+++ svn:ignore Tue Dec  3 04:13:20 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.10-rc0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Dec  3 04:13:20 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1501770 - in /hadoop/common/site/main: author/src/documentation/content/xdocs/ publish/ publish/docs/r0.23.9/ publish/docs/r0.23.9/api/ publish/docs/r0.23.9/api/org/ publish/docs/r0.23.9/

2013-07-10 Thread tgraves
Author: tgraves
Date: Wed Jul 10 13:59:44 2013
New Revision: 1501770

URL: http://svn.apache.org/r1501770
Log:
Updated site for release 0.23.9


[This commit notification would consist of 626 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1501467 - in /hadoop/common/tags: release-0.23.9-rc0/ release-0.23.9/

2013-07-09 Thread tgraves
Author: tgraves
Date: Tue Jul  9 19:12:16 2013
New Revision: 1501467

URL: http://svn.apache.org/r1501467
Log:
Hadoop 0.23.9 release.

Added:
hadoop/common/tags/release-0.23.9/   (props changed)
  - copied from r1501466, hadoop/common/tags/release-0.23.9-rc0/
Removed:
hadoop/common/tags/release-0.23.9-rc0/

Propchange: hadoop/common/tags/release-0.23.9/
--
--- svn:ignore (added)
+++ svn:ignore Tue Jul  9 19:12:16 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.9/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Jul  9 19:12:16 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1498462 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-07-01 Thread tgraves
Author: tgraves
Date: Mon Jul  1 14:07:28 2013
New Revision: 1498462

URL: http://svn.apache.org/r1498462
Log:
Preparing for release 0.23.9

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1498462r1=1498461r2=1498462view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Mon Jul  1 14:07:28 2013
@@ -1,6 +1,6 @@
 Hadoop Change Log
 
-Release 0.23.9 - UNRELEASED
+Release 0.23.9 - 2013-07-08
 
   INCOMPATIBLE CHANGES
 




svn commit: r1498464 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/CHANGES.txt hadoop-common

2013-07-01 Thread tgraves
Author: tgraves
Date: Mon Jul  1 14:11:35 2013
New Revision: 1498464

URL: http://svn.apache.org/r1498464
Log:
Preparing for 0.23.10 development

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Mon Jul  1 14:11:35 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 Mon Jul  1 14:11:35 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
Mon Jul  1 14:11:35 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1498464r1=1498463r2=1498464view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Mon Jul  1 14:11:35 2013
@@ -1,5 +1,17 @@
 Hadoop Change Log
 
+Release 0.23.10 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
 Release 0.23.9 - 2013-07-08
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
Mon Jul  1 14:11:35

svn commit: r1498464 - in /hadoop/common/branches/branch-0.23: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/had

2013-07-01 Thread tgraves
Author: tgraves
Date: Mon Jul  1 14:11:35 2013
New Revision: 1498464

URL: http://svn.apache.org/r1498464
Log:
Preparing for 0.23.10 development

Modified:
hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml Mon Jul  1 
14:11:35 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-client/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-client/pom.xml Mon Jul  1 
14:11:35 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml Mon Jul  1 14:11:35 
2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml?rev=1498464r1=1498463r2=1498464view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml Mon Jul  1 
14:11:35 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.10-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.10-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Mini-Cluster

svn commit: r1498472 [3/3] - in /hadoop/common/branches/branch-0.23.9/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-co

2013-07-01 Thread tgraves
Modified: hadoop/common/branches/branch-0.23.9/hadoop-common-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.9/hadoop-common-project/pom.xml?rev=1498472r1=1498471r2=1498472view=diff
==
--- hadoop/common/branches/branch-0.23.9/hadoop-common-project/pom.xml 
(original)
+++ hadoop/common/branches/branch-0.23.9/hadoop-common-project/pom.xml Mon Jul  
1 14:21:59 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.9-SNAPSHOT/version
+version0.23.9/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common-project/artifactId
-  version0.23.9-SNAPSHOT/version
+  version0.23.9/version
   descriptionApache Hadoop Common Project/description
   nameApache Hadoop Common Project/name
   packagingpom/packaging




svn commit: r1498473 - /hadoop/common/tags/release-0.23.9-rc0/

2013-07-01 Thread tgraves
Author: tgraves
Date: Mon Jul  1 14:22:28 2013
New Revision: 1498473

URL: http://svn.apache.org/r1498473
Log:
Hadoop 0.23.9-rc0 release

Added:
hadoop/common/tags/release-0.23.9-rc0/   (props changed)
  - copied from r1498472, hadoop/common/branches/branch-0.23.9/

Propchange: hadoop/common/tags/release-0.23.9-rc0/
--
--- svn:ignore (added)
+++ svn:ignore Mon Jul  1 14:22:28 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.9-rc0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Mon Jul  1 14:22:28 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1498478 - /hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

2013-07-01 Thread tgraves
Author: tgraves
Date: Mon Jul  1 14:27:48 2013
New Revision: 1498478

URL: http://svn.apache.org/r1498478
Log:
Preparing for 0.23.9 release

Modified:

hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1498478r1=1498477r2=1498478view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
Mon Jul  1 14:27:48 2013
@@ -1592,7 +1592,19 @@ Release 2.0.0-alpha - 05-23-2012
 HADOOP-7606. Upgrade Jackson to version 1.7.1 to match the version required
 by Jersey (Alejandro Abdelnur via atm)
 
-Release 0.23.9 - UNRELEASED
+Release 0.23.10 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
+Release 0.23.9 - 2013-07-08
 
   INCOMPATIBLE CHANGES
 




svn commit: r1489909 - /hadoop/common/branches/branch-2.1-beta/hadoop-common-project/hadoop-common/CHANGES.txt

2013-06-05 Thread tgraves
Author: tgraves
Date: Wed Jun  5 15:10:26 2013
New Revision: 1489909

URL: http://svn.apache.org/r1489909
Log:
Updating release date for 0.23.8

Modified:

hadoop/common/branches/branch-2.1-beta/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-2.1-beta/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2.1-beta/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1489909r1=1489908r2=1489909view=diff
==
--- 
hadoop/common/branches/branch-2.1-beta/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-2.1-beta/hadoop-common-project/hadoop-common/CHANGES.txt
 Wed Jun  5 15:10:26 2013
@@ -1419,7 +1419,20 @@ Release 2.0.0-alpha - 05-23-2012
 HADOOP-8655. Fix TextInputFormat for large deliminators. (Gelesh via
 bobby) 
 
-Release 0.23.8 - UNRELEASED
+Release 0.23.9 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
+Release 0.23.8 - 2013-06-05
+
 
   INCOMPATIBLE CHANGES
 
@@ -1446,7 +1459,7 @@ Release 0.23.8 - UNRELEASED
 HADOOP-9614. smart-test-patch.sh hangs for new version of patch (2.7.1)
 (Ravi Prakash via jeagles)
 
-Release 0.23.7 - UNRELEASED
+Release 0.23.7 - 2013-04-18
 
   INCOMPATIBLE CHANGES
 
@@ -1491,7 +1504,7 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9339. IPC.Server incorrectly sets UGI auth type (Daryn Sharp via 
 kihwal)
 
-Release 0.23.6 - UNRELEASED
+Release 0.23.6 - 2013-02-06
 
   INCOMPATIBLE CHANGES
 




svn commit: r1489589 - in /hadoop/common/tags: release-0.23.8-rc0/ release-0.23.8/

2013-06-04 Thread tgraves
Author: tgraves
Date: Tue Jun  4 20:09:42 2013
New Revision: 1489589

URL: http://svn.apache.org/r1489589
Log:
Hadoop 0.23.8 release

Added:
hadoop/common/tags/release-0.23.8/   (props changed)
  - copied from r1489588, hadoop/common/tags/release-0.23.8-rc0/
Removed:
hadoop/common/tags/release-0.23.8-rc0/

Propchange: hadoop/common/tags/release-0.23.8/
--
--- svn:ignore (added)
+++ svn:ignore Tue Jun  4 20:09:42 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.8/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue Jun  4 20:09:42 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1486952 - /hadoop/common/branches/branch-0.23.8/

2013-05-28 Thread tgraves
Author: tgraves
Date: Tue May 28 15:05:08 2013
New Revision: 1486952

URL: http://svn.apache.org/r1486952
Log:
Branching for 0.23.8 release

Added:
hadoop/common/branches/branch-0.23.8/   (props changed)
  - copied from r1486951, hadoop/common/branches/branch-0.23/

Propchange: hadoop/common/branches/branch-0.23.8/
--
--- svn:ignore (added)
+++ svn:ignore Tue May 28 15:05:08 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/branches/branch-0.23.8/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue May 28 15:05:08 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1486958 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/CHANGES.txt hadoop-common

2013-05-28 Thread tgraves
Author: tgraves
Date: Tue May 28 15:11:05 2013
New Revision: 1486958

URL: http://svn.apache.org/r1486958
Log:
Preparing for 0.23.9 development

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Tue May 28 15:11:05 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 Tue May 28 15:11:05 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
Tue May 28 15:11:05 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1486958r1=1486957r2=1486958view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Tue May 28 15:11:05 2013
@@ -1,5 +1,17 @@
 Hadoop Change Log
 
+Release 0.23.9 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
 Release 0.23.8 - UNRELEASED
   
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
Tue May 28 15:11:05 2013

svn commit: r1486958 - in /hadoop/common/branches/branch-0.23: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/had

2013-05-28 Thread tgraves
Author: tgraves
Date: Tue May 28 15:11:05 2013
New Revision: 1486958

URL: http://svn.apache.org/r1486958
Log:
Preparing for 0.23.9 development

Modified:
hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml Tue May 28 
15:11:05 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-client/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-client/pom.xml Tue May 28 
15:11:05 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml Tue May 28 15:11:05 
2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml?rev=1486958r1=1486957r2=1486958view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml Tue May 28 
15:11:05 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.9-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.9-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Mini-Cluster

svn commit: r1486960 - in /hadoop/common/branches/branch-0.23.8: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/h

2013-05-28 Thread tgraves
Author: tgraves
Date: Tue May 28 15:15:18 2013
New Revision: 1486960

URL: http://svn.apache.org/r1486960
Log:
Preparing for release 0.23.8

Modified:
hadoop/common/branches/branch-0.23.8/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23.8/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23.8/pom.xml

Modified: hadoop/common/branches/branch-0.23.8/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-assemblies/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- hadoop/common/branches/branch-0.23.8/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.8/hadoop-assemblies/pom.xml Tue May 28 
15:15:18 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23.8/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-client/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- hadoop/common/branches/branch-0.23.8/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.8/hadoop-client/pom.xml Tue May 28 
15:15:18 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23.8/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-dist/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- hadoop/common/branches/branch-0.23.8/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.8/hadoop-dist/pom.xml Tue May 28 
15:15:18 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23.8/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-minicluster/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- hadoop/common/branches/branch-0.23.8/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.8/hadoop-minicluster/pom.xml Tue May 28 
15:15:18 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   packagingjar/packaging
 
   descriptionApache Hadoop Mini-Cluster/description

svn commit: r1486960 [3/3] - in /hadoop/common/branches/branch-0.23.8/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-co

2013-05-28 Thread tgraves
Modified: hadoop/common/branches/branch-0.23.8/hadoop-common-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-common-project/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- hadoop/common/branches/branch-0.23.8/hadoop-common-project/pom.xml 
(original)
+++ hadoop/common/branches/branch-0.23.8/hadoop-common-project/pom.xml Tue May 
28 15:15:18 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common-project/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   descriptionApache Hadoop Common Project/description
   nameApache Hadoop Common Project/name
   packagingpom/packaging




svn commit: r1486960 [1/3] - in /hadoop/common/branches/branch-0.23.8/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-co

2013-05-28 Thread tgraves
Author: tgraves
Date: Tue May 28 15:15:18 2013
New Revision: 1486960

URL: http://svn.apache.org/r1486960
Log:
Preparing for release 0.23.8

Modified:

hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth-examples/pom.xml

hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-common/pom.xml

hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-common/src/main/docs/releasenotes.html
hadoop/common/branches/branch-0.23.8/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-annotations/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-annotations/pom.xml
 Tue May 28 15:15:18 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth-examples/pom.xml
 Tue May 28 15:15:18 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-auth/pom.xml 
Tue May 28 15:15:18 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-common/pom.xml?rev=1486960r1=1486959r2=1486960view=diff
==
--- 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-common/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.8/hadoop-common-project/hadoop-common/pom.xml
 Tue May 28 15:15:18 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project-dist/artifactId
-version0.23.8-SNAPSHOT/version
+version0.23.8/version
 relativePath../../hadoop-project-dist/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common/artifactId
-  version0.23.8-SNAPSHOT/version
+  version0.23.8/version
   descriptionApache Hadoop Common/description
   nameApache Hadoop Common/name
   packagingjar/packaging




svn commit: r1486963 - /hadoop/common/tags/release-0.23.8-rc0/

2013-05-28 Thread tgraves
Author: tgraves
Date: Tue May 28 15:18:01 2013
New Revision: 1486963

URL: http://svn.apache.org/r1486963
Log:
Hadoop 0.23.8-rc0 release

Added:
hadoop/common/tags/release-0.23.8-rc0/   (props changed)
  - copied from r1486962, hadoop/common/branches/branch-0.23.8/

Propchange: hadoop/common/tags/release-0.23.8-rc0/
--
--- svn:ignore (added)
+++ svn:ignore Tue May 28 15:18:01 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.8-rc0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Tue May 28 15:18:01 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1470013 - in /hadoop/common/site/main: author/src/documentation/content/xdocs/ publish/ publish/docs/r0.23.7/ publish/docs/r0.23.7/api/ publish/docs/r0.23.7/api/org/ publish/docs/r0.23.7/

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 20:01:19 2013
New Revision: 1470013

URL: http://svn.apache.org/r1470013
Log:
Updated site for release 0.23.7.


[This commit notification would consist of 626 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


svn commit: r1470047 - /hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 21:18:05 2013
New Revision: 1470047

URL: http://svn.apache.org/r1470047
Log:
HADOOP-9469. mapreduce/yarn source jars not included in dist tarball (Robert 
Parker via tgraves)

Modified:
hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1470047r1=1470046r2=1470047view=diff
==
--- hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt Fri Apr 
19 21:18:05 2013
@@ -1648,6 +1648,9 @@ Release 0.23.8 - UNRELEASED
 HADOOP-9233. Cover package org.apache.hadoop.io.compress.zlib with unit
 tests (Vadim Bondarev via jlowe)
 
+HADOOP-9469. mapreduce/yarn source jars not included in dist tarball
+(Robert Parker via tgraves)
+
 Release 0.23.7 - UNRELEASED
 
   INCOMPATIBLE CHANGES




svn commit: r1470047 - in /hadoop/common/trunk: hadoop-assemblies/src/main/resources/assemblies/ hadoop-project/

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 21:18:05 2013
New Revision: 1470047

URL: http://svn.apache.org/r1470047
Log:
HADOOP-9469. mapreduce/yarn source jars not included in dist tarball (Robert 
Parker via tgraves)

Modified:

hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml

hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml

hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-yarn-dist.xml
hadoop/common/trunk/hadoop-project/pom.xml

Modified: 
hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml?rev=1470047r1=1470046r2=1470047view=diff
==
--- 
hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
 (original)
+++ 
hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
 Fri Apr 19 21:18:05 2013
@@ -91,6 +91,62 @@
   directory${project.build.directory}/site/directory
   outputDirectory/share/doc/hadoop/${hadoop.component}/outputDirectory
 /fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-app/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-common/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-core/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-hs-plugins/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  directoryhadoop-mapreduce-examples/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
   /fileSets
   moduleSets
 moduleSet

Modified: 
hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml?rev=1470047r1=1470046r2=1470047view=diff
==
--- 
hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
 (original)
+++ 
hadoop/common/trunk/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
 Fri Apr 19 21:18:05 2013
@@ -9,7 +9,7 @@
http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an AS IS BASIS,
+   distributed under the Li2cense is distributed on an AS IS BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@@ -44,6 +44,55 @@
   /includes
   outputDirectorylib/native/outputDirectory
 /fileSet
+fileSet
+  directory../hadoop-archives/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  directory../hadoop-datajoin/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include

svn commit: r1470058 - in /hadoop/common/branches/branch-0.23: hadoop-assemblies/src/main/resources/assemblies/ hadoop-project/

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 21:58:22 2013
New Revision: 1470058

URL: http://svn.apache.org/r1470058
Log:
HADOOP-9469. mapreduce/yarn source jars not included in dist tarball Robert 
Parker via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml

hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml

hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-yarn-dist.xml
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml?rev=1470058r1=1470057r2=1470058view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
 Fri Apr 19 21:58:22 2013
@@ -91,6 +91,62 @@
   directory${project.build.directory}/site/directory
   outputDirectory/share/doc/hadoop/${hadoop.component}/outputDirectory
 /fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-app/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-common/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-core/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-hs-plugins/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  directoryhadoop-mapreduce-examples/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
   /fileSets
   moduleSets
 moduleSet

Modified: 
hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml?rev=1470058r1=1470057r2=1470058view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
 Fri Apr 19 21:58:22 2013
@@ -9,7 +9,7 @@
http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an AS IS BASIS,
+   distributed under the Li2cense is distributed on an AS IS BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@@ -44,6 +44,55 @@
   /includes
   outputDirectorylib/native/outputDirectory
 /fileSet
+fileSet
+  directory../hadoop-archives/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet

svn commit: r1470058 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 21:58:22 2013
New Revision: 1470058

URL: http://svn.apache.org/r1470058
Log:
HADOOP-9469. mapreduce/yarn source jars not included in dist tarball Robert 
Parker via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1470058r1=1470057r2=1470058view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Apr 19 21:58:22 2013
@@ -18,6 +18,9 @@ Release 0.23.8 - UNRELEASED
 HADOOP-9233. Cover package org.apache.hadoop.io.compress.zlib with unit
 tests (Vadim Bondarev via jlowe)
 
+HADOOP-9469. mapreduce/yarn source jars not included in dist tarball
+(Robert Parker via tgraves)
+
 Release 0.23.7 - 2013-04-18
 
   INCOMPATIBLE CHANGES




svn commit: r1470059 - /hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 21:59:31 2013
New Revision: 1470059

URL: http://svn.apache.org/r1470059
Log:
HADOOP-9469. mapreduce/yarn source jars not included in dist tarball Robert 
Parker via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1470059r1=1470058r2=1470059view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
Fri Apr 19 21:59:31 2013
@@ -1156,6 +1156,9 @@ Release 0.23.8 - UNRELEASED
 HADOOP-9233. Cover package org.apache.hadoop.io.compress.zlib with unit
 tests (Vadim Bondarev via jlowe)
 
+HADOOP-9469. mapreduce/yarn source jars not included in dist tarball
+(Robert Parker via tgraves)
+
 Release 0.23.7 - UNRELEASED
 
   INCOMPATIBLE CHANGES




svn commit: r1470059 - in /hadoop/common/branches/branch-2: hadoop-assemblies/src/main/resources/assemblies/ hadoop-project/

2013-04-19 Thread tgraves
Author: tgraves
Date: Fri Apr 19 21:59:31 2013
New Revision: 1470059

URL: http://svn.apache.org/r1470059
Log:
HADOOP-9469. mapreduce/yarn source jars not included in dist tarball Robert 
Parker via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml

hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml

hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-yarn-dist.xml
hadoop/common/branches/branch-2/hadoop-project/pom.xml

Modified: 
hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml?rev=1470059r1=1470058r2=1470059view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-mapreduce-dist.xml
 Fri Apr 19 21:59:31 2013
@@ -91,6 +91,62 @@
   directory${project.build.directory}/site/directory
   outputDirectory/share/doc/hadoop/${hadoop.component}/outputDirectory
 /fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-app/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-common/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-core/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-hs/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-hs-plugins/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-jobclient/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  
directoryhadoop-mapreduce-client/hadoop-mapreduce-client-shuffle/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  directoryhadoop-mapreduce-examples/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
   /fileSets
   moduleSets
 moduleSet

Modified: 
hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml?rev=1470059r1=1470058r2=1470059view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-assemblies/src/main/resources/assemblies/hadoop-tools.xml
 Fri Apr 19 21:59:31 2013
@@ -9,7 +9,7 @@
http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
-   distributed under the License is distributed on an AS IS BASIS,
+   distributed under the Li2cense is distributed on an AS IS BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
@@ -44,6 +44,55 @@
   /includes
   outputDirectorylib/native/outputDirectory
 /fileSet
+fileSet
+  directory../hadoop-archives/target/directory
+  
outputDirectory/share/hadoop/${hadoop.component}/sources/outputDirectory
+  includes
+include*-sources.jar/include
+  /includes
+/fileSet
+fileSet
+  directory../hadoop

svn commit: r1469340 - /hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc

2013-04-18 Thread tgraves
Author: tgraves
Date: Thu Apr 18 14:20:33 2013
New Revision: 1469340

URL: http://svn.apache.org/r1469340
Log:
MAPREDUCE-4383. HadoopPipes.cc needs to include unistd.h. (Andy Isaacson via 
tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc

Modified: 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc?rev=1469340r1=1469339r2=1469340view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc
 Thu Apr 18 14:20:33 2013
@@ -30,6 +30,7 @@
 #include stdlib.h
 #include string.h
 #include strings.h
+#include unistd.h
 #include sys/socket.h
 #include pthread.h
 #include iostream




svn commit: r1469557 - in /hadoop/common/tags: release-0.23.7-rc0/ release-0.23.7/

2013-04-18 Thread tgraves
Author: tgraves
Date: Thu Apr 18 20:41:30 2013
New Revision: 1469557

URL: http://svn.apache.org/r1469557
Log:
Hadoop 0.23.7 release.

Added:
hadoop/common/tags/release-0.23.7/   (props changed)
  - copied from r1469556, hadoop/common/tags/release-0.23.7-rc0/
Removed:
hadoop/common/tags/release-0.23.7-rc0/

Propchange: hadoop/common/tags/release-0.23.7/
--
--- svn:ignore (added)
+++ svn:ignore Thu Apr 18 20:41:30 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.7/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Thu Apr 18 20:41:30 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1469560 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-04-18 Thread tgraves
Author: tgraves
Date: Thu Apr 18 20:49:05 2013
New Revision: 1469560

URL: http://svn.apache.org/r1469560
Log:
Updating for 0.23.7 release

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1469560r1=1469559r2=1469560view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Thu Apr 18 20:49:05 2013
@@ -18,7 +18,7 @@ Release 0.23.8 - UNRELEASED
 HADOOP-9233. Cover package org.apache.hadoop.io.compress.zlib with unit
 tests (Vadim Bondarev via jlowe)
 
-Release 0.23.7 - UNRELEASED
+Release 0.23.7 - 2013-04-18
 
   INCOMPATIBLE CHANGES
 




svn commit: r1469017 - in /hadoop/common/branches/branch-0.23: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/had

2013-04-17 Thread tgraves
Author: tgraves
Date: Wed Apr 17 18:13:07 2013
New Revision: 1469017

URL: http://svn.apache.org/r1469017
Log:
Fixing version number typeo from 0.23.8-SNAPHOST to 0.23.8-SNAPSHOT

Modified:
hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-assemblies/pom.xml Wed Apr 17 
18:13:07 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-client/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-client/pom.xml Wed Apr 17 
18:13:07 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-dist/pom.xml Wed Apr 17 18:13:07 
2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-minicluster/pom.xml Wed Apr 17 
18:13:07 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   packagingjar/packaging

svn commit: r1469017 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml pom.xml

2013-04-17 Thread tgraves
Author: tgraves
Date: Wed Apr 17 18:13:07 2013
New Revision: 1469017

URL: http://svn.apache.org/r1469017
Log:
Fixing version number typeo from 0.23.8-SNAPHOST to 0.23.8-SNAPSHOT

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Wed Apr 17 18:13:07 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 Wed Apr 17 18:13:07 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
Wed Apr 17 18:13:07 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
Wed Apr 17 18:13:07 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project-dist/artifactId
-version0.23.8-SNAPHOST/version
+version0.23.8-SNAPSHOT/version
 relativePath../../hadoop-project-dist/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common/artifactId
-  version0.23.8-SNAPHOST/version
+  version0.23.8-SNAPSHOT/version
   descriptionApache Hadoop Common/description
   nameApache Hadoop Common/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml?rev=1469017r1=1469016r2=1469017view=diff
==
--- hadoop/common

svn commit: r1467018 - /hadoop/common/branches/branch-0.23.7/

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 18:05:41 2013
New Revision: 1467018

URL: http://svn.apache.org/r1467018
Log:
Branching for 0.23.7 release

Added:
hadoop/common/branches/branch-0.23.7/   (props changed)
  - copied from r1467017, hadoop/common/branches/branch-0.23/

Propchange: hadoop/common/branches/branch-0.23.7/
--
--- svn:ignore (added)
+++ svn:ignore Thu Apr 11 18:05:41 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/branches/branch-0.23.7/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Thu Apr 11 18:05:41 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1467024 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/CHANGES.txt hadoop-common

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 18:10:42 2013
New Revision: 1467024

URL: http://svn.apache.org/r1467024
Log:
Preparing for 0.23.8 development

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
hadoop/common/branches/branch-0.23/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1467024r1=1467023r2=1467024view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Thu Apr 11 18:10:42 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.8-SNAPHOST/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.8-SNAPHOST/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1467024r1=1467023r2=1467024view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth-examples/pom.xml
 Thu Apr 11 18:10:42 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.8-SNAPHOST/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.8-SNAPHOST/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml?rev=1467024r1=1467023r2=1467024view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-auth/pom.xml 
Thu Apr 11 18:10:42 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.8-SNAPHOST/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.8-SNAPHOST/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1467024r1=1467023r2=1467024view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Thu Apr 11 18:10:42 2013
@@ -1,5 +1,17 @@
 Hadoop Change Log
 
+Release 0.23.8 - UNRELEASED
+  
+  INCOMPATIBLE CHANGES
+  
+  NEW FEATURES
+  
+  IMPROVEMENTS
+  
+  OPTIMIZATIONS
+ 
+  BUG FIXES
+
 Release 0.23.7 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml?rev=1467024r1=1467023r2=1467024view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/pom.xml 
Thu Apr 11 18:10

svn commit: r1467029 [3/3] - in /hadoop/common/branches/branch-0.23.7/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-co

2013-04-11 Thread tgraves
Modified: hadoop/common/branches/branch-0.23.7/hadoop-common-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-common-project/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- hadoop/common/branches/branch-0.23.7/hadoop-common-project/pom.xml 
(original)
+++ hadoop/common/branches/branch-0.23.7/hadoop-common-project/pom.xml Thu Apr 
11 18:14:44 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common-project/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   descriptionApache Hadoop Common Project/description
   nameApache Hadoop Common Project/name
   packagingpom/packaging




svn commit: r1467029 - in /hadoop/common/branches/branch-0.23.7: ./ hadoop-assemblies/ hadoop-client/ hadoop-dist/ hadoop-minicluster/ hadoop-project-dist/ hadoop-project/ hadoop-tools/ hadoop-tools/h

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 18:14:44 2013
New Revision: 1467029

URL: http://svn.apache.org/r1467029
Log:
Preparing for release 0.23.7

Modified:
hadoop/common/branches/branch-0.23.7/hadoop-assemblies/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-client/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-dist/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-minicluster/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-project-dist/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-project/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-archives/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-datajoin/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-distcp/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-extras/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-gridmix/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-pipes/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-rumen/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-streaming/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/hadoop-tools-dist/pom.xml
hadoop/common/branches/branch-0.23.7/hadoop-tools/pom.xml
hadoop/common/branches/branch-0.23.7/pom.xml

Modified: hadoop/common/branches/branch-0.23.7/hadoop-assemblies/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-assemblies/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- hadoop/common/branches/branch-0.23.7/hadoop-assemblies/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.7/hadoop-assemblies/pom.xml Thu Apr 11 
18:14:44 2013
@@ -23,12 +23,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-assemblies/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   nameApache Hadoop Assemblies/name
   descriptionApache Hadoop Assemblies/description
 

Modified: hadoop/common/branches/branch-0.23.7/hadoop-client/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-client/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- hadoop/common/branches/branch-0.23.7/hadoop-client/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.7/hadoop-client/pom.xml Thu Apr 11 
18:14:44 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-client/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   packagingjar/packaging
 
   descriptionApache Hadoop Client/description

Modified: hadoop/common/branches/branch-0.23.7/hadoop-dist/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-dist/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- hadoop/common/branches/branch-0.23.7/hadoop-dist/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.7/hadoop-dist/pom.xml Thu Apr 11 
18:14:44 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-dist/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   descriptionApache Hadoop Distribution/description
   nameApache Hadoop Distribution/name
   packagingjar/packaging

Modified: hadoop/common/branches/branch-0.23.7/hadoop-minicluster/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-minicluster/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- hadoop/common/branches/branch-0.23.7/hadoop-minicluster/pom.xml (original)
+++ hadoop/common/branches/branch-0.23.7/hadoop-minicluster/pom.xml Thu Apr 11 
18:14:44 2013
@@ -18,12 +18,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-minicluster/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   packagingjar/packaging
 
   descriptionApache Hadoop Mini-Cluster/description

svn commit: r1467030 - /hadoop/common/tags/release-0.23.7-rc0/

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 18:16:23 2013
New Revision: 1467030

URL: http://svn.apache.org/r1467030
Log:
Hadoop 0.23.7-rc0 release.

Added:
hadoop/common/tags/release-0.23.7-rc0/   (props changed)
  - copied from r1467029, hadoop/common/branches/branch-0.23.7/

Propchange: hadoop/common/tags/release-0.23.7-rc0/
--
--- svn:ignore (added)
+++ svn:ignore Thu Apr 11 18:16:23 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.7-rc0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Thu Apr 11 18:16:23 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1196676,1197801,1199024,1201991,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1467069 - /hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 20:08:00 2013
New Revision: 1467069

URL: http://svn.apache.org/r1467069
Log:
Preparing for release 0.23.7

Modified:
hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1467069r1=1467068r2=1467069view=diff
==
--- hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt Thu Apr 
11 20:08:00 2013
@@ -1609,6 +1609,18 @@ Release 2.0.0-alpha - 05-23-2012
 HADOOP-8655. Fix TextInputFormat for large deliminators. (Gelesh via
 bobby) 
 
+Release 0.23.8 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
 Release 0.23.7 - UNRELEASED
 
   INCOMPATIBLE CHANGES




svn commit: r1467070 - /hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 20:09:26 2013
New Revision: 1467070

URL: http://svn.apache.org/r1467070
Log:
Preparing for release 0.23.7

Modified:

hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1467070r1=1467069r2=1467070view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
Thu Apr 11 20:09:26 2013
@@ -1124,6 +1124,18 @@ Release 2.0.0-alpha - 05-23-2012
 HADOOP-8655. Fix TextInputFormat for large deliminators. (Gelesh via
 bobby) 
 
+Release 0.23.8 - UNRELEASED
+
+  INCOMPATIBLE CHANGES
+
+  NEW FEATURES
+
+  IMPROVEMENTS
+
+  OPTIMIZATIONS
+
+  BUG FIXES
+
 Release 0.23.7 - UNRELEASED
 
   INCOMPATIBLE CHANGES




svn commit: r1467029 [1/3] - in /hadoop/common/branches/branch-0.23.7/hadoop-common-project: hadoop-annotations/pom.xml hadoop-auth-examples/pom.xml hadoop-auth/pom.xml hadoop-common/pom.xml hadoop-co

2013-04-11 Thread tgraves
Author: tgraves
Date: Thu Apr 11 18:14:44 2013
New Revision: 1467029

URL: http://svn.apache.org/r1467029
Log:
Preparing for release 0.23.7

Modified:

hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth-examples/pom.xml

hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth/pom.xml

hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-common/pom.xml

hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-common/src/main/docs/releasenotes.html
hadoop/common/branches/branch-0.23.7/hadoop-common-project/pom.xml

Modified: 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-annotations/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-annotations/pom.xml
 Thu Apr 11 18:14:44 2013
@@ -21,12 +21,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-annotations/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   descriptionApache Hadoop Annotations/description
   nameApache Hadoop Annotations/name
   packagingjar/packaging

Modified: 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth-examples/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth-examples/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth-examples/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth-examples/pom.xml
 Thu Apr 11 18:14:44 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth-examples/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   packagingwar/packaging
 
   nameApache Hadoop Auth Examples/name

Modified: 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth/pom.xml 
(original)
+++ 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-auth/pom.xml 
Thu Apr 11 18:14:44 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../../hadoop-project/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-auth/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   packagingjar/packaging
 
   nameApache Hadoop Auth/name

Modified: 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-common/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-common/pom.xml?rev=1467029r1=1467028r2=1467029view=diff
==
--- 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-common/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23.7/hadoop-common-project/hadoop-common/pom.xml
 Thu Apr 11 18:14:44 2013
@@ -20,12 +20,12 @@
   parent
 groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-project-dist/artifactId
-version0.23.7-SNAPSHOT/version
+version0.23.7/version
 relativePath../../hadoop-project-dist/relativePath
   /parent
   groupIdorg.apache.hadoop/groupId
   artifactIdhadoop-common/artifactId
-  version0.23.7-SNAPSHOT/version
+  version0.23.7/version
   descriptionApache Hadoop Common/description
   nameApache Hadoop Common/name
   packagingjar/packaging




svn commit: r1463806 [2/2] - in /hadoop/common/trunk/hadoop-tools/hadoop-gridmix: ./ src/main/java/org/apache/hadoop/mapred/gridmix/ src/test/java/org/apache/hadoop/mapred/gridmix/ src/test/resources/

2013-04-02 Thread tgraves
Added: 
hadoop/common/trunk/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java?rev=1463806view=auto
==
--- 
hadoop/common/trunk/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
 (added)
+++ 
hadoop/common/trunk/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
 Wed Apr  3 01:45:24 2013
@@ -0,0 +1,202 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.mapred.gridmix;
+
+import org.apache.commons.logging.LogFactory;
+import org.apache.commons.logging.impl.Log4JLogger;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.FileSystem;
+import org.apache.hadoop.fs.FSDataOutputStream;
+import org.apache.hadoop.fs.Path;
+import org.apache.hadoop.tools.rumen.JobStory;
+import org.apache.hadoop.tools.rumen.JobStoryProducer;
+import org.apache.hadoop.util.ExitUtil;
+import org.apache.log4j.Level;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.InputStream;
+import java.io.IOException;
+import java.io.PrintStream;
+import java.util.zip.GZIPInputStream;
+
+import static org.junit.Assert.*;
+
+public class TestGridmixSubmission extends CommonJobTest {
+  private static File inSpace = new File(src + File.separator + test
+  + File.separator + resources + File.separator + data);
+
+
+  static {
+((Log4JLogger) LogFactory.getLog(org.apache.hadoop.mapred.gridmix))
+.getLogger().setLevel(Level.DEBUG);
+  }
+
+
+  @BeforeClass
+  public static void init() throws IOException {
+GridmixTestUtils.initCluster(TestGridmixSubmission.class);
+
+System.setProperty(src.test.data, inSpace.getAbsolutePath());
+  }
+
+  @AfterClass
+  public static void shutDown() throws IOException {
+GridmixTestUtils.shutdownCluster();
+  }
+
+  /**
+   * Verifies that the given {@code JobStory} corresponds to the checked-in
+   * WordCount {@code JobStory}. The verification is effected via JUnit
+   * assertions.
+   *
+   * @param js the candidate JobStory.
+   */
+  private void verifyWordCountJobStory(JobStory js) {
+assertNotNull(Null JobStory, js);
+String expectedJobStory = WordCount:johndoe:default:1285322645148:3:1;
+String actualJobStory = js.getName() + : + js.getUser() + :
++ js.getQueueName() + : + js.getSubmissionTime() + :
++ js.getNumberMaps() + : + js.getNumberReduces();
+assertEquals(Unexpected JobStory, expectedJobStory, actualJobStory);
+  }
+
+  /**
+   * Expands a file compressed using {@code gzip}.
+   *
+   * @param fs  the {@code FileSystem} corresponding to the given file.
+   * @param in  the path to the compressed file.
+   * @param out the path to the uncompressed output.
+   * @throws Exception if there was an error during the operation.
+   */
+  private void expandGzippedTrace(FileSystem fs, Path in, Path out)
+  throws Exception {
+byte[] buff = new byte[4096];
+GZIPInputStream gis = new GZIPInputStream(fs.open(in));
+FSDataOutputStream fsdOs = fs.create(out);
+int numRead;
+while ((numRead = gis.read(buff, 0, buff.length)) != -1) {
+  fsdOs.write(buff, 0, numRead);
+}
+gis.close();
+fsdOs.close();
+  }
+
+  /**
+   * Tests the reading of traces in GridMix3. These traces are generated by
+   * Rumen and are in the JSON format. The traces can optionally be compressed
+   * and uncompressed traces can also be passed to GridMix3 via its standard
+   * input stream. The testing is effected via JUnit assertions.
+   *
+   * @throws Exception if there was an error.
+   */
+  @Test (timeout=2)
+  public void testTraceReader() throws Exception {
+Configuration conf = new Configuration();
+FileSystem lfs = FileSystem.getLocal(conf);
+Path rootInputDir = new 

svn commit: r1463807 [2/2] - in /hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix: ./ src/main/java/org/apache/hadoop/mapred/gridmix/ src/test/java/org/apache/hadoop/mapred/gridmix/ src/

2013-04-02 Thread tgraves
Added: 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java?rev=1463807view=auto
==
--- 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
 (added)
+++ 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
 Wed Apr  3 01:46:39 2013
@@ -0,0 +1,204 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.mapred.gridmix;
+
+import org.apache.commons.logging.LogFactory;
+import org.apache.commons.logging.impl.Log4JLogger;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.FileSystem;
+import org.apache.hadoop.fs.FSDataOutputStream;
+import org.apache.hadoop.fs.Path;
+import org.apache.hadoop.tools.rumen.JobStory;
+import org.apache.hadoop.tools.rumen.JobStoryProducer;
+import org.apache.hadoop.util.ExitUtil;
+import org.apache.log4j.Level;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.InputStream;
+import java.io.IOException;
+import java.io.PrintStream;
+import java.util.zip.GZIPInputStream;
+
+import static org.junit.Assert.*;
+
+public class TestGridmixSubmission extends CommonJobTest {
+  private static File inSpace = new File(src + File.separator + test
+  + File.separator + resources + File.separator + data);
+
+
+  static {
+((Log4JLogger) LogFactory.getLog(org.apache.hadoop.mapred.gridmix))
+.getLogger().setLevel(Level.DEBUG);
+  }
+
+//  private static final int NJOBS = 1;
+//  private static final long GENDATA = 3; // in megabytes
+
+  @BeforeClass
+  public static void init() throws IOException {
+GridmixTestUtils.initCluster(TestGridmixSubmission.class);
+
+System.setProperty(src.test.data, inSpace.getAbsolutePath());
+  }
+
+  @AfterClass
+  public static void shutDown() throws IOException {
+GridmixTestUtils.shutdownCluster();
+  }
+
+  /**
+   * Verifies that the given {@code JobStory} corresponds to the checked-in
+   * WordCount {@code JobStory}. The verification is effected via JUnit
+   * assertions.
+   *
+   * @param js the candidate JobStory.
+   */
+  private void verifyWordCountJobStory(JobStory js) {
+assertNotNull(Null JobStory, js);
+String expectedJobStory = WordCount:johndoe:default:1285322645148:3:1;
+String actualJobStory = js.getName() + : + js.getUser() + :
++ js.getQueueName() + : + js.getSubmissionTime() + :
++ js.getNumberMaps() + : + js.getNumberReduces();
+assertEquals(Unexpected JobStory, expectedJobStory, actualJobStory);
+  }
+
+  /**
+   * Expands a file compressed using {@code gzip}.
+   *
+   * @param fs  the {@code FileSystem} corresponding to the given file.
+   * @param in  the path to the compressed file.
+   * @param out the path to the uncompressed output.
+   * @throws Exception if there was an error during the operation.
+   */
+  private void expandGzippedTrace(FileSystem fs, Path in, Path out)
+  throws Exception {
+byte[] buff = new byte[4096];
+GZIPInputStream gis = new GZIPInputStream(fs.open(in));
+FSDataOutputStream fsdos = fs.create(out);
+int numRead;
+while ((numRead = gis.read(buff, 0, buff.length)) != -1) {
+  fsdos.write(buff, 0, numRead);
+}
+gis.close();
+fsdos.close();
+  }
+
+  /**
+   * Tests the reading of traces in GridMix3. These traces are generated by
+   * Rumen and are in the JSON format. The traces can optionally be compressed
+   * and uncompressed traces can also be passed to GridMix3 via its standard
+   * input stream. The testing is effected via JUnit assertions.
+   *
+   * @throws Exception if there was an error.
+   */
+  @Test  (timeout=5)
+  public void testTraceReader() throws Exception 

svn commit: r1463808 [2/2] - in /hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix: ./ src/main/java/org/apache/hadoop/mapred/gridmix/ src/test/java/org/apache/hadoop/mapred/gridmix/ src/tes

2013-04-02 Thread tgraves
Added: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java?rev=1463808view=auto
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
 (added)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSubmission.java
 Wed Apr  3 01:47:31 2013
@@ -0,0 +1,202 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * License); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.mapred.gridmix;
+
+import org.apache.commons.logging.LogFactory;
+import org.apache.commons.logging.impl.Log4JLogger;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.FileSystem;
+import org.apache.hadoop.fs.FSDataOutputStream;
+import org.apache.hadoop.fs.Path;
+import org.apache.hadoop.tools.rumen.JobStory;
+import org.apache.hadoop.tools.rumen.JobStoryProducer;
+import org.apache.hadoop.util.ExitUtil;
+import org.apache.log4j.Level;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.InputStream;
+import java.io.IOException;
+import java.io.PrintStream;
+import java.util.zip.GZIPInputStream;
+
+import static org.junit.Assert.*;
+
+public class TestGridmixSubmission extends CommonJobTest {
+  private static File inSpace = new File(src + File.separator + test
+  + File.separator + resources + File.separator + data);
+
+
+  static {
+((Log4JLogger) LogFactory.getLog(org.apache.hadoop.mapred.gridmix))
+.getLogger().setLevel(Level.DEBUG);
+  }
+
+
+  @BeforeClass
+  public static void init() throws IOException {
+GridmixTestUtils.initCluster(TestGridmixSubmission.class);
+
+System.setProperty(src.test.data, inSpace.getAbsolutePath());
+  }
+
+  @AfterClass
+  public static void shutDown() throws IOException {
+GridmixTestUtils.shutdownCluster();
+  }
+
+  /**
+   * Verifies that the given {@code JobStory} corresponds to the checked-in
+   * WordCount {@code JobStory}. The verification is effected via JUnit
+   * assertions.
+   *
+   * @param js the candidate JobStory.
+   */
+  private void verifyWordCountJobStory(JobStory js) {
+assertNotNull(Null JobStory, js);
+String expectedJobStory = WordCount:johndoe:default:1285322645148:3:1;
+String actualJobStory = js.getName() + : + js.getUser() + :
++ js.getQueueName() + : + js.getSubmissionTime() + :
++ js.getNumberMaps() + : + js.getNumberReduces();
+assertEquals(Unexpected JobStory, expectedJobStory, actualJobStory);
+  }
+
+  /**
+   * Expands a file compressed using {@code gzip}.
+   *
+   * @param fs  the {@code FileSystem} corresponding to the given file.
+   * @param in  the path to the compressed file.
+   * @param out the path to the uncompressed output.
+   * @throws Exception if there was an error during the operation.
+   */
+  private void expandGzippedTrace(FileSystem fs, Path in, Path out)
+  throws Exception {
+byte[] buff = new byte[4096];
+GZIPInputStream gis = new GZIPInputStream(fs.open(in));
+FSDataOutputStream fsdOs = fs.create(out);
+int numRead;
+while ((numRead = gis.read(buff, 0, buff.length)) != -1) {
+  fsdOs.write(buff, 0, numRead);
+}
+gis.close();
+fsdOs.close();
+  }
+
+  /**
+   * Tests the reading of traces in GridMix3. These traces are generated by
+   * Rumen and are in the JSON format. The traces can optionally be compressed
+   * and uncompressed traces can also be passed to GridMix3 via its standard
+   * input stream. The testing is effected via JUnit assertions.
+   *
+   * @throws Exception if there was an error.
+   */
+  @Test (timeout=2)
+  public void testTraceReader() throws Exception {
+Configuration conf = new Configuration();
+FileSystem lfs = FileSystem.getLocal(conf);
+Path 

svn commit: r1461205 - /hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSummary.java

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 16:27:25 2013
New Revision: 1461205

URL: http://svn.apache.org/r1461205
Log:
HADOOP-9405. TestGridmixSummary#testExecutionSummarizer is broken. (Andrew Wang 
via atm)

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSummary.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSummary.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSummary.java?rev=1461205r1=1461204r2=1461205view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSummary.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestGridmixSummary.java
 Tue Mar 26 16:27:25 2013
@@ -247,7 +247,7 @@ public class TestGridmixSummary {
  qPath.toString(), es.getInputTraceLocation());
 // test expected data size
 assertEquals(Mismatch in expected data size, 
- 1.0k, es.getExpectedDataSize());
+ 1 K, es.getExpectedDataSize());
 // test input data statistics
 assertEquals(Mismatch in input data statistics, 
  ExecutionSummarizer.stringifyDataStatistics(dataStats), 
@@ -262,7 +262,7 @@ public class TestGridmixSummary {
 es.finalize(factory, testTraceFile.toString(), 1024*1024*1024*10L, 
resolver,
 dataStats, conf);
 assertEquals(Mismatch in expected data size, 
- 10.0g, es.getExpectedDataSize());
+ 10 G, es.getExpectedDataSize());
 
 // test trace signature uniqueness
 //  touch the trace file
@@ -374,4 +374,4 @@ public class TestGridmixSummary {
 assertEquals(Cluster summary test failed!, 0, 
  cs.getNumBlacklistedTrackers());
   }
-}
\ No newline at end of file
+}




svn commit: r1461205 - /hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 16:27:25 2013
New Revision: 1461205

URL: http://svn.apache.org/r1461205
Log:
HADOOP-9405. TestGridmixSummary#testExecutionSummarizer is broken. (Andrew Wang 
via atm)

Modified:

hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1461205r1=1461204r2=1461205view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
Tue Mar 26 16:27:25 2013
@@ -85,6 +85,9 @@ Release 2.0.5-beta - UNRELEASED
 HADOOP-9407. commons-daemon 1.0.3 dependency has bad group id causing
 build issues. (Sangjin Lee via suresh)
 
+HADOOP-9405. TestGridmixSummary#testExecutionSummarizer is broken. (Andrew
+Wang via atm)
+
 Release 2.0.4-alpha - UNRELEASED
 
   INCOMPATIBLE CHANGES




svn commit: r1461233 - in /hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix: DistributedCacheEmulator.java Gridmix.java

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 17:29:26 2013
New Revision: 1461233

URL: http://svn.apache.org/r1461233
Log:
MAPREDUCE-3829. [Gridmix] Gridmix should give better error message when input 
data directory already exists and -generate opton is erate opton is
+given.(ravi

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/DistributedCacheEmulator.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/Gridmix.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/DistributedCacheEmulator.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/DistributedCacheEmulator.java?rev=1461233r1=1461232r2=1461233view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/DistributedCacheEmulator.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/DistributedCacheEmulator.java
 Tue Mar 26 17:29:26 2013
@@ -86,11 +86,6 @@ class DistributedCacheEmulator {
 
   static final long AVG_BYTES_PER_MAP = 128 * 1024 * 1024L;// 128MB
 
-  // If at least 1 distributed cache file is missing in the expected
-  // distributed cache dir, Gridmix cannot proceed with emulation of
-  // distributed cache load.
-  int MISSING_DIST_CACHE_FILES_ERROR = 1;
-
   private Path distCachePath;
 
   /**
@@ -154,7 +149,7 @@ class DistributedCacheEmulator {
* li execute permission is not there for any of the ascendant directories
* of lt;ioPathgt; till root. This is because for emulation of distributed
* cache load, distributed cache files created under
-   * lt;ioPath/distributedCache/public/gt; should be considered by hadoop
+   * lt;ioPath/distributedCache/gt; should be considered by hadoop
* as public distributed cache files.
* li creation of pseudo local file system fails./ol
* br For (2), (3), (4) and (5), generation of distributed cache data
@@ -470,7 +465,7 @@ class DistributedCacheEmulator {
   + disable\ndistributed cache emulation by configuring '
   + DistributedCacheEmulator.GRIDMIX_EMULATE_DISTRIBUTEDCACHE
   + ' to false.);
-  return MISSING_DIST_CACHE_FILES_ERROR;
+  return Gridmix.MISSING_DIST_CACHE_FILES_ERROR;
 }
 return 0;
   }

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/Gridmix.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/Gridmix.java?rev=1461233r1=1461232r2=1461233view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/Gridmix.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/Gridmix.java
 Tue Mar 26 17:29:26 2013
@@ -145,6 +145,18 @@ public class Gridmix extends Configured 
   // Shutdown hook
   private final Shutdown sdh = new Shutdown();
 
+  /** Error while parsing/analyzing the arguments to Gridmix */
+  static final int ARGS_ERROR = 1;
+  /** Error while trying to start/setup the Gridmix run */
+  static final int STARTUP_FAILED_ERROR = 2;
+  /**
+   * If at least 1 distributed cache file is missing in the expected
+   * distributed cache dir, Gridmix cannot proceed with emulation of
+   * distributed cache load.
+   */
+  static final int MISSING_DIST_CACHE_FILES_ERROR = 3;
+
+
   Gridmix(String[] args) {
 summarizer = new Summarizer(args);
   }
@@ -160,31 +172,42 @@ public class Gridmix extends Configured 
   }
   
   /**
-   * Write random bytes at the path lt;inputDirgt;.
+   * Write random bytes at the path lt;inputDirgt; if needed.
* @see org.apache.hadoop.mapred.gridmix.GenerateData
+   * @return exit status
*/
-  protected void writeInputData(long genbytes, Path inputDir)
+  protected int writeInputData(long genbytes, Path inputDir)
   throws IOException, InterruptedException {
-final Configuration conf = getConf();
-
-// configure the compression ratio if needed
-CompressionEmulationUtil.setupDataGeneratorConfig(conf);
+if (genbytes  0) {
+  final Configuration conf = getConf();
+
+  if (inputDir.getFileSystem(conf).exists(inputDir)) {
+LOG.error(Gridmix input data directory  + inputDir
+  +  already exists when -generate option is used.\n);
+return STARTUP_FAILED_ERROR;
+  }
+
+  // configure the compression ratio if needed

svn commit: r1461236 - in /hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src: main/java/org/apache/hadoop/mapred/gridmix/ test/java/org/apache/hadoop/mapred/gridmix/

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 17:42:29 2013
New Revision: 1461236

URL: http://svn.apache.org/r1461236
Log:
MAPREDUCE-2722. [Gridmix] Gridmix simulated job's map's hdfsBytesRead counter 
is wrong when compressed input is used.(ravigummadi via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestCompressionEmulationUtils.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java?rev=1461236r1=1461235r2=1461236view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java
 Tue Mar 26 17:42:29 2013
@@ -571,4 +571,25 @@ class CompressionEmulationUtil {
 }
 setInputCompressionEmulationEnabled(target, needsCompressedInput);
   }
+
+  /**
+   * Get the uncompressed input bytes count from the given possibly compressed
+   * input bytes count.
+   * @param possiblyCompressedInputBytes input bytes count. This is compressed
+   *input size if compression emulation is on.
+   * @param conf configuration of the Gridmix simulated job
+   * @return uncompressed input bytes count. Compute this in case if compressed
+   * input was used
+   */
+  static long getUncompressedInputBytes(long possiblyCompressedInputBytes,
+Configuration conf) {
+long uncompressedInputBytes = possiblyCompressedInputBytes;
+
+if (CompressionEmulationUtil.isInputCompressionEmulationEnabled(conf)) {
+  float inputCompressionRatio =
+  CompressionEmulationUtil.getMapInputCompressionEmulationRatio(conf);
+  uncompressedInputBytes /= inputCompressionRatio;
+}
+return uncompressedInputBytes;
+  }
 }

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java?rev=1461236r1=1461235r2=1461236view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java
 Tue Mar 26 17:42:29 2013
@@ -536,9 +536,14 @@ class LoadJob extends GridmixJob {
 }
   }
   final TaskInfo info = jobdesc.getTaskInfo(TaskType.MAP, i);
+  long possiblyCompressedInputBytes = info.getInputBytes();
+  Configuration conf = job.getConfiguration();
+  long uncompressedInputBytes =
+  CompressionEmulationUtil.getUncompressedInputBytes(
+  possiblyCompressedInputBytes, conf);
   splits.add(
-new LoadSplit(striper.splitFor(inputDir, info.getInputBytes(), 3), 
-  maps, i, info.getInputBytes(), info.getInputRecords(),
+new LoadSplit(striper.splitFor(inputDir, uncompressedInputBytes, 3), 
+  maps, i, uncompressedInputBytes, info.getInputRecords(),
   info.getOutputBytes(), info.getOutputRecords(),
   reduceByteRatio, reduceRecordRatio, specBytes, 
   specRecords, info.getResourceUsageMetrics(),
@@ -546,4 +551,4 @@ class LoadJob extends GridmixJob {
 }
 pushDescription(id(), splits);
   }
-}
\ No newline at end of file
+}

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestCompressionEmulationUtils.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestCompressionEmulationUtils.java?rev=1461236r1=1461235r2=1461236view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestCompressionEmulationUtils.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org

svn commit: r1461242 - in /hadoop/common/branches/branch-2/hadoop-tools: hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/JobFactory.java hadoop-rumen/src/main/java/org/apache/hadoop/tool

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 17:52:40 2013
New Revision: 1461242

URL: http://svn.apache.org/r1461242
Log:
MAPREDUCE-3953. [Gridmix] Gridmix throws NPE and does not simulate a job if the 
trace contains null taskStatus for a task.  (ravigummadi via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/JobFactory.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ZombieJob.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/JobFactory.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/JobFactory.java?rev=1461242r1=1461241r2=1461242view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/JobFactory.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/JobFactory.java
 Tue Mar 26 17:52:40 2013
@@ -215,7 +215,13 @@ abstract class JobFactoryT implements 
 return null == job ? null : new FilterJobStory(job) {
   @Override
   public TaskInfo getTaskInfo(TaskType taskType, int taskNumber) {
-return new MinTaskInfo(this.job.getTaskInfo(taskType, taskNumber));
+TaskInfo info = this.job.getTaskInfo(taskType, taskNumber);
+if (info != null) {
+  info = new MinTaskInfo(info);
+} else {
+  info = new MinTaskInfo(new TaskInfo(0, 0, 0, 0, 0));
+}
+return info;
   }
 };
   }

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ZombieJob.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ZombieJob.java?rev=1461242r1=1461241r2=1461242view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ZombieJob.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ZombieJob.java
 Tue Mar 26 17:52:40 2013
@@ -638,6 +638,9 @@ public class ZombieJob implements JobSto
   }
 
   private TaskInfo getTaskInfo(LoggedTask loggedTask) {
+if (loggedTask == null) {
+  return new TaskInfo(0, 0, 0, 0, 0);
+}
 ListLoggedTaskAttempt attempts = loggedTask.getAttempts();
 
 long inputBytes = -1;




svn commit: r1461243 - /hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/GenerateDistCacheData.java

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 18:00:30 2013
New Revision: 1461243

URL: http://svn.apache.org/r1461243
Log:
MAPREDUCE-4087. [Gridmix] GenerateDistCacheData job of Gridmix can become slow 
in some cases (ravigummadi via tgraves).

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/GenerateDistCacheData.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/GenerateDistCacheData.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/GenerateDistCacheData.java?rev=1461243r1=1461242r2=1461243view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/GenerateDistCacheData.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/GenerateDistCacheData.java
 Tue Mar 26 18:00:30 2013
@@ -156,10 +156,11 @@ class GenerateDistCacheData extends Grid
   FSDataOutputStream dos =
   FileSystem.create(fs, path, new FsPermission((short)0755));
 
-  for (long bytes = key.get(); bytes  0; bytes -= val.getLength()) {
+  int size = 0;
+  for (long bytes = key.get(); bytes  0; bytes -= size) {
 r.nextBytes(val.getBytes());
-val.setSize((int)Math.min(val.getLength(), bytes));
-dos.write(val.getBytes(), 0, val.getLength());// Write to distCache 
file
+size = (int)Math.min(val.getLength(), bytes);
+dos.write(val.getBytes(), 0, size);// Write to distCache file
   }
   dos.close();
 }




svn commit: r1461275 - in /hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src: main/java/org/apache/hadoop/mapred/gridmix/ test/java/org/apache/hadoop/mapred/gridmix/

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 19:21:43 2013
New Revision: 1461275

URL: http://svn.apache.org/r1461275
Log:
MAPREDUCE-4100. [Gridmix] Bug fixed in compression emulation feature for map 
only jobs. (amarrk via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/test/java/org/apache/hadoop/mapred/gridmix/TestCompressionEmulationUtils.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java?rev=1461275r1=1461274r2=1461275view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/CompressionEmulationUtil.java
 Tue Mar 26 19:21:43 2013
@@ -85,10 +85,10 @@ class CompressionEmulationUtil {
 gridmix.compression-emulation.map-output.compression-ratio;
   
   /**
-   * Configuration property for setting the compression ratio of reduce output.
+   * Configuration property for setting the compression ratio of job output.
*/
-  private static final String GRIDMIX_REDUCE_OUTPUT_COMPRESSION_RATIO = 
-gridmix.compression-emulation.reduce-output.compression-ratio;
+  private static final String GRIDMIX_JOB_OUTPUT_COMPRESSION_RATIO = 
+gridmix.compression-emulation.job-output.compression-ratio;
   
   /**
* Default compression ratio.
@@ -434,20 +434,20 @@ class CompressionEmulationUtil {
   }
   
   /**
-   * Set the reduce output data compression ratio in the given configuration.
+   * Set the job output data compression ratio in the given configuration.
*/
-  static void setReduceOutputCompressionEmulationRatio(Configuration conf, 
-   float ratio) {
-conf.setFloat(GRIDMIX_REDUCE_OUTPUT_COMPRESSION_RATIO, ratio);
+  static void setJobOutputCompressionEmulationRatio(Configuration conf, 
+float ratio) {
+conf.setFloat(GRIDMIX_JOB_OUTPUT_COMPRESSION_RATIO, ratio);
   }
   
   /**
-   * Get the reduce output data compression ratio using the given 
configuration.
+   * Get the job output data compression ratio using the given configuration.
* If the compression ratio is not set in the configuration then use the 
* default value i.e {@value #DEFAULT_COMPRESSION_RATIO}.
*/
-  static float getReduceOutputCompressionEmulationRatio(Configuration conf) {
-return conf.getFloat(GRIDMIX_REDUCE_OUTPUT_COMPRESSION_RATIO, 
+  static float getJobOutputCompressionEmulationRatio(Configuration conf) {
+return conf.getFloat(GRIDMIX_JOB_OUTPUT_COMPRESSION_RATIO, 
  DEFAULT_COMPRESSION_RATIO);
   }
   

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java?rev=1461275r1=1461274r2=1461275view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-gridmix/src/main/java/org/apache/hadoop/mapred/gridmix/LoadJob.java
 Tue Mar 26 19:21:43 2013
@@ -288,23 +288,23 @@ class LoadJob extends GridmixJob {
   final long[] reduceBytes = split.getOutputBytes();
   final long[] reduceRecords = split.getOutputRecords();
 
-  // enable gridmix map output record for compression
-  final boolean emulateMapOutputCompression = 
-CompressionEmulationUtil.isCompressionEmulationEnabled(conf)
- conf.getBoolean(MRJobConfig.MAP_OUTPUT_COMPRESS, false);
-  float compressionRatio = 1.0f;
-  if (emulateMapOutputCompression) {
-compressionRatio = 
-  CompressionEmulationUtil.getMapOutputCompressionEmulationRatio(conf);
-LOG.info(GridMix is configured to use a compression ratio of  
- + compressionRatio +  for the map output data.);
-key.setCompressibility(true, compressionRatio);
-val.setCompressibility(true, compressionRatio);
-  }
-  
   long totalRecords = 0L;
   final int nReduces

svn commit: r1461277 - /hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedTask.java

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 19:26:36 2013
New Revision: 1461277

URL: http://svn.apache.org/r1461277
Log:
MAPREDUCE-4356. [Rumen] Provide access to the method 
ParsedTask.obtainTaskAttempts(). (ravigummadi via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedTask.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedTask.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedTask.java?rev=1461277r1=1461276r2=1461277view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedTask.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedTask.java
 Tue Mar 26 19:26:36 2013
@@ -91,7 +91,10 @@ public class ParsedTask extends LoggedTa
 return failedDueToAttempt;
   }
 
-  ListParsedTaskAttempt obtainTaskAttempts() {
+  /**
+   * @return the list of attempts of this task.
+   */
+  public ListParsedTaskAttempt obtainTaskAttempts() {
 ListLoggedTaskAttempt attempts = getAttempts();
 return convertTaskAttempts(attempts);
   }




svn commit: r1461289 - /hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/HistoryEventEmitter.java

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 19:54:51 2013
New Revision: 1461289

URL: http://svn.apache.org/r1461289
Log:
MAPREDUCE-4149. [Rumen] Rumen fails to parse certain counter strings. 
(ravigummadi via tgraves) 

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/HistoryEventEmitter.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/HistoryEventEmitter.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/HistoryEventEmitter.java?rev=1461289r1=1461288r2=1461289view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/HistoryEventEmitter.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/HistoryEventEmitter.java
 Tue Mar 26 19:54:51 2013
@@ -80,6 +80,8 @@ abstract class HistoryEventEmitter {
 }
 
 counters = counters.replace(\\., .);
+counters = counters.replace({, \\{);
+counters = counters.replace(}, \\});
 counters = counters.replace((, \\();
 counters = counters.replace(), \\));
 counters = counters.replace([, \\[);




svn commit: r1461296 - in /hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen: LoggedTaskAttempt.java ParsedHost.java

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 20:10:04 2013
New Revision: 1461296

URL: http://svn.apache.org/r1461296
Log:
MAPREDUCE-3757. [Rumen] Fixed Rumen Folder to adjust shuffleFinished and 
sortFinished times when needed. (Ravi Gummadi via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/LoggedTaskAttempt.java

hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedHost.java

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/LoggedTaskAttempt.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/LoggedTaskAttempt.java?rev=1461296r1=1461295r2=1461296view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/LoggedTaskAttempt.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/LoggedTaskAttempt.java
 Tue Mar 26 20:10:04 2013
@@ -275,6 +275,12 @@ public class LoggedTaskAttempt implement
   void adjustTimes(long adjustment) {
 startTime += adjustment;
 finishTime += adjustment;
+
+// For reduce attempts, adjust the different phases' finish times also 
+if (sortFinished = 0) {
+  shuffleFinished += adjustment;
+  sortFinished += adjustment;
+}
   }
 
   public long getShuffleFinished() {

Modified: 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedHost.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedHost.java?rev=1461296r1=1461295r2=1461296view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedHost.java
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-tools/hadoop-rumen/src/main/java/org/apache/hadoop/tools/rumen/ParsedHost.java
 Tue Mar 26 20:10:04 2013
@@ -80,8 +80,8 @@ public class ParsedHost {
   public ParsedHost(LoggedLocation loc) {
 ListNodeName coordinates = loc.getLayers();
 
-rackName = coordinates.get(0).getRackName();
-nodeName = coordinates.get(1).getHostName();
+rackName = process(coordinates.get(0).getRackName());
+nodeName = process(coordinates.get(1).getHostName());
   }
 
   LoggedLocation makeLoggedLocation() {




svn commit: r1461305 - in /hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src: main/java/org/apache/hadoop/tools/mapred/ main/java/org/apache/hadoop/tools/util/ test/java/org/apache/had

2013-03-26 Thread tgraves
Author: tgraves
Date: Tue Mar 26 20:50:46 2013
New Revision: 1461305

URL: http://svn.apache.org/r1461305
Log:
MAPREDUCE-5075. DistCp leaks input file handles since ThrottledInputStream does 
not close the wrapped InputStream.  (Chris Nauroth via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/RetriableFileCopyCommand.java

hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/ThrottledInputStream.java

hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/test/java/org/apache/hadoop/tools/TestIntegration.java

Modified: 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/RetriableFileCopyCommand.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/RetriableFileCopyCommand.java?rev=1461305r1=1461304r2=1461305view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/RetriableFileCopyCommand.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/RetriableFileCopyCommand.java
 Tue Mar 26 20:50:46 2013
@@ -112,7 +112,7 @@ public class RetriableFileCopyCommand ex
 tmpTargetPath, true, BUFFER_SIZE,
 getReplicationFactor(fileAttributes, sourceFileStatus, targetFS, 
tmpTargetPath),
 getBlockSize(fileAttributes, sourceFileStatus, targetFS, 
tmpTargetPath), context));
-return copyBytes(sourceFileStatus, outStream, BUFFER_SIZE, true, context);
+return copyBytes(sourceFileStatus, outStream, BUFFER_SIZE, context);
   }
 
   private void compareFileLengths(FileStatus sourceFileStatus, Path target,
@@ -158,8 +158,8 @@ public class RetriableFileCopyCommand ex
   }
 
   private long copyBytes(FileStatus sourceFileStatus, OutputStream outStream,
- int bufferSize, boolean mustCloseStream,
- Mapper.Context context) throws IOException {
+ int bufferSize, Mapper.Context context)
+  throws IOException {
 Path source = sourceFileStatus.getPath();
 byte buf[] = new byte[bufferSize];
 ThrottledInputStream inStream = null;
@@ -175,8 +175,7 @@ public class RetriableFileCopyCommand ex
 bytesRead = inStream.read(buf);
   }
 } finally {
-  if (mustCloseStream)
-IOUtils.cleanup(LOG, outStream, inStream);
+  IOUtils.cleanup(LOG, outStream, inStream);
 }
 
 return totalBytesRead;

Modified: 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/ThrottledInputStream.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/ThrottledInputStream.java?rev=1461305r1=1461304r2=1461305view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/ThrottledInputStream.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/util/ThrottledInputStream.java
 Tue Mar 26 20:50:46 2013
@@ -52,6 +52,11 @@ public class ThrottledInputStream extend
 this.maxBytesPerSec = maxBytesPerSec;
   }
 
+  @Override
+  public void close() throws IOException {
+rawStream.close();
+  }
+
   /** @inheritDoc */
   @Override
   public int read() throws IOException {

Modified: 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/test/java/org/apache/hadoop/tools/TestIntegration.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/test/java/org/apache/hadoop/tools/TestIntegration.java?rev=1461305r1=1461304r2=1461305view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/test/java/org/apache/hadoop/tools/TestIntegration.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-distcp/src/test/java/org/apache/hadoop/tools/TestIntegration.java
 Tue Mar 26 20:50:46 2013
@@ -96,7 +96,7 @@ public class TestIntegration {
 
 try {
   addEntries(listFile, singlefile1/file1);
-  createFiles(singlefile1/file1, target.toString());
+  createFiles(singlefile1/file1, target);
 
   runTest(listFile, target, sync);
 




svn commit: r1456976 - in /hadoop/common/branches/branch-0.23/hadoop-common-project: hadoop-annotations/pom.xml hadoop-common/CHANGES.txt

2013-03-15 Thread tgraves
Author: tgraves
Date: Fri Mar 15 14:54:39 2013
New Revision: 1456976

URL: http://svn.apache.org/r1456976
Log:
HADOOP-9406. hadoop-client leaks dependency on JDK tools jar. (tucu)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml?rev=1456976r1=1456975r2=1456976view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-annotations/pom.xml
 Fri Mar 15 14:54:39 2013
@@ -39,4 +39,24 @@
 /dependency
   /dependencies
 
+  profiles
+profile
+  idos.linux/id
+  activation
+os
+  family!Mac/family
+/os
+  /activation
+  dependencies
+dependency
+  groupIdjdk.tools/groupId
+  artifactIdjdk.tools/artifactId
+  version1.6/version
+  scopesystem/scope
+  systemPath${java.home}/../lib/tools.jar/systemPath
+/dependency
+  /dependencies
+/profile
+  /profiles
+
 /project

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1456976r1=1456975r2=1456976view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Mar 15 14:54:39 2013
@@ -117,6 +117,8 @@ Release 0.23.7 - UNRELEASED
 HADOOP-8816. HTTP Error 413 full HEAD if using kerberos authentication
 (daryn)
 
+HADOOP-9406. hadoop-client leaks dependency on JDK tools jar. (tucu)
+
 Release 0.23.6 - 2013-02-06
 
   INCOMPATIBLE CHANGES




svn commit: r1446271 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: ./ src/main/java/org/apache/hadoop/io/ src/test/java/org/apache/hadoop/io/

2013-02-14 Thread tgraves
Author: tgraves
Date: Thu Feb 14 16:37:21 2013
New Revision: 1446271

URL: http://svn.apache.org/r1446271
Log:
HADOOP-9154. SortedMapWritable#putAll() doesn't add key/value classes to the 
map. (Karthik Kambatla via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/AbstractMapWritable.java

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/SortedMapWritable.java

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/TestSortedMapWritable.java

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1446271r1=1446270r2=1446271view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Thu Feb 14 16:37:21 2013
@@ -85,6 +85,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage
 option (Andy Isaacson via tgraves)
 
+HADOOP-9154. SortedMapWritable#putAll() doesn't add key/value classes to
+the map. (Karthik Kambatla via tgraves)
+
 Release 0.23.6 - 2013-02-06
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/AbstractMapWritable.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/AbstractMapWritable.java?rev=1446271r1=1446270r2=1446271view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/AbstractMapWritable.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/AbstractMapWritable.java
 Thu Feb 14 16:37:21 2013
@@ -29,6 +29,8 @@ import org.apache.hadoop.classification.
 import org.apache.hadoop.conf.Configurable;
 import org.apache.hadoop.conf.Configuration;
 
+import com.google.common.annotations.VisibleForTesting;
+
 /**
  * Abstract base class for MapWritable and SortedMapWritable
  * 
@@ -45,10 +47,12 @@ public abstract class AbstractMapWritabl
   private AtomicReferenceConfiguration conf;
   
   /* Class to id mappings */
-  private MapClass, Byte classToIdMap = new ConcurrentHashMapClass, Byte();
+  @VisibleForTesting
+  MapClass, Byte classToIdMap = new ConcurrentHashMapClass, Byte();
   
   /* Id to Class mappings */
-  private MapByte, Class idToClassMap = new ConcurrentHashMapByte, Class();
+  @VisibleForTesting
+  MapByte, Class idToClassMap = new ConcurrentHashMapByte, Class();
   
   /* The number of new classes (those not established by the constructor) */
   private volatile byte newClasses = 0;

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/SortedMapWritable.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/SortedMapWritable.java?rev=1446271r1=1446270r2=1446271view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/SortedMapWritable.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/SortedMapWritable.java
 Thu Feb 14 16:37:21 2013
@@ -141,7 +141,7 @@ public class SortedMapWritable extends A
 for (Map.Entry? extends WritableComparable, ? extends Writable e:
   t.entrySet()) {
   
-  instance.put(e.getKey(), e.getValue());
+  put(e.getKey(), e.getValue());
 }
   }
 

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/TestSortedMapWritable.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/TestSortedMapWritable.java?rev=1446271r1=1446270r2=1446271view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/TestSortedMapWritable.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/TestSortedMapWritable.java

svn commit: r1445635 - /hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 14:49:35 2013
New Revision: 1445635

URL: http://svn.apache.org/r1445635
Log:
HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via tgraves)

Modified:
hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1445635r1=1445634r2=1445635view=diff
==
--- hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt Wed Feb 
13 14:49:35 2013
@@ -1341,6 +1341,9 @@ Release 0.23.7 - UNRELEASED
 
   BUG FIXES
 
+HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via
+tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES




svn commit: r1445635 - /hadoop/common/trunk/hadoop-project/src/site/site.xml

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 14:49:35 2013
New Revision: 1445635

URL: http://svn.apache.org/r1445635
Log:
HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via tgraves)

Modified:
hadoop/common/trunk/hadoop-project/src/site/site.xml

Modified: hadoop/common/trunk/hadoop-project/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-project/src/site/site.xml?rev=1445635r1=1445634r2=1445635view=diff
==
--- hadoop/common/trunk/hadoop-project/src/site/site.xml (original)
+++ hadoop/common/trunk/hadoop-project/src/site/site.xml Wed Feb 13 14:49:35 
2013
@@ -52,13 +52,25 @@
   item name=Cluster Setup 
href=hadoop-project-dist/hadoop-common/ClusterSetup.html/
   item name=CLI Mini Cluster 
href=hadoop-project-dist/hadoop-common/CLIMiniCluster.html/
   item name=File System Shell 
href=hadoop-project-dist/hadoop-common/FileSystemShell.html/
+  item name=Native Libraries 
href=hadoop-project-dist/hadoop-common/NativeLibraries.html/
+  item name=Superusers 
href=hadoop-project-dist/hadoop-common/Superusers.html/
   item name=Hadoop Commands Reference 
href=hadoop-project-dist/hadoop-common/CommandsManual.html/
+  item name=Service Level Authorization 
href=hadoop-project-dist/hadoop-common/ServiceLevelAuth.html/
+  item name=HTTP Authentication 
href=hadoop-project-dist/hadoop-common/HttpAuthentication.html/
 /menu
 
 menu name=HDFS inherit=top
+  item name=HDFS User Guide 
href=hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html/
   item name=High Availability With QJM 
href=hadoop-project-dist/hadoop-hdfs/HDFSHighAvailabilityWithQJM.html/
   item name=High Availability With NFS 
href=hadoop-project-dist/hadoop-hdfs/HDFSHighAvailabilityWithNFS.html/
   item name=Federation 
href=hadoop-project-dist/hadoop-hdfs/Federation.html/
+  item name=HDFS Architecture 
href=hadoop-project-dist/hadoop-hdfs/HdfsDesign.html/
+  item name=Edits Viewer 
href=hadoop-project-dist/hadoop-hdfs/HdfsEditsViewer.html/
+  item name=Image Viewer 
href=hadoop-project-dist/hadoop-hdfs/HdfsImageViewer.html/
+  item name=Permissions and HDFS 
href=hadoop-project-dist/hadoop-hdfs/HdfsPermissionsGuide.html/
+  item name=Quotas and HDFS 
href=hadoop-project-dist/hadoop-hdfs/HdfsQuotaAdminGuide.html/
+  item name=HFTP href=hadoop-project-dist/hadoop-hdfs/Hftp.html/
+  item name=C API libhdfs 
href=hadoop-project-dist/hadoop-hdfs/LibHdfs.html/
   item name=WebHDFS REST API 
href=hadoop-project-dist/hadoop-hdfs/WebHDFS.html/
   item name=HttpFS Gateway href=hadoop-hdfs-httpfs/index.html/
 /menu
@@ -72,6 +84,7 @@
   item name=YARN Architecture 
href=hadoop-yarn/hadoop-yarn-site/YARN.html/
   item name=Writing YARN Applications 
href=hadoop-yarn/hadoop-yarn-site/WritingYarnApplications.html/
   item name=Capacity Scheduler 
href=hadoop-yarn/hadoop-yarn-site/CapacityScheduler.html/
+  item name=Fair Scheduler 
href=hadoop-yarn/hadoop-yarn-site/FairScheduler.html/
   item name=Web Application Proxy 
href=hadoop-yarn/hadoop-yarn-site/WebApplicationProxy.html/
   item name=YARN Commands 
href=hadoop-yarn/hadoop-yarn-site/YarnCommands.html/
 /menu




svn commit: r1445648 - /hadoop/common/branches/branch-2/hadoop-project/src/site/site.xml

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 15:05:21 2013
New Revision: 1445648

URL: http://svn.apache.org/r1445648
Log:
HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via tgraves)

Modified:
hadoop/common/branches/branch-2/hadoop-project/src/site/site.xml

Modified: hadoop/common/branches/branch-2/hadoop-project/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-project/src/site/site.xml?rev=1445648r1=1445647r2=1445648view=diff
==
--- hadoop/common/branches/branch-2/hadoop-project/src/site/site.xml (original)
+++ hadoop/common/branches/branch-2/hadoop-project/src/site/site.xml Wed Feb 13 
15:05:21 2013
@@ -52,13 +52,25 @@
   item name=Cluster Setup 
href=hadoop-project-dist/hadoop-common/ClusterSetup.html/
   item name=CLI Mini Cluster 
href=hadoop-project-dist/hadoop-common/CLIMiniCluster.html/
   item name=File System Shell 
href=hadoop-project-dist/hadoop-common/FileSystemShell.html/
+  item name=Native Libraries 
href=hadoop-project-dist/hadoop-common/NativeLibraries.html/
+  item name=Superusers 
href=hadoop-project-dist/hadoop-common/Superusers.html/
   item name=Hadoop Commands Reference 
href=hadoop-project-dist/hadoop-common/CommandsManual.html/
+  item name=Service Level Authorization 
href=hadoop-project-dist/hadoop-common/ServiceLevelAuth.html/
+  item name=HTTP Authentication 
href=hadoop-project-dist/hadoop-common/HttpAuthentication.html/
 /menu
 
 menu name=HDFS inherit=top
+  item name=HDFS User Guide 
href=hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html/
   item name=High Availability With QJM 
href=hadoop-yarn/hadoop-yarn-site/HDFSHighAvailabilityWithQJM.html/
   item name=High Availability With NFS 
href=hadoop-yarn/hadoop-yarn-site/HDFSHighAvailabilityWithNFS.html/
   item name=Federation 
href=hadoop-project-dist/hadoop-hdfs/Federation.html/
+  item name=HDFS Architecture 
href=hadoop-project-dist/hadoop-hdfs/HdfsDesign.html/
+  item name=Edits Viewer 
href=hadoop-project-dist/hadoop-hdfs/HdfsEditsViewer.html/
+  item name=Image Viewer 
href=hadoop-project-dist/hadoop-hdfs/HdfsImageViewer.html/
+  item name=Permissions and HDFS 
href=hadoop-project-dist/hadoop-hdfs/HdfsPermissionsGuide.html/
+  item name=Quotas and HDFS 
href=hadoop-project-dist/hadoop-hdfs/HdfsQuotaAdminGuide.html/
+  item name=HFTP href=hadoop-project-dist/hadoop-hdfs/Hftp.html/
+  item name=C API libhdfs 
href=hadoop-project-dist/hadoop-hdfs/LibHdfs.html/
   item name=WebHDFS REST API 
href=hadoop-project-dist/hadoop-hdfs/WebHDFS.html/
   item name=HttpFS Gateway href=hadoop-hdfs-httpfs/index.html/
 /menu
@@ -72,6 +84,7 @@
   item name=YARN Architecture 
href=hadoop-yarn/hadoop-yarn-site/YARN.html/
   item name=Writing YARN Applications 
href=hadoop-yarn/hadoop-yarn-site/WritingYarnApplications.html/
   item name=Capacity Scheduler 
href=hadoop-yarn/hadoop-yarn-site/CapacityScheduler.html/
+  item name=Fair Scheduler 
href=hadoop-yarn/hadoop-yarn-site/FairScheduler.html/
   item name=Web Application Proxy 
href=hadoop-yarn/hadoop-yarn-site/WebApplicationProxy.html/
   item name=YARN Commands 
href=hadoop-yarn/hadoop-yarn-site/YarnCommands.html/
 /menu




svn commit: r1445649 - /hadoop/common/branches/branch-0.23/hadoop-project/src/site/site.xml

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 15:10:04 2013
New Revision: 1445649

URL: http://svn.apache.org/r1445649
Log:
HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via tgraves)

Modified:
hadoop/common/branches/branch-0.23/hadoop-project/src/site/site.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-project/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-project/src/site/site.xml?rev=1445649r1=1445648r2=1445649view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-project/src/site/site.xml 
(original)
+++ hadoop/common/branches/branch-0.23/hadoop-project/src/site/site.xml Wed Feb 
13 15:10:04 2013
@@ -51,11 +51,23 @@
   item name=Single Node Setup 
href=hadoop-project-dist/hadoop-common/SingleCluster.html/
   item name=Cluster Setup 
href=hadoop-project-dist/hadoop-common/ClusterSetup.html/
   item name=File System Shell 
href=hadoop-project-dist/hadoop-common/FileSystemShell.html/
+  item name=Native Libraries 
href=hadoop-project-dist/hadoop-common/NativeLibraries.html/
+  item name=Superusers 
href=hadoop-project-dist/hadoop-common/Superusers.html/
   item name=Hadoop Commands Reference 
href=hadoop-project-dist/hadoop-common/CommandsManual.html/
+  item name=Service Level Authorization 
href=hadoop-project-dist/hadoop-common/ServiceLevelAuth.html/
+  item name=HTTP Authentication 
href=hadoop-project-dist/hadoop-common/HttpAuthentication.html/
 /menu
 
 menu name=HDFS inherit=top
+  item name=HDFS User Guide 
href=hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html/
   item name=Federation 
href=hadoop-project-dist/hadoop-hdfs/Federation.html/
+  item name=HDFS Architecture 
href=hadoop-project-dist/hadoop-hdfs/HdfsDesign.html/
+  item name=Edits Viewer 
href=hadoop-project-dist/hadoop-hdfs/HdfsEditsViewer.html/
+  item name=Image Viewer 
href=hadoop-project-dist/hadoop-hdfs/HdfsImageViewer.html/
+  item name=Permissions and HDFS 
href=hadoop-project-dist/hadoop-hdfs/HdfsPermissionsGuide.html/
+  item name=Quotas and HDFS 
href=hadoop-project-dist/hadoop-hdfs/HdfsQuotaAdminGuide.html/
+  item name=HFTP href=hadoop-project-dist/hadoop-hdfs/Hftp.html/
+  item name=C API libhdfs 
href=hadoop-project-dist/hadoop-hdfs/LibHdfs.html/
   item name=WebHDFS REST API 
href=hadoop-project-dist/hadoop-hdfs/WebHDFS.html/
   item name=HttpFS Gateway href=hadoop-hdfs-httpfs/index.html/
 /menu




svn commit: r1445649 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 15:10:04 2013
New Revision: 1445649

URL: http://svn.apache.org/r1445649
Log:
HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1445649r1=1445648r2=1445649view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Wed Feb 13 15:10:04 2013
@@ -79,6 +79,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9289. FsShell rm -f fails for non-matching globs. (Daryn Sharp via
 suresh)
 
+HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via 
+tgraves)
+
 Release 0.23.6 - 2013-02-06
 
   INCOMPATIBLE CHANGES




svn commit: r1445656 - in /hadoop/common/trunk/hadoop-common-project/hadoop-common: CHANGES.txt src/site/apt/CommandsManual.apt.vm

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 15:15:28 2013
New Revision: 1445656

URL: http://svn.apache.org/r1445656
Log:
HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage 
option (Andy Isaacson via tgraves)

Modified:
hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/trunk/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm

Modified: hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1445656r1=1445655r2=1445656view=diff
==
--- hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt Wed Feb 
13 15:15:28 2013
@@ -1344,6 +1344,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via
 tgraves)
 
+HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage
+option (Andy Isaacson via tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm?rev=1445656r1=1445655r2=1445656view=diff
==
--- 
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
 (original)
+++ 
hadoop/common/trunk/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
 Wed Feb 13 15:15:28 2013
@@ -350,10 +350,11 @@ Administration Commands
 
Runs a HDFS dfsadmin client.
 
-   Usage: hadoop dfsadmin [GENERIC_OPTIONS] [-report] [-safemode enter | 
leave | get | wait] [-refreshNodes] [-finalizeUpgrade] [-upgradeProgress status 
| details | force] [-metasave filename] [-setQuota quota 
dirname...dirname] [-clrQuota dirname...dirname] [-help [cmd]]
+   Usage: hadoop dfsadmin [GENERIC_OPTIONS] [-report] [-safemode enter | 
leave | get | wait] [-refreshNodes] [-finalizeUpgrade] [-upgradeProgress status 
| details | force] [-metasave filename] [-setQuota quota 
dirname...dirname] [-clrQuota dirname...dirname] [-restoreFailedStorage 
true|false|check] [-help [cmd]]
 
 *-+---+
 || COMMAND_OPTION || Description
+*-+---+
 | -report | Reports basic filesystem information and statistics.
 *-+---+
 | -safemode enter / leave / get / wait | Safe mode maintenance command. Safe
@@ -403,6 +404,10 @@ Administration Commands
   | 2. user is not an administrator.  It does not fault if the
   | directory has no quota.
 *-+---+
+| -restoreFailedStorage true / false / check | This option will turn on/off 
automatic attempt to restore failed storage replicas.
+  | If a failed storage becomes available again the system 
will attempt to restore
+  | edits and/or fsimage during checkpoint. 'check' option 
will return current setting.
+*-+---+
 | -help [cmd] | Displays help for the given command or all commands if none
   | is specified.
 *-+---+




svn commit: r1445657 - in /hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common: CHANGES.txt src/site/apt/CommandsManual.apt.vm

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 15:16:54 2013
New Revision: 1445657

URL: http://svn.apache.org/r1445657
Log:
HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage 
option (Andy Isaacson via tgraves)

Modified:

hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm

Modified: 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1445657r1=1445656r2=1445657view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
(original)
+++ 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/CHANGES.txt 
Wed Feb 13 15:16:54 2013
@@ -1022,6 +1022,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via
 tgraves)
 
+HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage
+option (Andy Isaacson via tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm?rev=1445657r1=1445656r2=1445657view=diff
==
--- 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
 (original)
+++ 
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
 Wed Feb 13 15:16:54 2013
@@ -350,10 +350,11 @@ Administration Commands
 
Runs a HDFS dfsadmin client.
 
-   Usage: hadoop dfsadmin [GENERIC_OPTIONS] [-report] [-safemode enter | 
leave | get | wait] [-refreshNodes] [-finalizeUpgrade] [-upgradeProgress status 
| details | force] [-metasave filename] [-setQuota quota 
dirname...dirname] [-clrQuota dirname...dirname] [-help [cmd]]
+   Usage: hadoop dfsadmin [GENERIC_OPTIONS] [-report] [-safemode enter | 
leave | get | wait] [-refreshNodes] [-finalizeUpgrade] [-upgradeProgress status 
| details | force] [-metasave filename] [-setQuota quota 
dirname...dirname] [-clrQuota dirname...dirname] [-restoreFailedStorage 
true|false|check] [-help [cmd]]
 
 *-+---+
 || COMMAND_OPTION || Description
+*-+---+
 | -report | Reports basic filesystem information and statistics.
 *-+---+
 | -safemode enter / leave / get / wait | Safe mode maintenance command. Safe
@@ -403,6 +404,10 @@ Administration Commands
   | 2. user is not an administrator.  It does not fault if the
   | directory has no quota.
 *-+---+
+| -restoreFailedStorage true / false / check | This option will turn on/off 
automatic attempt to restore failed storage replicas.
+  | If a failed storage becomes available again the system 
will attempt to restore
+  | edits and/or fsimage during checkpoint. 'check' option 
will return current setting.
+*-+---+
 | -help [cmd] | Displays help for the given command or all commands if none
   | is specified.
 *-+---+




svn commit: r1445658 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: CHANGES.txt src/site/apt/CommandsManual.apt.vm

2013-02-13 Thread tgraves
Author: tgraves
Date: Wed Feb 13 15:17:02 2013
New Revision: 1445658

URL: http://svn.apache.org/r1445658
Log:
HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage 
option (Andy Isaacson via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1445658r1=1445657r2=1445658view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Wed Feb 13 15:17:02 2013
@@ -82,6 +82,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9302. HDFS docs not linked from top level (Andy Isaacson via 
 tgraves)
 
+HADOOP-9303. command manual dfsadmin missing entry for restoreFailedStorage
+option (Andy Isaacson via tgraves)
+
 Release 0.23.6 - 2013-02-06
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm?rev=1445658r1=1445657r2=1445658view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/CommandsManual.apt.vm
 Wed Feb 13 15:17:02 2013
@@ -350,10 +350,11 @@ Administration Commands
 
Runs a HDFS dfsadmin client.
 
-   Usage: hadoop dfsadmin [GENERIC_OPTIONS] [-report] [-safemode enter | 
leave | get | wait] [-refreshNodes] [-finalizeUpgrade] [-upgradeProgress status 
| details | force] [-metasave filename] [-setQuota quota 
dirname...dirname] [-clrQuota dirname...dirname] [-help [cmd]]
+   Usage: hadoop dfsadmin [GENERIC_OPTIONS] [-report] [-safemode enter | 
leave | get | wait] [-refreshNodes] [-finalizeUpgrade] [-upgradeProgress status 
| details | force] [-metasave filename] [-setQuota quota 
dirname...dirname] [-clrQuota dirname...dirname] [-restoreFailedStorage 
true|false|check] [-help [cmd]]
 
 *-+---+
 || COMMAND_OPTION || Description
+*-+---+
 | -report | Reports basic filesystem information and statistics.
 *-+---+
 | -safemode enter / leave / get / wait | Safe mode maintenance command. Safe
@@ -403,6 +404,10 @@ Administration Commands
   | 2. user is not an administrator.  It does not fault if the
   | directory has no quota.
 *-+---+
+| -restoreFailedStorage true / false / check | This option will turn on/off 
automatic attempt to restore failed storage replicas.
+  | If a failed storage becomes available again the system 
will attempt to restore
+  | edits and/or fsimage during checkpoint. 'check' option 
will return current setting.
+*-+---+
 | -help [cmd] | Displays help for the given command or all commands if none
   | is specified.
 *-+---+




svn commit: r1444853 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: CHANGES.txt src/main/java/org/apache/hadoop/util/NativeCodeLoader.java

2013-02-11 Thread tgraves
Author: tgraves
Date: Mon Feb 11 16:29:50 2013
New Revision: 1444853

URL: http://svn.apache.org/r1444853
Log:
HADOOP-8075. Lower native-hadoop library log from info to debug. (Hızır Sefa 
İrken via eli)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/NativeCodeLoader.java

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1444853r1=1444852r2=1444853view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Mon Feb 11 16:29:50 2013
@@ -20,6 +20,8 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9253. Capture ulimit info in the logs at service start time.
 (Arpit Gupta via tgraves)
  
+HADOOP-8075. Lower native-hadoop library log from info to debug.
+(Hızır Sefa İrken via eli)
 
   OPTIMIZATIONS
 

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/NativeCodeLoader.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/NativeCodeLoader.java?rev=1444853r1=1444852r2=1444853view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/NativeCodeLoader.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/NativeCodeLoader.java
 Mon Feb 11 16:29:50 2013
@@ -47,7 +47,7 @@ public class NativeCodeLoader {
 }
 try {
   System.loadLibrary(hadoop);
-  LOG.info(Loaded the native-hadoop library);
+  LOG.debug(Loaded the native-hadoop library);
   nativeCodeLoaded = true;
 } catch (Throwable t) {
   // Ignore failure to load




svn commit: r1444854 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-02-11 Thread tgraves
Author: tgraves
Date: Mon Feb 11 16:31:34 2013
New Revision: 1444854

URL: http://svn.apache.org/r1444854
Log:
Updating release date for 0.23.6

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1444854r1=1444853r2=1444854view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Mon Feb 11 16:31:34 2013
@@ -79,7 +79,7 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9289. FsShell rm -f fails for non-matching globs. (Daryn Sharp via
 suresh)
 
-Release 0.23.6 - UNRELEASED
+Release 0.23.6 - 2013-02-06
 
   INCOMPATIBLE CHANGES
 




svn commit: r1444082 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: CHANGES.txt src/main/bin/hadoop-daemon.sh

2013-02-08 Thread tgraves
Author: tgraves
Date: Fri Feb  8 15:43:54 2013
New Revision: 1444082

URL: http://svn.apache.org/r1444082
Log:
HADOOP-9253. Capture ulimit info in the logs at service start time. (Arpit 
Gupta via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1444082r1=1444081r2=1444082view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Feb  8 15:43:54 2013
@@ -17,6 +17,10 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9067. provide test for LocalFileSystem.reportChecksumFailure
 (Ivan A. Veselovsky via bobby)
 
+HADOOP-9253. Capture ulimit info in the logs at service start time.
+(Arpit Gupta via tgraves)
+ 
+
   OPTIMIZATIONS
 
 HADOOP-9147. Add missing fields to FIleStatus.toString.

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh?rev=1444082r1=1444081r2=1444082view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop-daemon.sh
 Fri Feb  8 15:43:54 2013
@@ -83,7 +83,8 @@ fi
 if [ $command == datanode ]  [ $EUID -eq 0 ]  [ -n 
$HADOOP_SECURE_DN_USER ]; then
   export HADOOP_PID_DIR=$HADOOP_SECURE_DN_PID_DIR
   export HADOOP_LOG_DIR=$HADOOP_SECURE_DN_LOG_DIR
-  export HADOOP_IDENT_STRING=$HADOOP_SECURE_DN_USER   
+  export HADOOP_IDENT_STRING=$HADOOP_SECURE_DN_USER
+  starting_secure_dn=true
 fi
 
 if [ $HADOOP_IDENT_STRING =  ]; then
@@ -152,7 +153,17 @@ case $startStop in
   ;;
 esac
 echo $!  $pid
-sleep 1; head $log
+sleep 1
+# capture the ulimit output
+if [ true = $starting_secure_dn ]; then
+  echo ulimit -a for secure datanode user $HADOOP_SECURE_DN_USER  $log
+  # capture the ulimit info for the appropriate user
+  su --shell=/bin/bash $HADOOP_SECURE_DN_USER -c 'ulimit -a'  $log 21
+else
+  echo ulimit -a for user $USER  $log
+  ulimit -a  $log 21
+fi
+head -30 $log
 sleep 3;
 if ! ps -p $!  /dev/null ; then
   exit 1




svn commit: r1443042 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: ./ src/main/java/org/apache/hadoop/fs/ src/main/java/org/apache/hadoop/util/ src/test/java/org/apache

2013-02-06 Thread tgraves
Author: tgraves
Date: Wed Feb  6 16:23:54 2013
New Revision: 1443042

URL: http://svn.apache.org/viewvc?rev=1443042view=rev
Log:
HADOOP-9278. Fix the file handle leak in HarMetaData.parseMetaData() in 
HarFileSystem. (Chris Nauroth via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/HarFileSystem.java

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/LineReader.java

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestHarFileSystemBasics.java

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1443042r1=1443041r2=1443042view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Wed Feb  6 16:23:54 2013
@@ -67,6 +67,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9124. SortedMapWritable violates contract of Map interface for
 equals() and hashCode(). (Surenkumar Nihalani via tgraves)
 
+HADOOP-9278. Fix the file handle leak in HarMetaData.parseMetaData() in
+HarFileSystem. (Chris Nauroth via tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/HarFileSystem.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/HarFileSystem.java?rev=1443042r1=1443041r2=1443042view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/HarFileSystem.java
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/HarFileSystem.java
 Wed Feb  6 16:23:54 2013
@@ -30,8 +30,11 @@ import java.util.TreeMap;
 import java.util.HashMap;
 import java.util.concurrent.ConcurrentHashMap;
 
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.permission.FsPermission;
+import org.apache.hadoop.io.IOUtils;
 import org.apache.hadoop.io.Text;
 import org.apache.hadoop.util.LineReader;
 import org.apache.hadoop.util.Progressable;
@@ -50,6 +53,9 @@ import org.apache.hadoop.util.Progressab
  */
 
 public class HarFileSystem extends FilterFileSystem {
+
+  private static final Log LOG = LogFactory.getLog(HarFileSystem.class);
+
   public static final int VERSION = 3;
 
   private static final MapURI, HarMetaData harMetaCache =
@@ -987,68 +993,69 @@ public class HarFileSystem extends Filte
 }
 
 private void parseMetaData() throws IOException {
-  FSDataInputStream in = fs.open(masterIndexPath);
-  FileStatus masterStat = fs.getFileStatus(masterIndexPath);
-  masterIndexTimestamp = masterStat.getModificationTime();
-  LineReader lin = new LineReader(in, getConf());
-  Text line = new Text();
-  long read = lin.readLine(line);
-
- // the first line contains the version of the index file
-  String versionLine = line.toString();
-  String[] arr = versionLine.split( );
-  version = Integer.parseInt(arr[0]);
-  // make it always backwards-compatible
-  if (this.version  HarFileSystem.VERSION) {
-throw new IOException(Invalid version  + 
-this.version +  expected  + HarFileSystem.VERSION);
-  }
-
-  // each line contains a hashcode range and the index file name
-  String[] readStr = null;
-  while(read  masterStat.getLen()) {
-int b = lin.readLine(line);
-read += b;
-readStr = line.toString().split( );
-int startHash = Integer.parseInt(readStr[0]);
-int endHash  = Integer.parseInt(readStr[1]);
-stores.add(new Store(Long.parseLong(readStr[2]), 
-Long.parseLong(readStr[3]), startHash,
-endHash));
-line.clear();
-  }
+  Text line;
+  long read;
+  FSDataInputStream in = null;
+  LineReader lin = null;
+
   try {
-// close the master index
-lin.close();
-  } catch(IOException io){
-// do nothing just a read.
-  }
+in = fs.open(masterIndexPath);
+FileStatus masterStat = fs.getFileStatus(masterIndexPath);
+masterIndexTimestamp = masterStat.getModificationTime();
+lin = new LineReader(in, getConf

svn commit: r1443062 - in /hadoop/common/tags: release-0.23.6-rc1/ release-0.23.6/

2013-02-06 Thread tgraves
Author: tgraves
Date: Wed Feb  6 16:53:08 2013
New Revision: 1443062

URL: http://svn.apache.org/viewvc?rev=1443062view=rev
Log:
Hadoop 0.23.6 release

Added:
hadoop/common/tags/release-0.23.6/   (props changed)
  - copied from r1443061, hadoop/common/tags/release-0.23.6-rc1/
Removed:
hadoop/common/tags/release-0.23.6-rc1/

Propchange: hadoop/common/tags/release-0.23.6/
--
--- svn:ignore (added)
+++ svn:ignore Wed Feb  6 16:53:08 2013
@@ -0,0 +1,5 @@
+.classpath
+.git
+.project
+.settings
+target

Propchange: hadoop/common/tags/release-0.23.6/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Wed Feb  6 16:53:08 2013
@@ -0,0 +1 @@
+/hadoop/common/trunk:1161777,1161781,1162188,1162421,1162491,1162499,1162613,1162928,1162954,1162979,1163050,1163069,1163490,1163768,1163852,1163858,1163981,1164255,1164301,1164339,1166009,1166402,1167001,1167383,1167662,1170085,1170379,1170459,1171297,1172916,1173402,1176550,1177487,1177531,1177859,1177864,1182189,1182205,1182214,1189613,1189932,1189982,1195575,1196113,1196129,1204114,1204117,1204122,1204124,1204129,1204131,1204177,1204370,1204376,1204388,1205260,1205697,1206786,1206830,1207694,1208153,1208313,1212021,1212062,1212073,1212084,1213537,1213586,1213592-1213593,1213954,1214046,1220510,1221348,1225114,1225192,1225456,1225489,1225591,1226211,1226239,1226350,1227091,1227165,1227423,1227964,1229347,1230398,1231569,1231572,1231627,1231640,1233605,1234555,1235135,1235137,1235956,1236456,1239752,1240897,1240928,1243065,1243104,1244766,1245751,1245762,1293419,1304099,1351818,1373683,1382409




svn commit: r1443063 - /hadoop/common/tags/release-0.23.6-rc0/

2013-02-06 Thread tgraves
Author: tgraves
Date: Wed Feb  6 16:53:51 2013
New Revision: 1443063

URL: http://svn.apache.org/viewvc?rev=1443063view=rev
Log:
remove rc0 release tag

Removed:
hadoop/common/tags/release-0.23.6-rc0/



svn commit: r1443123 - /hadoop/common/branches/branch-0.23/hadoop-project/pom.xml

2013-02-06 Thread tgraves
Author: tgraves
Date: Wed Feb  6 18:51:34 2013
New Revision: 1443123

URL: http://svn.apache.org/viewvc?rev=1443123view=rev
Log:
YARN-83. missed checking in pom.xml in original checkin

Modified:
hadoop/common/branches/branch-0.23/hadoop-project/pom.xml

Modified: hadoop/common/branches/branch-0.23/hadoop-project/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-project/pom.xml?rev=1443123r1=1443122r2=1443123view=diff
==
--- hadoop/common/branches/branch-0.23/hadoop-project/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/hadoop-project/pom.xml Wed Feb  6 
18:51:34 2013
@@ -120,6 +120,12 @@
 
   dependency
 groupIdorg.apache.hadoop/groupId
+artifactIdhadoop-yarn-client/artifactId
+version${project.version}/version
+  /dependency
+
+  dependency
+groupIdorg.apache.hadoop/groupId
 artifactIdhadoop-mapreduce-client-core/artifactId
 version${project.version}/version
   /dependency




svn commit: r1442609 - /hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc

2013-02-05 Thread tgraves
Author: tgraves
Date: Tue Feb  5 14:33:10 2013
New Revision: 1442609

URL: http://svn.apache.org/viewvc?rev=1442609view=rev
Log:
 MAPREDUCE-4953. HadoopPipes misuses fprintf. (Andy Isaacson via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc

Modified: 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc?rev=1442609r1=1442608r2=1442609view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-tools/hadoop-pipes/src/main/native/pipes/impl/HadoopPipes.cc
 Tue Feb  5 14:33:10 2013
@@ -126,7 +126,7 @@ namespace HadoopPipes {
 static const char lineSeparator = '\n';
 
 void writeBuffer(const string buffer) {
-  fprintf(stream, quoteString(buffer, \t\n).c_str());
+  fputs(quoteString(buffer, \t\n).c_str(), stream);
 }
 
   public:




svn commit: r1441499 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: CHANGES.txt src/main/bin/hadoop

2013-02-01 Thread tgraves
Author: tgraves
Date: Fri Feb  1 15:59:40 2013
New Revision: 1441499

URL: http://svn.apache.org/viewvc?rev=1441499view=rev
Log:
HADOOP-9193. hadoop script can inadvertently expand wildcard arguments when 
delegating to hdfs script. (Andy Isaacson via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1441499r1=1441498r2=1441499view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Feb  1 15:59:40 2013
@@ -50,6 +50,9 @@ Release 0.23.7 - UNRELEASED
 webhdfs filesystem and fsck to fail when security is on  (Arpit Gupta
 via tgraves)
 
+HADOOP-9193. hadoop script can inadvertently expand wildcard arguments
+when delegating to hdfs script. (Andy Isaacson via tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop?rev=1441499r1=1441498r2=1441499view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop
 Fri Feb  1 15:59:40 2013
@@ -56,9 +56,9 @@ case $COMMAND in
 echo  12
 #try to locate hdfs and if present, delegate to it.  
 if [ -f ${HADOOP_HDFS_HOME}/bin/hdfs ]; then
-  exec ${HADOOP_HDFS_HOME}/bin/hdfs $*
+  exec ${HADOOP_HDFS_HOME}/bin/hdfs $@
 elif [ -f ${HADOOP_PREFIX}/bin/hdfs ]; then
-  exec ${HADOOP_PREFIX}/bin/hdfs $*
+  exec ${HADOOP_PREFIX}/bin/hdfs $@
 else
   echo HADOOP_HDFS_HOME not found!
   exit 1
@@ -72,9 +72,9 @@ case $COMMAND in
 echo  12
 #try to locate mapred and if present, delegate to it.
 if [ -f ${HADOOP_MAPRED_HOME}/bin/mapred ]; then
-  exec ${HADOOP_MAPRED_HOME}/bin/mapred $*
+  exec ${HADOOP_MAPRED_HOME}/bin/mapred $@
 elif [ -f ${HADOOP_PREFIX}/bin/mapred ]; then
-  exec ${HADOOP_PREFIX}/bin/mapred $*
+  exec ${HADOOP_PREFIX}/bin/mapred $@
 else
   echo HADOOP_MAPRED_HOME not found!
   exit 1




svn commit: r1441502 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: CHANGES.txt src/main/bin/hadoop

2013-02-01 Thread tgraves
Author: tgraves
Date: Fri Feb  1 16:04:39 2013
New Revision: 1441502

URL: http://svn.apache.org/viewvc?rev=1441502view=rev
Log:
HADOOP-8214. make hadoop script recognize a full set of deprecated commands(rvs 
via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1441502r1=1441501r2=1441502view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Feb  1 16:04:39 2013
@@ -53,6 +53,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-9193. hadoop script can inadvertently expand wildcard arguments
 when delegating to hdfs script. (Andy Isaacson via tgraves)
 
+HADOOP-8214. make hadoop script recognize a full set of deprecated commands
+(rvs via tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop?rev=1441502r1=1441501r2=1441502view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/bin/hadoop
 Fri Feb  1 16:04:39 2013
@@ -50,15 +50,16 @@ fi
 COMMAND=$1
 case $COMMAND in
   #hdfs commands
-  namenode|secondarynamenode|datanode|dfs|dfsadmin|fsck|balancer|fetchdt)
+  
namenode|secondarynamenode|datanode|dfs|dfsadmin|fsck|balancer|fetchdt|oiv|dfsgroups)
 echo DEPRECATED: Use of this script to execute hdfs command is 
deprecated. 12
 echo Instead use the hdfs command for it. 12
 echo  12
 #try to locate hdfs and if present, delegate to it.  
+shift
 if [ -f ${HADOOP_HDFS_HOME}/bin/hdfs ]; then
-  exec ${HADOOP_HDFS_HOME}/bin/hdfs $@
+  exec ${HADOOP_HDFS_HOME}/bin/hdfs ${COMMAND/dfsgroups/groups} $@
 elif [ -f ${HADOOP_PREFIX}/bin/hdfs ]; then
-  exec ${HADOOP_PREFIX}/bin/hdfs $@
+  exec ${HADOOP_PREFIX}/bin/hdfs ${COMMAND/dfsgroups/groups} $@
 else
   echo HADOOP_HDFS_HOME not found!
   exit 1
@@ -66,15 +67,16 @@ case $COMMAND in
 ;;
 
   #mapred commands for backwards compatibility
-  pipes|job|queue)
+  pipes|job|queue|mrgroups|mradmin|jobtracker|tasktracker)
 echo DEPRECATED: Use of this script to execute mapred command is 
deprecated. 12
 echo Instead use the mapred command for it. 12
 echo  12
 #try to locate mapred and if present, delegate to it.
+shift
 if [ -f ${HADOOP_MAPRED_HOME}/bin/mapred ]; then
-  exec ${HADOOP_MAPRED_HOME}/bin/mapred $@
+  exec ${HADOOP_MAPRED_HOME}/bin/mapred ${COMMAND/mrgroups/groups} $@
 elif [ -f ${HADOOP_PREFIX}/bin/mapred ]; then
-  exec ${HADOOP_PREFIX}/bin/mapred $@
+  exec ${HADOOP_PREFIX}/bin/mapred ${COMMAND/mrgroups/groups} $@
 else
   echo HADOOP_MAPRED_HOME not found!
   exit 1




svn commit: r1441567 - in /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common: CHANGES.txt src/main/resources/core-default.xml src/site/apt/HttpAuthentication.apt.vm

2013-02-01 Thread tgraves
Author: tgraves
Date: Fri Feb  1 18:16:05 2013
New Revision: 1441567

URL: http://svn.apache.org/viewvc?rev=1441567view=rev
Log:
HADOOP-8857. hadoop.http.authentication.signature.secret.file docs should not 
state that secret is randomly generated. (tucu)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/HttpAuthentication.apt.vm

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1441567r1=1441566r2=1441567view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Feb  1 18:16:05 2013
@@ -56,6 +56,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-8214. make hadoop script recognize a full set of deprecated commands
 (rvs via tgraves)
 
+HADOOP-8857. hadoop.http.authentication.signature.secret.file docs 
+should not state that secret is randomly generated. (tucu)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml?rev=1441567r1=1441566r2=1441567view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/main/resources/core-default.xml
 Fri Feb  1 18:16:05 2013
@@ -805,7 +805,6 @@
   valuehadoop/value
   description
 The signature secret for signing the authentication tokens.
-If not set a random secret is generated at startup time.
 The same secret should be used for JT/NN/DN/TT configurations.
   /description
 /property

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/HttpAuthentication.apt.vm
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/HttpAuthentication.apt.vm?rev=1441567r1=1441566r2=1441567view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/HttpAuthentication.apt.vm
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/src/site/apt/HttpAuthentication.apt.vm
 Fri Feb  1 18:16:05 2013
@@ -64,10 +64,9 @@ Authentication for Hadoop HTTP web-conso
The default value is 36000.
 
hadoop.http.authentication.signature.secret.file: The signature secret
-   file for signing the authentication tokens. If not set a random secret is
-   generated at startup time. The same secret should be used for all nodes
-   in the cluster, JobTracker, NameNode, DataNode and TastTracker. The
-   default value is ${user.home}/hadoop-http-auth-signature-secret.
+   file for signing the authentication tokens. The same secret should be used 
+   for all nodes in the cluster, JobTracker, NameNode, DataNode and 
TastTracker. 
+   The default value is ${user.home}/hadoop-http-auth-signature-secret.
IMPORTANT: This file should be readable only by the Unix user running the
daemons.
 




svn commit: r1441569 - /hadoop/common/branches/branch-0.23/pom.xml

2013-02-01 Thread tgraves
Author: tgraves
Date: Fri Feb  1 18:23:51 2013
New Revision: 1441569

URL: http://svn.apache.org/viewvc?rev=1441569view=rev
Log:
 HADOOP-9231. Parametrize staging URL for the uniformity of 
distributionManagement. (Konstantin Boudnik via tgraves)

Modified:
hadoop/common/branches/branch-0.23/pom.xml

Modified: hadoop/common/branches/branch-0.23/pom.xml
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/pom.xml?rev=1441569r1=1441568r2=1441569view=diff
==
--- hadoop/common/branches/branch-0.23/pom.xml (original)
+++ hadoop/common/branches/branch-0.23/pom.xml Fri Feb  1 18:23:51 2013
@@ -36,12 +36,12 @@
 
   distributionManagement
 repository
-  idapache.staging.https/id
-  nameApache Release Distribution Repository/name
-  
urlhttps://repository.apache.org/service/local/staging/deploy/maven2/url
+  id${distMgmtStagingId}/id
+  name${distMgmtStagingName}/name
+  url${distMgmtStagingUrl}/url
 /repository
 snapshotRepository
-  idapache.snapshots.https/id
+  id${distMgmtSnapshotsId}/id
   name${distMgmtSnapshotsName}/name
   url${distMgmtSnapshotsUrl}/url
 /snapshotRepository
@@ -53,7 +53,7 @@
 
   repositories
 repository
-  idapache.snapshots.https/id
+  id${distMgmtSnapshotsId}/id
   name${distMgmtSnapshotsName}/name
   url${distMgmtSnapshotsUrl}/url
 /repository
@@ -79,8 +79,12 @@
   /organization
 
   properties
+distMgmtSnapshotsIdapache.snapshots.https/distMgmtSnapshotsId
 distMgmtSnapshotsNameApache Development Snapshot 
Repository/distMgmtSnapshotsName
 
distMgmtSnapshotsUrlhttps://repository.apache.org/content/repositories/snapshots/distMgmtSnapshotsUrl
+distMgmtStagingIdapache.staging.https/distMgmtStagingId
+distMgmtStagingNameApache Release Distribution 
Repository/distMgmtStagingName
+
distMgmtStagingUrlhttps://repository.apache.org/service/local/staging/deploy/maven2/distMgmtStagingUrl
   /properties
 
   modules




svn commit: r1441569 - /hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

2013-02-01 Thread tgraves
Author: tgraves
Date: Fri Feb  1 18:23:51 2013
New Revision: 1441569

URL: http://svn.apache.org/viewvc?rev=1441569view=rev
Log:
 HADOOP-9231. Parametrize staging URL for the uniformity of 
distributionManagement. (Konstantin Boudnik via tgraves)

Modified:

hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt

Modified: 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt?rev=1441569r1=1441568r2=1441569view=diff
==
--- 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 (original)
+++ 
hadoop/common/branches/branch-0.23/hadoop-common-project/hadoop-common/CHANGES.txt
 Fri Feb  1 18:23:51 2013
@@ -59,6 +59,9 @@ Release 0.23.7 - UNRELEASED
 HADOOP-8857. hadoop.http.authentication.signature.secret.file docs 
 should not state that secret is randomly generated. (tucu)
 
+HADOOP-9231. Parametrize staging URL for the uniformity of
+distributionManagement. (Konstantin Boudnik via tgraves)
+
 Release 0.23.6 - UNRELEASED
 
   INCOMPATIBLE CHANGES




  1   2   3   >