You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@giraph.apache.org by "Jakob Homan (Created) (JIRA)" <ji...@apache.org> on 2011/10/27 03:45:33 UTC

[jira] [Created] (GIRAPH-67) Provide AdjacencyList InputFormat for Ids of Strings and double values

Provide AdjacencyList InputFormat for Ids of Strings and double values
----------------------------------------------------------------------

                 Key: GIRAPH-67
                 URL: https://issues.apache.org/jira/browse/GIRAPH-67
             Project: Giraph
          Issue Type: New Feature
          Components: lib
    Affects Versions: 0.70.0
            Reporter: Jakob Homan
            Assignee: Jakob Homan
             Fix For: 0.70.0


Playing with some more graphs, it'd be useful to have an adj list format where the ids are strings, such as names.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (GIRAPH-67) Provide AdjacencyList InputFormat for Ids of Strings and double values

Posted by "Jakob Homan (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GIRAPH-67?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jakob Homan updated GIRAPH-67:
------------------------------

    Attachment: GIRAPH-67.patch

Patch with new TextDoubleDoubleAdjacencyListVertexInputFormat.  Next up: refactoring the packaging to avoid such silly names.  Includes test, which also covers the LineSanitizer class.
                
> Provide AdjacencyList InputFormat for Ids of Strings and double values
> ----------------------------------------------------------------------
>
>                 Key: GIRAPH-67
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-67
>             Project: Giraph
>          Issue Type: New Feature
>          Components: lib
>    Affects Versions: 0.70.0
>            Reporter: Jakob Homan
>            Assignee: Jakob Homan
>             Fix For: 0.70.0
>
>         Attachments: GIRAPH-67.patch
>
>
> Playing with some more graphs, it'd be useful to have an adj list format where the ids are strings, such as names.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (GIRAPH-67) Provide AdjacencyList InputFormat for Ids of Strings and double values

Posted by "Hyunsik Choi (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GIRAPH-67?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13137927#comment-13137927 ] 

Hyunsik Choi commented on GIRAPH-67:
------------------------------------

The generic type parameter in the patch seems strange.
{code:java}
public class TextDoubleDoubleAdjacencyListVertexInputFormat
    extends TextVertexInputFormat<Text, LongWritable, LongWritable> {
...
{code}

Should it be changed as follows?
{code:java}
public class TextDoubleDoubleAdjacencyListVertexInputFormat
    extends TextVertexInputFormat<Text, DoubleWritable, DoubleWritable> {
...
{code}
                
> Provide AdjacencyList InputFormat for Ids of Strings and double values
> ----------------------------------------------------------------------
>
>                 Key: GIRAPH-67
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-67
>             Project: Giraph
>          Issue Type: New Feature
>          Components: lib
>    Affects Versions: 0.70.0
>            Reporter: Jakob Homan
>            Assignee: Jakob Homan
>             Fix For: 0.70.0
>
>         Attachments: GIRAPH-67.patch
>
>
> Playing with some more graphs, it'd be useful to have an adj list format where the ids are strings, such as names.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (GIRAPH-67) Provide AdjacencyList InputFormat for Ids of Strings and double values

Posted by "Hyunsik Choi (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GIRAPH-67?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13138020#comment-13138020 ] 

Hyunsik Choi commented on GIRAPH-67:
------------------------------------

+1

:)


                
> Provide AdjacencyList InputFormat for Ids of Strings and double values
> ----------------------------------------------------------------------
>
>                 Key: GIRAPH-67
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-67
>             Project: Giraph
>          Issue Type: New Feature
>          Components: lib
>    Affects Versions: 0.70.0
>            Reporter: Jakob Homan
>            Assignee: Jakob Homan
>             Fix For: 0.70.0
>
>         Attachments: GIRAPH-67-2.patch, GIRAPH-67.patch
>
>
> Playing with some more graphs, it'd be useful to have an adj list format where the ids are strings, such as names.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (GIRAPH-67) Provide AdjacencyList InputFormat for Ids of Strings and double values

Posted by "Jakob Homan (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GIRAPH-67?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jakob Homan updated GIRAPH-67:
------------------------------

    Attachment: GIRAPH-67-2.patch

D'oh.  Great catch.  Auto refactoring is always a exercise is oversight.  Thanks.
                
> Provide AdjacencyList InputFormat for Ids of Strings and double values
> ----------------------------------------------------------------------
>
>                 Key: GIRAPH-67
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-67
>             Project: Giraph
>          Issue Type: New Feature
>          Components: lib
>    Affects Versions: 0.70.0
>            Reporter: Jakob Homan
>            Assignee: Jakob Homan
>             Fix For: 0.70.0
>
>         Attachments: GIRAPH-67-2.patch, GIRAPH-67.patch
>
>
> Playing with some more graphs, it'd be useful to have an adj list format where the ids are strings, such as names.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (GIRAPH-67) Provide AdjacencyList InputFormat for Ids of Strings and double values

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

Hudson commented on GIRAPH-67:
------------------------------

Integrated in Giraph-trunk-Commit #20 (See [https://builds.apache.org/job/Giraph-trunk-Commit/20/])
    GIRAPH-67. Provide AdjacencyList InputFormat for Ids of Strings and double values.

jghoman : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1190510
Files : 
* /incubator/giraph/trunk/CHANGELOG
* /incubator/giraph/trunk/src/main/java/org/apache/giraph/lib/TextDoubleDoubleAdjacencyListVertexInputFormat.java
* /incubator/giraph/trunk/src/test/java/org/apache/giraph/lib/TestTextDoubleDoubleAdjacencyListVertexInputFormat.java

                
> Provide AdjacencyList InputFormat for Ids of Strings and double values
> ----------------------------------------------------------------------
>
>                 Key: GIRAPH-67
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-67
>             Project: Giraph
>          Issue Type: New Feature
>          Components: lib
>    Affects Versions: 0.70.0
>            Reporter: Jakob Homan
>            Assignee: Jakob Homan
>             Fix For: 0.70.0
>
>         Attachments: GIRAPH-67-2.patch, GIRAPH-67.patch
>
>
> Playing with some more graphs, it'd be useful to have an adj list format where the ids are strings, such as names.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira