[jira] [Reopened] (HADOOP-8887) Use a Maven plugin to build the native code using CMake

2012-10-18 Thread Alejandro Abdelnur (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-8887?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alejandro Abdelnur reopened HADOOP-8887:



I've just reverted both branch-2 and trunk, while the dist tarball is being 
built correctly, as Andrew pointed out site is not working, we have to fix that.

> Use a Maven plugin to build the native code using CMake
> ---
>
> Key: HADOOP-8887
> URL: https://issues.apache.org/jira/browse/HADOOP-8887
> Project: Hadoop Common
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 2.0.3-alpha
>Reporter: Colin Patrick McCabe
>Assignee: Colin Patrick McCabe
>Priority: Minor
> Fix For: 2.0.3-alpha
>
> Attachments: HADOOP-8887.001.patch, HADOOP-8887.002.patch, 
> HADOOP-8887.003.patch, HADOOP-8887.004.patch, HADOOP-8887.005.patch, 
> HADOOP-8887.006.patch
>
>
> Currently, we build the native code using ant-build invocations.  Although 
> this works, it has some limitations:
> * compiler warning messages are hidden, which can cause people to check in 
> code with warnings unintentionally
> * there is no framework for running native unit tests; instead, we use ad-hoc 
> constructs involving shell scripts
> * the antrun code is very platform specific
> * there is no way to run a specific native unit test
> * it's more or less impossible for scripts like test-patch.sh to separate a 
> native test failing from the build itself failing (no files are created) or 
> to enumerate which native tests failed.
> Using a native Maven plugin would overcome these limitations.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Alejandro Abdelnur
site? let me check that, I may have missed that in my second attempt, oops!

On Thu, Oct 18, 2012 at 9:08 PM, Andrew Purtell  wrote:
> The build would fail in the "site" phase for me for some reason because of
> a missing dependency management section. Adding dev-support as parent to
> the new module fixed that.
>
> On Thursday, October 18, 2012, Colin McCabe wrote:
>
>> Hmm.  It did build for me (in the sense of completing successfully, etc).
>>
>> You've definitely found an issue, though.  The version should be
>> 2.0.3-SNAPSHOT for those projects, not 3.0.0-SNAPSHOT.
>>
>> Do you want to file a JIRA and post this patch, or should I?
>>
>> cheers.
>> Colin
>>
>>
>> On Thu, Oct 18, 2012 at 6:46 PM, Andrew Purtell 
>> wrote:
>> > Sorry, I always forget that about the mailing list software.
>> >
>> > From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
>> > From: Andrew Purtell 
>> > Date: Thu, 18 Oct 2012 17:22:17 -0700
>> > Subject: [PATCH] Fix incorrect versions and missing module parent
>> introduced
>> >  by HADOOP-8887
>> >
>> > ---
>> >  dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
>> >  dev-support/pom.xml   |4 ++--
>> >  hadoop-project/pom.xml|2 +-
>> >  3 files changed, 9 insertions(+), 4 deletions(-)
>> >
>> > diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
>> > b/dev-support/cmake-maven-ng-plugin/pom.xml
>> > index e3d54bc..8652214 100644
>> > --- a/dev-support/cmake-maven-ng-plugin/pom.xml
>> > +++ b/dev-support/cmake-maven-ng-plugin/pom.xml
>> > @@ -17,10 +17,15 @@
>> >xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
>> >http://maven.apache.org/maven-v4_0_0.xsd";>
>> >4.0.0
>> > +  
>> > +org.apache.hadoop
>> > +dev-support
>> > +2.0.3-SNAPSHOT
>> > +  
>> >org.apache.hadoop.cmake.maven.ng
>> >cmake-ng
>> >maven-plugin
>> > -  3.0.0-SNAPSHOT
>> > +  2.0.3-SNAPSHOT
>> >cmake-ng Maven Mojo
>> >http://maven.apache.org
>> >
>> > diff --git a/dev-support/pom.xml b/dev-support/pom.xml
>> > index 721e231..11a96cc 100644
>> > --- a/dev-support/pom.xml
>> > +++ b/dev-support/pom.xml
>> > @@ -20,12 +20,12 @@
>> >
>> >  org.apache.hadoop
>> >  hadoop-project
>> > -3.0.0-SNAPSHOT
>> > +2.0.3-SNAPSHOT
>> >  ../hadoop-project
>> >
>> >org.apache.hadoop
>> >dev-support
>> > -  3.0.0-SNAPSHOT
>> > +  2.0.3-SNAPSHOT
>> >Apache Hadoop Development Support
>> >Apache Hadoop Development Support
>> >pom
>> > diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
>> > index 568a59d..88d4676 100644
>> > --- a/hadoop-project/pom.xml
>> > +++ b/hadoop-project/pom.xml
>> > @@ -704,7 +704,7 @@
>> >  
>> >org.apache.hadoop.cmake.maven.ng
>> >cmake-ng
>> > -  3.0.0-SNAPSHOT
>> > +  2.0.3-SNAPSHOT
>> >  
>> >  
>> >
>
>
>
> --
> Best regards,
>
>- Andy
>
> Problems worthy of attack prove their worth by hitting back. - Piet Hein
> (via Tom White)



-- 
Alejandro


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Andrew Purtell
The build would fail in the "site" phase for me for some reason because of
a missing dependency management section. Adding dev-support as parent to
the new module fixed that.

On Thursday, October 18, 2012, Colin McCabe wrote:

> Hmm.  It did build for me (in the sense of completing successfully, etc).
>
> You've definitely found an issue, though.  The version should be
> 2.0.3-SNAPSHOT for those projects, not 3.0.0-SNAPSHOT.
>
> Do you want to file a JIRA and post this patch, or should I?
>
> cheers.
> Colin
>
>
> On Thu, Oct 18, 2012 at 6:46 PM, Andrew Purtell 
> wrote:
> > Sorry, I always forget that about the mailing list software.
> >
> > From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
> > From: Andrew Purtell 
> > Date: Thu, 18 Oct 2012 17:22:17 -0700
> > Subject: [PATCH] Fix incorrect versions and missing module parent
> introduced
> >  by HADOOP-8887
> >
> > ---
> >  dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
> >  dev-support/pom.xml   |4 ++--
> >  hadoop-project/pom.xml|2 +-
> >  3 files changed, 9 insertions(+), 4 deletions(-)
> >
> > diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
> > b/dev-support/cmake-maven-ng-plugin/pom.xml
> > index e3d54bc..8652214 100644
> > --- a/dev-support/cmake-maven-ng-plugin/pom.xml
> > +++ b/dev-support/cmake-maven-ng-plugin/pom.xml
> > @@ -17,10 +17,15 @@
> >xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> >http://maven.apache.org/maven-v4_0_0.xsd";>
> >4.0.0
> > +  
> > +org.apache.hadoop
> > +dev-support
> > +2.0.3-SNAPSHOT
> > +  
> >org.apache.hadoop.cmake.maven.ng
> >cmake-ng
> >maven-plugin
> > -  3.0.0-SNAPSHOT
> > +  2.0.3-SNAPSHOT
> >cmake-ng Maven Mojo
> >http://maven.apache.org
> >
> > diff --git a/dev-support/pom.xml b/dev-support/pom.xml
> > index 721e231..11a96cc 100644
> > --- a/dev-support/pom.xml
> > +++ b/dev-support/pom.xml
> > @@ -20,12 +20,12 @@
> >
> >  org.apache.hadoop
> >  hadoop-project
> > -3.0.0-SNAPSHOT
> > +2.0.3-SNAPSHOT
> >  ../hadoop-project
> >
> >org.apache.hadoop
> >dev-support
> > -  3.0.0-SNAPSHOT
> > +  2.0.3-SNAPSHOT
> >Apache Hadoop Development Support
> >Apache Hadoop Development Support
> >pom
> > diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
> > index 568a59d..88d4676 100644
> > --- a/hadoop-project/pom.xml
> > +++ b/hadoop-project/pom.xml
> > @@ -704,7 +704,7 @@
> >  
> >org.apache.hadoop.cmake.maven.ng
> >cmake-ng
> > -  3.0.0-SNAPSHOT
> > +  2.0.3-SNAPSHOT
> >  
> >  
> >



-- 
Best regards,

   - Andy

Problems worthy of attack prove their worth by hitting back. - Piet Hein
(via Tom White)


[jira] [Resolved] (HADOOP-8887) Use a Maven plugin to build the native code using CMake

2012-10-18 Thread Alejandro Abdelnur (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-8887?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alejandro Abdelnur resolved HADOOP-8887.


Resolution: Fixed

Committed to branch-2 after tweaking POM versions, did a full build and 
verified all generated JARs are the correct version. Apologies for the noise.

> Use a Maven plugin to build the native code using CMake
> ---
>
> Key: HADOOP-8887
> URL: https://issues.apache.org/jira/browse/HADOOP-8887
> Project: Hadoop Common
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 2.0.3-alpha
>Reporter: Colin Patrick McCabe
>Assignee: Colin Patrick McCabe
>Priority: Minor
> Fix For: 2.0.3-alpha
>
> Attachments: HADOOP-8887.001.patch, HADOOP-8887.002.patch, 
> HADOOP-8887.003.patch, HADOOP-8887.004.patch, HADOOP-8887.005.patch, 
> HADOOP-8887.006.patch
>
>
> Currently, we build the native code using ant-build invocations.  Although 
> this works, it has some limitations:
> * compiler warning messages are hidden, which can cause people to check in 
> code with warnings unintentionally
> * there is no framework for running native unit tests; instead, we use ad-hoc 
> constructs involving shell scripts
> * the antrun code is very platform specific
> * there is no way to run a specific native unit test
> * it's more or less impossible for scripts like test-patch.sh to separate a 
> native test failing from the build itself failing (no files are created) or 
> to enumerate which native tests failed.
> Using a native Maven plugin would overcome these limitations.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Reopened] (HADOOP-8887) Use a Maven plugin to build the native code using CMake

2012-10-18 Thread Alejandro Abdelnur (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-8887?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alejandro Abdelnur reopened HADOOP-8887:



Thanks Suresh, my bad, missed to tweak the POM versions when merging, I'll do 
it again (this time properly). Nicholas, as Colin indicated, javadoc warnings 
are taken care by the patch, just it does not show until the patch is committed 
(one of these days I'll try to tweak test-patch to do what we do in Oozie, we 
run javadoc twice, once without the patch and once with the patch, and we 
compare the warning numbers, less or equal good).

> Use a Maven plugin to build the native code using CMake
> ---
>
> Key: HADOOP-8887
> URL: https://issues.apache.org/jira/browse/HADOOP-8887
> Project: Hadoop Common
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 2.0.3-alpha
>Reporter: Colin Patrick McCabe
>Assignee: Colin Patrick McCabe
>Priority: Minor
> Fix For: 2.0.3-alpha
>
> Attachments: HADOOP-8887.001.patch, HADOOP-8887.002.patch, 
> HADOOP-8887.003.patch, HADOOP-8887.004.patch, HADOOP-8887.005.patch, 
> HADOOP-8887.006.patch
>
>
> Currently, we build the native code using ant-build invocations.  Although 
> this works, it has some limitations:
> * compiler warning messages are hidden, which can cause people to check in 
> code with warnings unintentionally
> * there is no framework for running native unit tests; instead, we use ad-hoc 
> constructs involving shell scripts
> * the antrun code is very platform specific
> * there is no way to run a specific native unit test
> * it's more or less impossible for scripts like test-patch.sh to separate a 
> native test failing from the build itself failing (no files are created) or 
> to enumerate which native tests failed.
> Using a native Maven plugin would overcome these limitations.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


RE: Questions and possible improvements for LdapGroupsMapping

2012-10-18 Thread Zheng, Kai
JIRA is opened for this:

https://issues.apache.org/jira/browse/HADOOP-8943


-Original Message-
From: Zheng, Kai [mailto:kai.zh...@intel.com] 
Sent: Friday, October 19, 2012 10:17 AM
To: common-dev@hadoop.apache.org; na...@cloudera.com
Subject: RE: Questions and possible improvements for LdapGroupsMapping

Just got reply from user mailing list from Natty, as follows.
And I'd like to discuss further here since it's more appropriate.

Hi Natty,

1. It's great idea that we just write a customized group mapping service to 
handle different mapping for AD user and service principal; 2. OK, I'd like to 
improve it to support multiple ADs; 3. Great to know it. I will try the group 
mapping with OpenLDAP making use of the current configuration properties.

And further, to support to do different mapping for different user/principal, 
and support multiple ADs, we also need extra properties to configure what kind 
of user/principal (regarding domain/realm is an option) should use which group 
mapping mechanism.

To improve such things, I'm going to fire a JIRA for these. It would be great 
if you could continue to  comment on it. 

Thanks & regards,
Kai

From: Jonathan Natkins [mailto:na...@cloudera.com]
Sent: Friday, October 19, 2012 8:58 AM
To: u...@hadoop.apache.org
Subject: Re: Secure hadoop and group permission on HDFS

Hi Kai,

1. To the best of my knowledge, you can only use one group mapping service at a 
time. In order to do what you're suggesting, you'd have to write a customized 
group mapping service.

2. Currently multiple ADs are not supported, but it's certainly an improvement 
that could be made.

3. The LdapGroupsMapping already supports OpenLDAP. It's pretty heavily 
configurable for the purpose of supporting multiple types of LDAP 
implementations. The defaults just happen to be geared towards Active Directory.

Thanks,
Natty

-Original Message-
From: Zheng, Kai [mailto:kai.zh...@intel.com]
Sent: Friday, October 19, 2012 8:32 AM
To: common-dev@hadoop.apache.org
Subject: Questions and possible improvements for LdapGroupsMapping

Hi All,

Regarding LdapGroupsMapping, I have following questions:


1.   Is it possible to use ShellBasedUnixGroupsMapping for Hadoop service 
principals/users, and LdapGroupsMapping for end user accounts?
In our  environment, normal end users (along with their groups info) for Hadoop 
cluster are from AD, and for them we prefer to use the ldap mapping; but for 
hdfs/mapred service principals, the default shell based one is enough, and we 
don't want to create the user/group entries in AD just for that.
Seems in current implementation, only one user group mapping provider can be 
configured.


2.   Can we support multiple ADs? Hadoop users might come from more than 
ONE AD in big org.


3.   Is there any technical  issue not to support LDAPs like OpenLDAP? In 
my understanding, one possible difficulity might be that it's not easy to 
extract common
group lookup mechanism with common filters/configurations both applied for AD 
and OpenLDAP like, right?

I'm wondering if these are just limits for current implementation, and if so if 
we need to improve that. Might the community has already been going for that?


[jira] [Created] (HADOOP-8943) Enable to support multiple ADs and different group mapping for different user

2012-10-18 Thread Kai Zheng (JIRA)
Kai Zheng created HADOOP-8943:
-

 Summary: Enable to support multiple ADs and different group 
mapping for different user
 Key: HADOOP-8943
 URL: https://issues.apache.org/jira/browse/HADOOP-8943
 Project: Hadoop Common
  Issue Type: Improvement
  Components: security
Reporter: Kai Zheng
 Fix For: 2.0.3-alpha


Discussed with Natty about LdapGroupMapping, we need to improve it so that:
1. It's possible to do different group mapping for different users/principals. 
For example, AD user should go to LdapGroupMapping service for group, but  
service principals such as hdfs, mapred can still use the default one 
ShellBasedUnixGroupsMapping; 

2. Multiple ADs can be supported to do LdapGroupMapping;

3. It's possible to configure what kind of users/principals (regarding 
domain/realm is an option) should use which group mapping service/mechanism.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Suresh Srinivas
I have reverted the patch in branch-2. Colin we may need a separate
branch-2 patch instead of merging the patch.

On Thu, Oct 18, 2012 at 7:19 PM, Suresh Srinivas wrote:

> I meant revert the patch and merge the right patch :-)
>
>
> On Thu, Oct 18, 2012 at 7:18 PM, Suresh Srinivas 
> wrote:
>
>> Lets revert the job and merge the right patch.
>>
>>
>> On Thu, Oct 18, 2012 at 6:49 PM, Colin McCabe wrote:
>>
>>> Hmm.  It did build for me (in the sense of completing successfully, etc).
>>>
>>> You've definitely found an issue, though.  The version should be
>>> 2.0.3-SNAPSHOT for those projects, not 3.0.0-SNAPSHOT.
>>>
>>> Do you want to file a JIRA and post this patch, or should I?
>>>
>>> cheers.
>>> Colin
>>>
>>>
>>> On Thu, Oct 18, 2012 at 6:46 PM, Andrew Purtell 
>>> wrote:
>>> > Sorry, I always forget that about the mailing list software.
>>> >
>>> > From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
>>> > From: Andrew Purtell 
>>> > Date: Thu, 18 Oct 2012 17:22:17 -0700
>>> > Subject: [PATCH] Fix incorrect versions and missing module parent
>>> introduced
>>> >  by HADOOP-8887
>>> >
>>> > ---
>>> >  dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
>>> >  dev-support/pom.xml   |4 ++--
>>> >  hadoop-project/pom.xml|2 +-
>>> >  3 files changed, 9 insertions(+), 4 deletions(-)
>>> >
>>> > diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
>>> > b/dev-support/cmake-maven-ng-plugin/pom.xml
>>> > index e3d54bc..8652214 100644
>>> > --- a/dev-support/cmake-maven-ng-plugin/pom.xml
>>> > +++ b/dev-support/cmake-maven-ng-plugin/pom.xml
>>> > @@ -17,10 +17,15 @@
>>> >xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
>>> >http://maven.apache.org/maven-v4_0_0.xsd";>
>>> >4.0.0
>>> > +  
>>> > +org.apache.hadoop
>>> > +dev-support
>>> > +2.0.3-SNAPSHOT
>>> > +  
>>> >org.apache.hadoop.cmake.maven.ng
>>> >cmake-ng
>>> >maven-plugin
>>> > -  3.0.0-SNAPSHOT
>>> > +  2.0.3-SNAPSHOT
>>> >cmake-ng Maven Mojo
>>> >http://maven.apache.org
>>> >
>>> > diff --git a/dev-support/pom.xml b/dev-support/pom.xml
>>> > index 721e231..11a96cc 100644
>>> > --- a/dev-support/pom.xml
>>> > +++ b/dev-support/pom.xml
>>> > @@ -20,12 +20,12 @@
>>> >
>>> >  org.apache.hadoop
>>> >  hadoop-project
>>> > -3.0.0-SNAPSHOT
>>> > +2.0.3-SNAPSHOT
>>> >  ../hadoop-project
>>> >
>>> >org.apache.hadoop
>>> >dev-support
>>> > -  3.0.0-SNAPSHOT
>>> > +  2.0.3-SNAPSHOT
>>> >Apache Hadoop Development Support
>>> >Apache Hadoop Development Support
>>> >pom
>>> > diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
>>> > index 568a59d..88d4676 100644
>>> > --- a/hadoop-project/pom.xml
>>> > +++ b/hadoop-project/pom.xml
>>> > @@ -704,7 +704,7 @@
>>> >  
>>> >org.apache.hadoop.cmake.maven.ng
>>> >cmake-ng
>>> > -  3.0.0-SNAPSHOT
>>> > +  2.0.3-SNAPSHOT
>>> >  
>>> >  
>>> >org.apache.maven.plugins
>>> > --
>>> > 1.7.9.5
>>> >
>>> >
>>> > On Thu, Oct 18, 2012 at 6:35 PM, Colin McCabe >> >wrote:
>>> >
>>> >> Hi Andrew,
>>> >>
>>> >> It seems that your attachment did not appear on the mailing list.
>>> >>
>>> >> I'm taking a look at the branch-2 build presently.
>>> >>
>>> >> Colin
>>> >>
>>> >>
>>> >> On Thu, Oct 18, 2012 at 6:20 PM, Andrew Purtell 
>>> >> wrote:
>>> >> > The port of HADOOP-8887 to branch-2 fails the build. Please kindly
>>> see
>>> >> > attached.
>>> >> >
>>> >> > --
>>> >> > Best regards,
>>> >> >
>>> >> >- Andy
>>> >> >
>>> >> > Problems worthy of attack prove their worth by hitting back. - Piet
>>> Hein
>>> >> > (via Tom White)
>>> >> >
>>> >>
>>> >
>>> >
>>> >
>>> > --
>>> > Best regards,
>>> >
>>> >- Andy
>>> >
>>> > Problems worthy of attack prove their worth by hitting back. - Piet
>>> Hein
>>> > (via Tom White)
>>>
>>
>>
>>
>> --
>> http://hortonworks.com/download/
>>
>>
>
>
> --
> http://hortonworks.com/download/
>
>


