graphexp icon indicating copy to clipboard operation
graphexp copied to clipboard

AWS Neptune blank search fails

Open shanequint opened this issue 6 years ago • 3 comments

I can get the "Get Graph Info" to pull back the vertex and edge information on a simple Neptune graph db I created using websockets, but when I do a blank "Search", it hangs and does not return. I tried the following in the gremlin console and hangs also. g.V().aggregate('node').outE().as('edge').inV().where(within('node')).select('edge').toList()

I also can't get REST to work at all, always gets timeout. "Message: timeout, timeout"

shanequint avatar Aug 06 '18 20:08 shanequint

For the websocket version, It may be the same problem as in #44 . Neptune sends an 204 error instead of an empty list and it is not expected by Graphexp. It happens when you have no edge between the nodes that have been selected. In your case, it seems that you created a graph without any edge. I will try to correct #44 in the following days. That may solve your problem.

bricaud avatar Aug 07 '18 09:08 bricaud

If you have a large amount of data in your Neptune cluster, it will take to transfer that over the network and into graphexp, try it with a smaller dataset.

00linglin avatar Aug 23 '18 00:08 00linglin

@shanequint Did you have any success with this? I'm also running into the same problem for a relatively small graph (500K nodes) and can confirm that the edges do exist between those nodes.

karlbaker02 avatar Jul 22 '20 14:07 karlbaker02