I was trying having some tests on Neo4j calculating shortest path between 2 nodes.
- With 100k nodes and 10 million edges (100 edges each node), shortest path algo was run in 0.4-3s
- With 200k nodes and 40 million edges (200 edges each node), it takes at least from 40s or more.
My computer obviously isn't intended for Big Data analysis, but I don't even know if buying a server with 128GB ram a bunch of processor more, could solve the second test in a reasonable time. (Do you think it could?)
Certainly with 1 million nodes or more, neo4j will not help me out anymore. I have spent many hours looking online for some way to use Giraph like Neo4J: having some sort of API, (even in java) through which I can run a query and output a result. But nothing..
Thanks in advance