-- 
http://hortonworks.com/download/


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Suresh Srinivas
I meant revert the patch and merge the right patch :-)

On Thu, Oct 18, 2012 at 7:18 PM, Suresh Srinivas wrote:

> Lets revert the job and merge the right patch.
>
>
> On Thu, Oct 18, 2012 at 6:49 PM, Colin McCabe wrote:
>
>> Hmm.  It did build for me (in the sense of completing successfully, etc).
>>
>> You've definitely found an issue, though.  The version should be
>> 2.0.3-SNAPSHOT for those projects, not 3.0.0-SNAPSHOT.
>>
>> Do you want to file a JIRA and post this patch, or should I?
>>
>> cheers.
>> Colin
>>
>>
>> On Thu, Oct 18, 2012 at 6:46 PM, Andrew Purtell 
>> wrote:
>> > Sorry, I always forget that about the mailing list software.
>> >
>> > From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
>> > From: Andrew Purtell 
>> > Date: Thu, 18 Oct 2012 17:22:17 -0700
>> > Subject: [PATCH] Fix incorrect versions and missing module parent
>> introduced
>> >  by HADOOP-8887
>> >
>> > ---
>> >  dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
>> >  dev-support/pom.xml   |4 ++--
>> >  hadoop-project/pom.xml|2 +-
>> >  3 files changed, 9 insertions(+), 4 deletions(-)
>> >
>> > diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
>> > b/dev-support/cmake-maven-ng-plugin/pom.xml
>> > index e3d54bc..8652214 100644
>> > --- a/dev-support/cmake-maven-ng-plugin/pom.xml
>> > +++ b/dev-support/cmake-maven-ng-plugin/pom.xml
>> > @@ -17,10 +17,15 @@
>> >xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
>> >http://maven.apache.org/maven-v4_0_0.xsd";>
>> >4.0.0
>> > +  
>> > +org.apache.hadoop
>> > +dev-support
>> > +2.0.3-SNAPSHOT
>> > +  
>> >org.apache.hadoop.cmake.maven.ng
>> >cmake-ng
>> >maven-plugin
>> > -  3.0.0-SNAPSHOT
>> > +  2.0.3-SNAPSHOT
>> >cmake-ng Maven Mojo
>> >http://maven.apache.org
>> >
>> > diff --git a/dev-support/pom.xml b/dev-support/pom.xml
>> > index 721e231..11a96cc 100644
>> > --- a/dev-support/pom.xml
>> > +++ b/dev-support/pom.xml
>> > @@ -20,12 +20,12 @@
>> >
>> >  org.apache.hadoop
>> >  hadoop-project
>> > -3.0.0-SNAPSHOT
>> > +2.0.3-SNAPSHOT
>> >  ../hadoop-project
>> >
>> >org.apache.hadoop
>> >dev-support
>> > -  3.0.0-SNAPSHOT
>> > +  2.0.3-SNAPSHOT
>> >Apache Hadoop Development Support
>> >Apache Hadoop Development Support
>> >pom
>> > diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
>> > index 568a59d..88d4676 100644
>> > --- a/hadoop-project/pom.xml
>> > +++ b/hadoop-project/pom.xml
>> > @@ -704,7 +704,7 @@
>> >  
>> >org.apache.hadoop.cmake.maven.ng
>> >cmake-ng
>> > -  3.0.0-SNAPSHOT
>> > +  2.0.3-SNAPSHOT
>> >  
>> >  
>> >org.apache.maven.plugins
>> > --
>> > 1.7.9.5
>> >
>> >
>> > On Thu, Oct 18, 2012 at 6:35 PM, Colin McCabe > >wrote:
>> >
>> >> Hi Andrew,
>> >>
>> >> It seems that your attachment did not appear on the mailing list.
>> >>
>> >> I'm taking a look at the branch-2 build presently.
>> >>
>> >> Colin
>> >>
>> >>
>> >> On Thu, Oct 18, 2012 at 6:20 PM, Andrew Purtell 
>> >> wrote:
>> >> > The port of HADOOP-8887 to branch-2 fails the build. Please kindly
>> see
>> >> > attached.
>> >> >
>> >> > --
>> >> > Best regards,
>> >> >
>> >> >- Andy
>> >> >
>> >> > Problems worthy of attack prove their worth by hitting back. - Piet
>> Hein
>> >> > (via Tom White)
>> >> >
>> >>
>> >
>> >
>> >
>> > --
>> > Best regards,
>> >
>> >- Andy
>> >
>> > Problems worthy of attack prove their worth by hitting back. - Piet Hein
>> > (via Tom White)
>>
>
>
>
> --
> http://hortonworks.com/download/
>
>


