Home > Software design >  Apache AGE- How to read a CSV File
Apache AGE- How to read a CSV File

Time:01-19

I am using apache age and I have a CSV file with a bunch of data in it. I want to populate my graph using the information in the csv file, so can anyone help me with this, and also tell me if I have to preprocess my CSV file so that it is readable by the function which is going to be called by apache age.

CodePudding user response:

Yes, you can load data from CSV files into Postrgres using Apache AGE. The docs detail the steps necessary here: https://age.apache.org/age-manual/master/intro/agload.html

It is likely that you will need to preprocess your files so that the columns and headings are in the correct format.

  • Related