If I am building a graph on AWS Neptune with 20 million Nodes and 100 million edges, How much RAM and Disk space would I require? Can someone give me an rough order of magnitude estimate
Asked
Active
Viewed 794 times
0
-
Depends on how much data you store in vertex and edge properties. However, SO is mainly for programming related questions. – codetiger Aug 17 '20 at 04:02
1 Answers
3
Storage capacity in Amazon Neptune is dynamically allocated as you write data into a Neptune cluster. A new cluster starts out with 10GB allocated and then grows in 10GB segments as your data grows. As such, there's no need to pre-provision or calculate storage capacity prior to use. A Neptune cluster can hold up to 64TB of data, which is in the 100s of billions of vertices, edges, and properties range (or triples, if using RDF on Neptune).
RAM (and CPU, for that matter) needs are driven by query complexity, not by graph size. RAM is also used for buffer pool cache, caching the vertices, edges, and properties that were most recently queried.

Taylor Riggan
- 1,963
- 6
- 12