-- 
http://hortonworks.com/download/


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Suresh Srinivas
Lets revert the job and merge the right patch.

On Thu, Oct 18, 2012 at 6:49 PM, Colin McCabe wrote:

> Hmm.  It did build for me (in the sense of completing successfully, etc).
>
> You've definitely found an issue, though.  The version should be
> 2.0.3-SNAPSHOT for those projects, not 3.0.0-SNAPSHOT.
>
> Do you want to file a JIRA and post this patch, or should I?
>
> cheers.
> Colin
>
>
> On Thu, Oct 18, 2012 at 6:46 PM, Andrew Purtell 
> wrote:
> > Sorry, I always forget that about the mailing list software.
> >
> > From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
> > From: Andrew Purtell 
> > Date: Thu, 18 Oct 2012 17:22:17 -0700
> > Subject: [PATCH] Fix incorrect versions and missing module parent
> introduced
> >  by HADOOP-8887
> >
> > ---
> >  dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
> >  dev-support/pom.xml   |4 ++--
> >  hadoop-project/pom.xml|2 +-
> >  3 files changed, 9 insertions(+), 4 deletions(-)
> >
> > diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
> > b/dev-support/cmake-maven-ng-plugin/pom.xml
> > index e3d54bc..8652214 100644
> > --- a/dev-support/cmake-maven-ng-plugin/pom.xml
> > +++ b/dev-support/cmake-maven-ng-plugin/pom.xml
> > @@ -17,10 +17,15 @@
> >xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> >http://maven.apache.org/maven-v4_0_0.xsd";>
> >4.0.0
> > +  
> > +org.apache.hadoop
> > +dev-support
> > +2.0.3-SNAPSHOT
> > +  
> >org.apache.hadoop.cmake.maven.ng
> >cmake-ng
> >maven-plugin
> > -  3.0.0-SNAPSHOT
> > +  2.0.3-SNAPSHOT
> >cmake-ng Maven Mojo
> >http://maven.apache.org
> >
> > diff --git a/dev-support/pom.xml b/dev-support/pom.xml
> > index 721e231..11a96cc 100644
> > --- a/dev-support/pom.xml
> > +++ b/dev-support/pom.xml
> > @@ -20,12 +20,12 @@
> >
> >  org.apache.hadoop
> >  hadoop-project
> > -3.0.0-SNAPSHOT
> > +2.0.3-SNAPSHOT
> >  ../hadoop-project
> >
> >org.apache.hadoop
> >dev-support
> > -  3.0.0-SNAPSHOT
> > +  2.0.3-SNAPSHOT
> >Apache Hadoop Development Support
> >Apache Hadoop Development Support
> >pom
> > diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
> > index 568a59d..88d4676 100644
> > --- a/hadoop-project/pom.xml
> > +++ b/hadoop-project/pom.xml
> > @@ -704,7 +704,7 @@
> >  
> >org.apache.hadoop.cmake.maven.ng
> >cmake-ng
> > -  3.0.0-SNAPSHOT
> > +  2.0.3-SNAPSHOT
> >  
> >  
> >org.apache.maven.plugins
> > --
> > 1.7.9.5
> >
> >
> > On Thu, Oct 18, 2012 at 6:35 PM, Colin McCabe  >wrote:
> >
> >> Hi Andrew,
> >>
> >> It seems that your attachment did not appear on the mailing list.
> >>
> >> I'm taking a look at the branch-2 build presently.
> >>
> >> Colin
> >>
> >>
> >> On Thu, Oct 18, 2012 at 6:20 PM, Andrew Purtell 
> >> wrote:
> >> > The port of HADOOP-8887 to branch-2 fails the build. Please kindly see
> >> > attached.
> >> >
> >> > --
> >> > Best regards,
> >> >
> >> >- Andy
> >> >
> >> > Problems worthy of attack prove their worth by hitting back. - Piet
> Hein
> >> > (via Tom White)
> >> >
> >>
> >
> >
> >
> > --
> > Best regards,
> >
> >- Andy
> >
> > Problems worthy of attack prove their worth by hitting back. - Piet Hein
> > (via Tom White)
>



