Thanks so much, Ankur, :))

Excuse me but I am wondering that:

(for a chosen partition strategy for my application)
1.1)  how to check the size of each partition? is there any api, or log file?
1.2) how to check the processing cost of each partition(time, memory, etc)?

2.1) and the global communication cost of my application upon the chosen 
partition strategy?


On Jul 18, 2014, at 9:18 PM, Ankur Dave <ankurd...@gmail.com> wrote:

> Sorry, I didn't read your vertex replication example carefully, so my 
> previous answer is wrong. Here's the correct one:
> 
> On Fri, Jul 18, 2014 at 9:13 AM, Yifan LI <iamyifa...@gmail.com> wrote:
> I don't understand, for instance, we have 3 edge partition tables(EA: a -> b, 
> a -> c; EB: a -> d, a -> e; EC: d -> c ), 2 vertex partition tables(VA: a, b, 
> c; VB: d, e), the whole vertex table VA will be replicated to all these 3 
> edge partitions? since each of them refers to some vertexes in VA.
> 
> Vertices can be replicated individually without requiring the entire vertex 
> partition to be replicated. In this case, here's what will get replicated to 
> each partition:
> 
> EA: a (from VA), b (from VA), c (from VA)
> EB: a (from VA), d (from VB), e (from VB)
> EC: c (from VA), d (from VB)
> 
> Ankur

Reply via email to