abdulmanann commented on issue #966:
URL: https://github.com/apache/age/issues/966#issuecomment-1614759324

   You can export the graph data from AGE in a CSV file which you can later 
import into Giraph. This 
[link](https://stackoverflow.com/questions/41606341/convert-csv-data-to-graph-data)
 shows how to read CSV file in Giraph.
   To export the data in CSV you can use the COPY command in Postgresql
   ```
   COPY ( SELECT *  FROM library._ag_label_vertex ) TO 'path_to_csv' WITH CSV 
HEADER;
   ```


-- 
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: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to