-- 
http://hortonworks.com/download/


RE: Questions and possible improvements for LdapGroupsMapping

2012-10-18 Thread Zheng, Kai
Just got reply from user mailing list from Natty, as follows.
And I'd like to discuss further here since it's more appropriate.

Hi Natty,

1. It's great idea that we just write a customized group mapping service to 
handle different mapping for AD user and service principal;
2. OK, I'd like to improve it to support multiple ADs;
3. Great to know it. I will try the group mapping with OpenLDAP making use of 
the current configuration properties.

And further, to support to do different mapping for different user/principal, 
and support multiple ADs, we also need extra properties to 
configure what kind of user/principal (regarding domain/realm is an option) 
should use which group mapping mechanism.

To improve such things, I'm going to fire a JIRA for these. It would be great 
if you could continue to  comment on it. 

Thanks & regards,
Kai

From: Jonathan Natkins [mailto:na...@cloudera.com] 
Sent: Friday, October 19, 2012 8:58 AM
To: u...@hadoop.apache.org
Subject: Re: Secure hadoop and group permission on HDFS

Hi Kai,

1. To the best of my knowledge, you can only use one group mapping service at a 
time. In order to do what you're suggesting, you'd have to write a customized 
group mapping service.

2. Currently multiple ADs are not supported, but it's certainly an improvement 
that could be made.

