You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hama.apache.org by "Edward J. Yoon (JIRA)" <ji...@apache.org> on 2010/11/08 06:47:07 UTC

[jira] Created: (HAMA-326) GroomServer should wait until a job finishes

GroomServer should wait until a job finishes
--------------------------------------------

                 Key: HAMA-326
                 URL: https://issues.apache.org/jira/browse/HAMA-326
             Project: Hama
          Issue Type: Bug
          Components: bsp
    Affects Versions: 0.2.0
            Reporter: Edward J. Yoon
            Assignee: Edward J. Yoon
            Priority: Critical
             Fix For: 0.2.0


{code}
        if (bspPeer.localQueue.size() == 0
            && bspPeer.outgoingQueues.size() == 0)
{code}

Currently, If queues are empty, the job will be marked as finished. But, there is some special case like SerializePrinting, which only uses sync() method. In that case, job is running but system alarms as "job is done".



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


[jira] Updated: (HAMA-326) GroomServer should wait until a job finishes

Posted by "Edward J. Yoon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HAMA-326?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward J. Yoon updated HAMA-326:
--------------------------------

    Attachment: HAMA-326.patch

attach my patch

> GroomServer should wait until a job finishes
> --------------------------------------------
>
>                 Key: HAMA-326
>                 URL: https://issues.apache.org/jira/browse/HAMA-326
>             Project: Hama
>          Issue Type: Bug
>          Components: bsp
>    Affects Versions: 0.2.0
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>            Priority: Critical
>             Fix For: 0.2.0
>
>         Attachments: HAMA-326.patch
>
>
> {code}
>         if (bspPeer.localQueue.size() == 0
>             && bspPeer.outgoingQueues.size() == 0)
> {code}
> Currently, If queues are empty, the job will be marked as finished. But, there is some special case like SerializePrinting, which only uses sync() method. In that case, job is running but system alarms as "job is done".

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


[jira] Commented: (HAMA-326) GroomServer should wait until a job finishes

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

Hudson commented on HAMA-326:
-----------------------------

-1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12459039/HAMA-326.patch
against trunk revision 1030802.

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

    tests included -1.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no tests are needed for this patch.

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

    javac +1.  The applied patch does not generate any new javac compiler warnings.

    release audit +1.  The applied patch does not generate any new release audit warnings.

    findbugs -1.  The patch appears to introduce 2 new Findbugs warnings.

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

Test results: http://hudson.zones.apache.org/hudson/job/Hama-Patch/286/testReport/
Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Hama-Patch/286/findbugsResult/
Checkstyle results: http://hudson.zones.apache.org/hudson/job/Hama-Patch/286/artifact/trunk/build/test/checkstyle-errors.html
Console output: http://hudson.zones.apache.org/hudson/job/Hama-Patch/286/console

This message is automatically generated.

> GroomServer should wait until a job finishes
> --------------------------------------------
>
>                 Key: HAMA-326
>                 URL: https://issues.apache.org/jira/browse/HAMA-326
>             Project: Hama
>          Issue Type: Bug
>          Components: bsp
>    Affects Versions: 0.2.0
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>            Priority: Critical
>             Fix For: 0.2.0
>
>         Attachments: HAMA-326.patch
>
>
> {code}
>         if (bspPeer.localQueue.size() == 0
>             && bspPeer.outgoingQueues.size() == 0)
> {code}
> Currently, If queues are empty, the job will be marked as finished. But, there is some special case like SerializePrinting, which only uses sync() method. In that case, job is running but system alarms as "job is done".

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


[jira] Updated: (HAMA-326) GroomServer should wait until a job finishes

Posted by "Edward J. Yoon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HAMA-326?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward J. Yoon updated HAMA-326:
--------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

removed findbugs warnings and I just committed this.

> GroomServer should wait until a job finishes
> --------------------------------------------
>
>                 Key: HAMA-326
>                 URL: https://issues.apache.org/jira/browse/HAMA-326
>             Project: Hama
>          Issue Type: Bug
>          Components: bsp
>    Affects Versions: 0.2.0
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>            Priority: Critical
>             Fix For: 0.2.0
>
>         Attachments: HAMA-326.patch
>
>
> {code}
>         if (bspPeer.localQueue.size() == 0
>             && bspPeer.outgoingQueues.size() == 0)
> {code}
> Currently, If queues are empty, the job will be marked as finished. But, there is some special case like SerializePrinting, which only uses sync() method. In that case, job is running but system alarms as "job is done".

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


[jira] Updated: (HAMA-326) GroomServer should wait until a job finishes

Posted by "Edward J. Yoon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HAMA-326?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward J. Yoon updated HAMA-326:
--------------------------------

    Status: Patch Available  (was: Open)

running patch through hudson.

> GroomServer should wait until a job finishes
> --------------------------------------------
>
>                 Key: HAMA-326
>                 URL: https://issues.apache.org/jira/browse/HAMA-326
>             Project: Hama
>          Issue Type: Bug
>          Components: bsp
>    Affects Versions: 0.2.0
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>            Priority: Critical
>             Fix For: 0.2.0
>
>         Attachments: HAMA-326.patch
>
>
> {code}
>         if (bspPeer.localQueue.size() == 0
>             && bspPeer.outgoingQueues.size() == 0)
> {code}
> Currently, If queues are empty, the job will be marked as finished. But, there is some special case like SerializePrinting, which only uses sync() method. In that case, job is running but system alarms as "job is done".

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