unsubscribe

2014-06-23 Thread Akshay Trivedi

Command Line output

2014-04-23 Thread Akshay Trivedi
Hi, I want giraph to print to stdout i.e command prompt/terminal. Can this be done using giraph and how to do it? Regards Akshay

Re: Command Line output

2014-04-23 Thread Akshay Trivedi
wrote: you can use logger or basic syso, but make sure your map-reduce log-level is set to info or debug, according to ur requirement, otherwise o/p will not be directed to console, at anytime you can check ur log files to see the o/p -Yeshwanth On Wed, Apr 23, 2014 at 6:26 PM, Akshay

Difference in Input format and Vertex type

2014-04-18 Thread Akshay Trivedi
Hi, Using giraph, I am taking input in the format TextDoubleDoubleAdjacencyListVertexInputFormat and I want my Vertex to be of type VertexText,Text,DoubleWritable,Text i.e vertex value in input is in DoubleWritable and in program it is of type Text. Can this be done in giraph i.e will giraph type

how to change graph

2014-04-16 Thread Akshay Trivedi
Hi, I wanted to do some computation on graph and delete some edges between supersteps. Can this be done using giraph?? I have heard of MutableVertex class but I dont know whether it can be used to delete edges. Also is MutableVertex abstract class and has to be implemented?? Regards, Akshay

Re: Can a vertex belong to more than one partition

2014-04-15 Thread Akshay Trivedi
to all partitions you have ? Why do you need so strict partitioning ? Regards Lukas On 6.4.2014 12:38, Akshay Trivedi wrote: In order to custom partition the graph, WorkerGraphPartitioner has to be implemented. It has a method getPartitionOwner(I vertexId) which returns PartitionOwner

Can a vertex belong to more than one partition

2014-04-06 Thread Akshay Trivedi
In order to custom partition the graph, WorkerGraphPartitioner has to be implemented. It has a method getPartitionOwner(I vertexId) which returns PartitionOwner of the vertex. I want that some vertices belong to all paritions i.e all PartitionOwners. Can anyone help me with it?

Re: Custom partitioning among workers

2014-04-05 Thread Akshay Trivedi
labels be part of vertex id (I know, its limiting) then implement custom WorkerGraphPartitioner and MasterGraphPartitioner. Regards Lukas On 4.4.2014 13:59, Akshay Trivedi wrote: Hi all, I need help on partitioning graph. I input the graph and label it. Now I want that all vertices

Custom partitioning among workers

2014-04-04 Thread Akshay Trivedi
Hi all, I need help on partitioning graph. I input the graph and label it. Now I want that all vertices with same label are assigned to a worker and no other vertices with different labels are assigned to the same worker. In this way each group of vertices having same label are assigned to an

Re: how to input two graphs using giraph

2014-04-03 Thread Akshay Trivedi
?? Regards Akshay On Wed, Apr 2, 2014 at 5:45 PM, Lukas Nalezenec lukas.naleze...@firma.seznam.cz wrote: Hi, I would try to load the query graph in custom MasterComputation and distribute it to computations/workers using persistent aggregator. Regards Lukas On 2.4.2014 14:01, Akshay Trivedi

how to input two graphs using giraph

2014-04-02 Thread Akshay Trivedi
Hi, I want to solve sub-graph isomorphism through giraph so I need to input two graphs-Data Graph(having million of nodes) and Query Graph(having few nodes). Can anyone help me on how to take the data graph and query graph as input(Both are saved two different files in JsonLongDoubleFloatDouble