3. The LdapGroupsMapping already supports OpenLDAP. It's pretty heavily 
configurable for the purpose of supporting multiple types of LDAP 
implementations. The defaults just happen to be geared towards Active Directory.

Thanks,
Natty

-Original Message-
From: Zheng, Kai [mailto:kai.zh...@intel.com] 
Sent: Friday, October 19, 2012 8:32 AM
To: common-dev@hadoop.apache.org
Subject: Questions and possible improvements for LdapGroupsMapping

Hi All,

Regarding LdapGroupsMapping, I have following questions:


1.   Is it possible to use ShellBasedUnixGroupsMapping for Hadoop service 
principals/users, and LdapGroupsMapping for end user accounts?
In our  environment, normal end users (along with their groups info) for Hadoop 
cluster are from AD, and for them we prefer to use the ldap mapping; but for 
hdfs/mapred service principals, the default shell based one is enough, and we 
don't want to create the user/group entries in AD just for that.
Seems in current implementation, only one user group mapping provider can be 
configured.


2.   Can we support multiple ADs? Hadoop users might come from more than 
ONE AD in big org.


3.   Is there any technical  issue not to support LDAPs like OpenLDAP? In 
my understanding, one possible difficulity might be that it's not easy to 
extract common
group lookup mechanism with common filters/configurations both applied for AD 
and OpenLDAP like, right?

