You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Konstantin Boudnik (JIRA)" <ji...@apache.org> on 2010/05/06 20:06:50 UTC

[jira] Created: (HADOOP-6752) Remote cluster control functionality needs some JavaDocs improvement

Remote cluster control functionality needs some JavaDocs improvement
--------------------------------------------------------------------

                 Key: HADOOP-6752
                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
             Project: Hadoop Common
          Issue Type: Sub-task
          Components: test
    Affects Versions: 0.22.0
            Reporter: Konstantin Boudnik


Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs some JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Attachment: hadoop-6572.patch

Initial patch sent in by Balaji

> Remote cluster control functionality needs some JavaDocs improvement
> --------------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Balaji Rajagopalan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12867425#action_12867425 ] 

Balaji Rajagopalan commented on HADOOP-6752:
--------------------------------------------

Please create a new JIRA to fix any issues with exception exclustion pattern. The original work was submitted as part of pushConfig against a yahoo internal bugzilla ticket, can't publish internal details here. I will use this ticket to address cos java docs comment. 

balaji 

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Summary: Remote cluster control functionality needs JavaDocs improvement  (was: Remote cluster control functionality needs JavaDocs improvement; exceptionList doesn't work property)

Reverting: the bug is unrelated to this JIRA :(

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs some JavaDocs improvement

Posted by "Vinay Kumar Thota (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12866624#action_12866624 ] 

Vinay Kumar Thota commented on HADOOP-6752:
-------------------------------------------

Exception exclusion functionality is not working correctly because of that tests are failing by not matching the error count.
I debugged the issue and found that the problem with shell command which is generating in the getNumberOfMatchesInLogFile function.
Currently building the shell command in the following way.
{noformat}
if(list != null){
  for(int i =0; i < list.length; ++i)
  {
    filePattern.append(" | grep -v " + list[i] );
  }
}
    String[] cmd =
        new String[] {
            "bash",
            "-c",
            "grep -c "
                + pattern + " " + filePattern
                + " | awk -F: '{s+=$2} END {print s}'" };    
{noformat}

The above commnad won't work correctly because you are counting the exceptions in the file before excluding the known exceptions.
In this case it gives the mismatch error counts everytime.The shell command should be in the following way to work correctly.

{noformat}
if (list != null) {
  int index = 0;
  for (String excludeExp : list) {
    filePattern.append((++index < list.length)? "| grep -v " : 
            "| grep -vc " + list[i] );  
  }
}
String[] cmd =
   new String[] {
       "bash",
       "-c",
       "grep "
           + pattern + " " + filePattern
           + " | awk -F: '{s+=$2} END {print s}'" };    
{noformat}

> Remote cluster control functionality needs some JavaDocs improvement
> --------------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Tags: herriot

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.21.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>             Fix For: 0.21.0
>
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Affects Version/s: 0.21.0
                           (was: 0.22.0)

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.21.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>             Fix For: 0.21.0
>
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (HADOOP-6752) Remote cluster control functionality needs some JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik reassigned HADOOP-6752:
------------------------------------------

    Assignee: Balaji Rajagopalan

> Remote cluster control functionality needs some JavaDocs improvement
> --------------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

           Status: Resolved  (was: Patch Available)
     Hadoop Flags: [Reviewed]
    Fix Version/s: 0.21.0
       Resolution: Fixed

I have just committed this. Thanks Balaji.

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>             Fix For: 0.21.0
>
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement; exceptionList doesn't work property

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Summary: Remote cluster control functionality needs JavaDocs improvement; exceptionList doesn't work property  (was: Remote cluster control functionality needs some JavaDocs improvement)

I am changing the description of the JIRA because an issue in the core functionality was found.

> Remote cluster control functionality needs JavaDocs improvement; exceptionList doesn't work property
> ----------------------------------------------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12868394#action_12868394 ] 

Konstantin Boudnik commented on HADOOP-6752:
--------------------------------------------

+1 patch looks good.

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Attachment: hadoop-6572.0.22.patch

Correct patch for the trunk and 0.21


> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12866652#action_12866652 ] 

Konstantin Boudnik commented on HADOOP-6752:
--------------------------------------------

Ok, I think I am confused. This JIRA is about adding JavaDocs to the public APIs of the code which is part of HADOOP-6332's patches. The issue Vinay has found is in that code. And needed to be tracked separately from this particular JIRA: we can't mix different issues in the same patch.

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12868900#action_12868900 ] 

Hudson commented on HADOOP-6752:
--------------------------------

Integrated in Hadoop-Common-trunk-Commit #257 (See [http://hudson.zones.apache.org/hudson/job/Hadoop-Common-trunk-Commit/257/])
    HADOOP-6752. CHANGES.txt should be updated in 0.21 section instead of 0.22
HADOOP-6752. Remote cluster control functionality needs JavaDocs improvement. Contributed by Balaji Rajagopalan.


> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>             Fix For: 0.21.0
>
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12867773#action_12867773 ] 

Hadoop QA commented on HADOOP-6752:
-----------------------------------

+1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12444551/hadoop-6572.0.22.patch
  against trunk revision 944521.

    +1 @author.  The patch does not contain any @author tags.

    +1 tests included.  The patch appears to include 12 new or modified tests.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    +1 core tests.  The patch passed core unit tests.

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch-h4.grid.sp2.yahoo.net/521/testReport/
Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch-h4.grid.sp2.yahoo.net/521/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch-h4.grid.sp2.yahoo.net/521/artifact/trunk/build/test/checkstyle-errors.html
Console output: http://hudson.zones.apache.org/hudson/job/Hadoop-Patch-h4.grid.sp2.yahoo.net/521/console

This message is automatically generated.

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12866649#action_12866649 ] 

Konstantin Boudnik commented on HADOOP-6752:
--------------------------------------------

Vinay, I think this comment belongs to a different JIRA where the exception filtering has been done. If such a JIRA doesn't exist (somehow I can find it right now; was it committed anywhere yet?) Balaji should know where this functionality has been implemented initially and the comment (along with patch modification) clearly belongs there.

Also, in your comment above you're altering {{filePattern}} which I believe contains the list of files to be grepped.

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12871326#action_12871326 ] 

Hudson commented on HADOOP-6752:
--------------------------------

Integrated in Hadoop-Common-trunk #346 (See [http://hudson.zones.apache.org/hudson/job/Hadoop-Common-trunk/346/])
    

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.21.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>             Fix For: 0.21.0
>
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12867574#action_12867574 ] 

Konstantin Boudnik commented on HADOOP-6752:
--------------------------------------------

Balaji, I will be committing HADOOP-6332 to the Common trunk today. Your patch here should be applicable to that work without hassle because it is pretty much the same code.

In other words, it's gonna be committed soon too :)

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-6752) Remote cluster control functionality needs JavaDocs improvement

Posted by "Konstantin Boudnik (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-6752?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Konstantin Boudnik updated HADOOP-6752:
---------------------------------------

    Status: Patch Available  (was: Open)

To verify...

> Remote cluster control functionality needs JavaDocs improvement
> ---------------------------------------------------------------
>
>                 Key: HADOOP-6752
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6752
>             Project: Hadoop Common
>          Issue Type: Sub-task
>          Components: test
>    Affects Versions: 0.22.0
>            Reporter: Konstantin Boudnik
>            Assignee: Balaji Rajagopalan
>         Attachments: hadoop-6572.0.22.patch, hadoop-6572.patch
>
>
> Herriot has remote cluster control API. The functionality works fairly well, however, JavaDocs are missed here and there. This has to be fixed.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.