acezen commented on issue #22:
URL: 
https://github.com/apache/incubator-graphar-testing/issues/22#issuecomment-2275730263

   > what are the files named "edgecount" and "vertexcount"? how to read them ?
   
   `vertex_count` is the number of this label vertex, like 
https://github.com/apache/incubator-graphar-testing/blob/main/ldbc_sample/parquet/vertex/person/vertex_count
 is the number of person vertex, it's 8 byte int, you can read as a binary and 
cast to int64.
   `edge_count` is the number of edge of certain chunk of vertex, like 
https://github.com/apache/incubator-graphar-testing/blob/main/ldbc_sample/parquet/edge/person_knows_person/ordered_by_dest/edge_count0
 if the edge num of vertex chunk 0. you can cast to int64 too.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to