I'm wondering if these are just limits for current implementation, and if so if 
we need to improve that. Might the community has already been going for that?


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Colin McCabe
Hmm.  It did build for me (in the sense of completing successfully, etc).

You've definitely found an issue, though.  The version should be
2.0.3-SNAPSHOT for those projects, not 3.0.0-SNAPSHOT.

Do you want to file a JIRA and post this patch, or should I?

cheers.
Colin


On Thu, Oct 18, 2012 at 6:46 PM, Andrew Purtell  wrote:
> Sorry, I always forget that about the mailing list software.
>
> From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
> From: Andrew Purtell 
> Date: Thu, 18 Oct 2012 17:22:17 -0700
> Subject: [PATCH] Fix incorrect versions and missing module parent introduced
>  by HADOOP-8887
>
> ---
>  dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
>  dev-support/pom.xml   |4 ++--
>  hadoop-project/pom.xml|2 +-
>  3 files changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
> b/dev-support/cmake-maven-ng-plugin/pom.xml
> index e3d54bc..8652214 100644
> --- a/dev-support/cmake-maven-ng-plugin/pom.xml
> +++ b/dev-support/cmake-maven-ng-plugin/pom.xml
> @@ -17,10 +17,15 @@
>xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
>http://maven.apache.org/maven-v4_0_0.xsd";>
>4.0.0
> +  
> +org.apache.hadoop
> +dev-support
> +2.0.3-SNAPSHOT
> +  
>org.apache.hadoop.cmake.maven.ng
>cmake-ng
>maven-plugin
> -  3.0.0-SNAPSHOT
> +  2.0.3-SNAPSHOT
>cmake-ng Maven Mojo
>http://maven.apache.org
>
> diff --git a/dev-support/pom.xml b/dev-support/pom.xml
> index 721e231..11a96cc 100644
> --- a/dev-support/pom.xml
> +++ b/dev-support/pom.xml
> @@ -20,12 +20,12 @@
>
>  org.apache.hadoop
>  hadoop-project
> -3.0.0-SNAPSHOT
> +2.0.3-SNAPSHOT
>  ../hadoop-project
>
>org.apache.hadoop
>dev-support
> -  3.0.0-SNAPSHOT
> +  2.0.3-SNAPSHOT
>Apache Hadoop Development Support
>Apache Hadoop Development Support
>pom
> diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
> index 568a59d..88d4676 100644
> --- a/hadoop-project/pom.xml
> +++ b/hadoop-project/pom.xml
> @@ -704,7 +704,7 @@
>  
>org.apache.hadoop.cmake.maven.ng
>cmake-ng
> -  3.0.0-SNAPSHOT
> +  2.0.3-SNAPSHOT
>  
>  
>org.apache.maven.plugins
> --
> 1.7.9.5
>
>
> On Thu, Oct 18, 2012 at 6:35 PM, Colin McCabe wrote:
>
>> Hi Andrew,
>>
>> It seems that your attachment did not appear on the mailing list.
>>
>> I'm taking a look at the branch-2 build presently.
>>
>> Colin
>>
>>
>> On Thu, Oct 18, 2012 at 6:20 PM, Andrew Purtell 
>> wrote:
>> > The port of HADOOP-8887 to branch-2 fails the build. Please kindly see
>> > attached.
>> >
>> > --
>> > Best regards,
>> >
>> >- Andy
>> >
>> > Problems worthy of attack prove their worth by hitting back. - Piet Hein
>> > (via Tom White)
>> >
>>
>
>
>
> --
> Best regards,
>
>- Andy
>
> Problems worthy of attack prove their worth by hitting back. - Piet Hein
> (via Tom White)


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Andrew Purtell
Sorry, I always forget that about the mailing list software.

