You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Jay Shipper (JIRA)" <ji...@apache.org> on 2012/09/20 15:04:07 UTC

[jira] [Created] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

Jay Shipper created ACCUMULO-768:
------------------------------------

             Summary: Typo in User Manual on MapReduce Analytics
                 Key: ACCUMULO-768
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
             Project: Accumulo
          Issue Type: Bug
    Affects Versions: 1.4.0
            Reporter: Jay Shipper
            Priority: Minor


This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)

The reduce function signature is incorrect.  Instead of:
public void reduce(WritableComparable key, Iterator<Text> values, Context c)

It should be:
public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Updated] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

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

Jay Shipper updated ACCUMULO-768:
---------------------------------

    Attachment: ACCUMULO-768.patch

Updated to include change in latex manual
                
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Assignee: Jay Shipper
>            Priority: Minor
>             Fix For: 1.4.0
>
>         Attachments: ACCUMULO-768.patch, ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Updated] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

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

Jay Shipper updated ACCUMULO-768:
---------------------------------

    Fix Version/s: 1.4.0
           Status: Patch Available  (was: Open)
    
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Priority: Minor
>             Fix For: 1.4.0
>
>         Attachments: ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Updated] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

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

Jay Shipper updated ACCUMULO-768:
---------------------------------

    Attachment: ACCUMULO-768.patch

Changed Iterator to Iterable on 1.4's user manual's Analytics page
                
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Priority: Minor
>         Attachments: ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Commented] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

Posted by "Jay Shipper (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ACCUMULO-768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13460438#comment-13460438 ] 

Jay Shipper commented on ACCUMULO-768:
--------------------------------------

Sorry for the rookie question, but can I apply the patch or does a committer have to do it?  If I can do it, what's the process for that?  Just a simple svn commit?
                
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Assignee: Jay Shipper
>            Priority: Minor
>             Fix For: 1.4.0
>
>         Attachments: ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Updated] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

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

Billie Rinaldi updated ACCUMULO-768:
------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 1.4.0)
                   1.4.2
                   1.5.0
           Status: Resolved  (was: Patch Available)

Thanks for the updated patch!  I applied it to 1.4 and trunk as well as the site.
                
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Assignee: Jay Shipper
>            Priority: Minor
>             Fix For: 1.5.0, 1.4.2
>
>         Attachments: ACCUMULO-768.patch, ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Updated] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

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

Billie Rinaldi updated ACCUMULO-768:
------------------------------------

    Component/s: docs
       Assignee: Jay Shipper

Jay, thanks for the patch.  I've added you to our contributors group in JIRA.
                
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Assignee: Jay Shipper
>            Priority: Minor
>             Fix For: 1.4.0
>
>         Attachments: ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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] [Commented] (ACCUMULO-768) Typo in User Manual on MapReduce Analytics

Posted by "Billie Rinaldi (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ACCUMULO-768?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13460613#comment-13460613 ] 

Billie Rinaldi commented on ACCUMULO-768:
-----------------------------------------

A committer will still have to apply the patch.  I haven't done this yet because there is another place where the error must be corrected, in the latex manual (docs/src/user_manual).  There is actually a process for generating the web manual from the latex manual, though someday I would like to make the web manual the canonical version and just generate a pdf manual from it.
                
> Typo in User Manual on MapReduce Analytics
> ------------------------------------------
>
>                 Key: ACCUMULO-768
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-768
>             Project: Accumulo
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: 1.4.0
>            Reporter: Jay Shipper
>            Assignee: Jay Shipper
>            Priority: Minor
>             Fix For: 1.4.0
>
>         Attachments: ACCUMULO-768.patch
>
>
> This typo can be found on: http://accumulo.apache.org/1.4/user_manual/Analytics.html (also applies to older versions of manual)
> The reduce function signature is incorrect.  Instead of:
> public void reduce(WritableComparable key, Iterator<Text> values, Context c)
> It should be:
> public void reduce(WritableComparable key, Iterable<Text> values, Context c)

--
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