[05/50] [abbrv] hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-10-14 Thread varunsaxena
YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)

(cherry picked from commit 4c8b9d23a1b4f92bf370617a0b42ac68bdcf33ac)


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

Branch: refs/heads/YARN-5355_branch2
Commit: 40891c53dfd73f0297c88012071824c12bd204b3
Parents: 4e00fed
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Varun Saxena 
Committed: Sat Oct 14 15:07:54 2017 +0530

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/40891c53/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



[22/50] [abbrv] hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-08-30 Thread varunsaxena
YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)

(cherry picked from commit 4c8b9d23a1b4f92bf370617a0b42ac68bdcf33ac)


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

Branch: refs/heads/YARN-5355_branch2
Commit: b407be60b0d5c5c805e1b9bd9161ba28d8d22bbf
Parents: 8a5d2af
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Varun Saxena 
Committed: Thu Aug 31 01:10:04 2017 +0530

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/b407be60/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



[24/50] [abbrv] hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-05-11 Thread virajith
YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)


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

Branch: refs/heads/HDFS-9806
Commit: ab2bb93a2ab1651b73ec9ba2d1deec4deafdecaf
Parents: 461ee44
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Haibo Chen 
Committed: Tue May 9 21:37:30 2017 -0700

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/ab2bb93a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



[27/50] [abbrv] hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-05-11 Thread inigoiri
YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)


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

Branch: refs/heads/HDFS-10467
Commit: ab2bb93a2ab1651b73ec9ba2d1deec4deafdecaf
Parents: 461ee44
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Haibo Chen 
Committed: Tue May 9 21:37:30 2017 -0700

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/ab2bb93a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-05-09 Thread haibochen
Repository: hadoop
Updated Branches:
  refs/heads/YARN-5355-branch-2 f07a97c1a -> f1f7d6534


YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)

(cherry picked from commit 4c8b9d23a1b4f92bf370617a0b42ac68bdcf33ac)


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

Branch: refs/heads/YARN-5355-branch-2
Commit: f1f7d6534d8f4a9a4f9bf4b1c83b2dce463e40aa
Parents: f07a97c
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Haibo Chen 
Committed: Tue May 9 22:04:30 2017 -0700

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/f1f7d653/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-05-09 Thread haibochen
Repository: hadoop
Updated Branches:
  refs/heads/YARN-5355 4c4453f87 -> 4c8b9d23a


YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)


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

Branch: refs/heads/YARN-5355
Commit: 4c8b9d23a1b4f92bf370617a0b42ac68bdcf33ac
Parents: 4c4453f
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Haibo Chen 
Committed: Tue May 9 21:39:25 2017 -0700

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/4c8b9d23/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org



hadoop git commit: YARN-6561. Update exception message during timeline collector aux service initialization. (Vrushali C via Haibo Chen)

2017-05-09 Thread haibochen
Repository: hadoop
Updated Branches:
  refs/heads/trunk 461ee44d2 -> ab2bb93a2


YARN-6561. Update exception message during timeline collector aux service 
initialization. (Vrushali C via Haibo Chen)


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

Branch: refs/heads/trunk
Commit: ab2bb93a2ab1651b73ec9ba2d1deec4deafdecaf
Parents: 461ee44
Author: Haibo Chen 
Authored: Tue May 9 21:37:30 2017 -0700
Committer: Haibo Chen 
Committed: Tue May 9 21:37:30 2017 -0700

--
 .../collector/PerNodeTimelineCollectorsAuxService.java| 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hadoop/blob/ab2bb93a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
--
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
index 041e7c2..266bd04 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice/src/main/java/org/apache/hadoop/yarn/server/timelineservice/collector/PerNodeTimelineCollectorsAuxService.java
@@ -73,7 +73,12 @@ public class PerNodeTimelineCollectorsAuxService extends 
AuxiliaryService {
   @Override
   protected void serviceInit(Configuration conf) throws Exception {
 if (!YarnConfiguration.timelineServiceV2Enabled(conf)) {
-  throw new YarnException("Timeline service v2 is not enabled");
+  throw new YarnException(
+  "Looks like timeline_collector is set as an auxillary service in "
+  + YarnConfiguration.NM_AUX_SERVICES
+  + ". But Timeline service v2 is not enabled,"
+  + " so timeline_collector needs to be removed"
+  + " from that list of auxillary services.");
 }
 collectorLingerPeriod =
 conf.getLong(YarnConfiguration.ATS_APP_COLLECTOR_LINGER_PERIOD_IN_MS,


-
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org