>From a6efe4883f3f7694ec6e8da04de982fb21eed8a9 Mon Sep 17 00:00:00 2001
From: Andrew Purtell 
Date: Thu, 18 Oct 2012 17:22:17 -0700
Subject: [PATCH] Fix incorrect versions and missing module parent introduced
 by HADOOP-8887

---
 dev-support/cmake-maven-ng-plugin/pom.xml |7 ++-
 dev-support/pom.xml   |4 ++--
 hadoop-project/pom.xml|2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/dev-support/cmake-maven-ng-plugin/pom.xml
b/dev-support/cmake-maven-ng-plugin/pom.xml
index e3d54bc..8652214 100644
--- a/dev-support/cmake-maven-ng-plugin/pom.xml
+++ b/dev-support/cmake-maven-ng-plugin/pom.xml
@@ -17,10 +17,15 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
   http://maven.apache.org/maven-v4_0_0.xsd";>
   4.0.0
+  
+org.apache.hadoop
+dev-support
+2.0.3-SNAPSHOT
+  
   org.apache.hadoop.cmake.maven.ng
   cmake-ng
   maven-plugin
-  3.0.0-SNAPSHOT
+  2.0.3-SNAPSHOT
   cmake-ng Maven Mojo
   http://maven.apache.org
   
diff --git a/dev-support/pom.xml b/dev-support/pom.xml
index 721e231..11a96cc 100644
--- a/dev-support/pom.xml
+++ b/dev-support/pom.xml
@@ -20,12 +20,12 @@
   
 org.apache.hadoop
 hadoop-project
-3.0.0-SNAPSHOT
+2.0.3-SNAPSHOT
 ../hadoop-project
   
   org.apache.hadoop
   dev-support
-  3.0.0-SNAPSHOT
+  2.0.3-SNAPSHOT
   Apache Hadoop Development Support
   Apache Hadoop Development Support
   pom
diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml
index 568a59d..88d4676 100644
--- a/hadoop-project/pom.xml
+++ b/hadoop-project/pom.xml
@@ -704,7 +704,7 @@
 
   org.apache.hadoop.cmake.maven.ng
   cmake-ng
-  3.0.0-SNAPSHOT
+  2.0.3-SNAPSHOT
 
 
   org.apache.maven.plugins
-- 
1.7.9.5


On Thu, Oct 18, 2012 at 6:35 PM, Colin McCabe wrote:

> Hi Andrew,
>
> It seems that your attachment did not appear on the mailing list.
>
> I'm taking a look at the branch-2 build presently.
>
> Colin
>
>
> On Thu, Oct 18, 2012 at 6:20 PM, Andrew Purtell 
> wrote:
> > The port of HADOOP-8887 to branch-2 fails the build. Please kindly see
> > attached.
> >
> > --
> > Best regards,
> >
> >- Andy
> >
> > Problems worthy of attack prove their worth by hitting back. - Piet Hein
> > (via Tom White)
> >
>



-- 
Best regards,

   - Andy

Problems worthy of attack prove their worth by hitting back. - Piet Hein
(via Tom White)


Re: HADOOP-8887 port to branch-2

2012-10-18 Thread Colin McCabe
Hi Andrew,

It seems that your attachment did not appear on the mailing list.

I'm taking a look at the branch-2 build presently.

Colin


On Thu, Oct 18, 2012 at 6:20 PM, Andrew Purtell  wrote:
> The port of HADOOP-8887 to branch-2 fails the build. Please kindly see
> attached.
>
> --
> Best regards,
>
>- Andy
>
> Problems worthy of attack prove their worth by hitting back. - Piet Hein
> (via Tom White)
>


HADOOP-8887 port to branch-2

2012-10-18 Thread Andrew Purtell
The port of HADOOP-8887 to branch-2 fails the build. Please kindly see
attached.

-- 
Best regards,

   - Andy

Problems worthy of attack prove their worth by hitting back. - Piet Hein
(via Tom White)


Questions and possible improvements for LdapGroupsMapping

2012-10-18 Thread Zheng, Kai
Hi All,

Regarding LdapGroupsMapping, I have following questions:


1.   Is it possible to use ShellBasedUnixGroupsMapping for Hadoop service 
principals/users, and LdapGroupsMapping for end user accounts?
In our  environment, normal end users (along with their groups info) for Hadoop 
cluster are from AD, and for them we prefer to use the ldap mapping;
but for hdfs/mapred service principals, the default shell based one is enough, 
and we don't want to create the user/group entries in AD just for that.
Seems in current implementation, only one user group mapping provider can be 
configured.


2.   Can we support multiple ADs? Hadoop users might come from more than 
ONE AD in big org.


3.   Is there any technical  issue not to support LDAPs like OpenLDAP? In 
my understanding, one possible difficulity might be that it's not easy to 
extract common
group lookup mechanism with common filters/configurations both applied for AD 
and OpenLDAP like, right?

