stingergraph / stinger

The STINGER in-memory graph store and dynamic graph analysis platform. Millions to billions of vertices and edges at thousands to millions of updates per second.
http://www.stingergraph.com
Other
210 stars 67 forks source link

template.csv for streaming in edges from a csv file #248

Closed abasak24 closed 6 years ago

abasak24 commented 6 years ago

Hello, I am trying to use the server-client mode and trying to stream in edges from a csv file. My .csv file contains integers in the form of SOURCE_ID, DESTINATION_ID, TIMESTAMP, WEIGHT. However, I think to run the ./bin/stinger_csv_stream, there needs to be a template.csv file. My template file is not working. What should a template file look like for the csv?

Thanks!

davidediger commented 6 years ago

Your template.csv should probably contain a single line like $source_str1,$destination_str1,$time1,$weight1

abasak24 commented 6 years ago

Thanks!