I'm wondering if these are just limits for current implementation, and if so if 
we need to improve that. Might the community has already been going for that?


[jira] [Resolved] (HADOOP-8823) ant package target should not depend on cn-docs

2012-10-18 Thread Tsz Wo (Nicholas), SZE (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-8823?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tsz Wo (Nicholas), SZE resolved HADOOP-8823.


   Resolution: Fixed
Fix Version/s: 1.1.1
 Hadoop Flags: Reviewed

I have committed this.

> ant package target should not depend on cn-docs
> ---
>
> Key: HADOOP-8823
> URL: https://issues.apache.org/jira/browse/HADOOP-8823
> Project: Hadoop Common
>  Issue Type: Improvement
>  Components: build
>Affects Versions: 1.0.0
>Reporter: Tsz Wo (Nicholas), SZE
>Assignee: Tsz Wo (Nicholas), SZE
> Fix For: 1.1.1
>
> Attachments: c8823_20120918.patch
>
>
> In branch-1, the package target depends on cn-docs but the doc is already 
> outdated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-8942) Thundering herd of RPCs with large responses leads to OOM

2012-10-18 Thread Jason Lowe (JIRA)
Jason Lowe created HADOOP-8942:
--

 Summary: Thundering herd of RPCs with large responses leads to OOM
 Key: HADOOP-8942
 URL: https://issues.apache.org/jira/browse/HADOOP-8942
 Project: Hadoop Common
  Issue Type: Bug
  Components: ipc
Affects Versions: 0.23.3
Reporter: Jason Lowe


When a large number of clients are all making calls with large amounts of 
response data then the IPC server can exhaust memory.  See MAPREDUCE-4730 for 
an example of this.

There does not appear to be any flow control between the server's handler 
threads and the responder thread.  If a handler thread cannot write out all of 
the response data without blocking, it queues up the remainder for the 
responder thread and goes back to the next call in the call queue.  If there 
are enough clients, this can cause the handler threads to overwhelm the heap by 
queueing response data faster than it can be processed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


Mailing list admin?

2012-10-18 Thread Harsh J
Hey project devs,

Can someone let me know who the MLs admin is? INFRA suggested that
instead of going to them, I could reach out to the admin group local
to the project itself (I didn't know we had admins locally).

P.s. Happy to volunteer to administrate as well.

Please ping me directly,
Thanks,
Harsh J


Build failed in Jenkins: Hadoop-Common-0.23-Build #405

2012-10-18 Thread Apache Jenkins Server
See 

Changes:

[bobby] HADOOP-8930. Cumulative code coverage calculation (Andrey Klochkov via 
bobby)

[bobby] svn merge -c 1399289 FIXES: MAPREDUCE-4721. Task startup time in JHS is 
same as job startup time. (Ravi Prakash via bobby)

--
[...truncated 18929 lines...]
[INFO] Writing HTML report to 
'
[INFO] Done. Processed 4 packages in 1008ms (252ms per package).
[INFO] Clover Version 3.0.2, built on April 13 2010 (build-790)
[INFO] Loaded from: 
/home/jenkins/.m2/repository/com/cenqua/clover/clover/3.0.2/clover-3.0.2.jar
[INFO] Clover: Open Source License registered to Apache.
[INFO] Clover is enabled with initstring 
'
[WARNING] Clover historical directory 
[
 does not exist, skipping Clover historical report generation 
([
[INFO] Clover Version 3.0.2, built on April 13 2010 (build-790)
[INFO] Loaded from: 
/home/jenkins/.m2/repository/com/cenqua/clover/clover/3.0.2/clover-3.0.2.jar
[INFO] Clover: Open Source License registered to Apache.
[INFO] Loading coverage database from: 
'
[INFO] Writing report to 
'
[INFO] 
[INFO] 
[INFO] Building Apache Hadoop Auth Examples 0.23.5-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-antrun-plugin:1.6:run (create-testdirs) @ hadoop-auth-examples 
---
[INFO] Executing tasks

main:
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-dependency-plugin:2.1:build-classpath (build-classpath) @ 
hadoop-auth-examples ---
[INFO] Wrote classpath file 
'
[INFO] 
[INFO] --- maven-clover2-plugin:3.0.5:setup (setup) @ hadoop-auth-examples ---
[INFO] Clover Version 3.0.2, built on April 13 2010 (build-790)
[INFO] Loaded from: 
/home/jenkins/.m2/repository/com/cenqua/clover/clover/3.0.2/clover-3.0.2.jar
[INFO] Clover: Open Source License registered to Apache.
[INFO] Creating new database at 
'
[INFO] Processing files at 1.6 source level.
[INFO] Clover all over. Instrumented 3 files (1 package).
[INFO] Elapsed time = 0.016 secs. (187.5 files/sec, 17,687.5 srclines/sec)
[INFO] No Clover instrumentation done on source files in: 
[
 as no matching sources files found
[INFO] 
[INFO] --- maven-resources-plugin:2.2:resources (default-resources) @ 
hadoop-auth-examples ---
[INFO] Using default encoding to copy filtered resources.
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ 
hadoop-auth-examples ---
[INFO] Compiling 3 source files to 

[INFO] 
[INFO] --- maven-resources-plugin:2.2:testResources (default-testResources) @ 
hadoop-auth-examples ---
[INFO] Using default encoding to copy filtered resources.
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ 
hadoop-auth-examples ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.10:test (default-test) @ 
hadoop-auth-examples ---
[INFO] No tests to run.
[INFO] Surefire report directory: 


---
 T E S T S
---

---
 T E S T S
---

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] 
[INFO] --- maven-clover2-plugin:3.0.5:clover (clover) @ hadoop-auth-examples ---
[INFO] Using /default-clover-report descriptor.
[INFO] Using Clover report de