-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Unable to Synchronize Graph #219
Comments
@triggan the setup in the readme didn't seem to work for me (prerequisites point to setting up SSH tunnel with EC2 instance here, however on visiting the EC2 public IP requests seem to hit localhost even with the "Using Proxy Server" box checked)) so I resorted to creating a direct tunnel with the EC2 instance. The only thing that I can spot from the Network tab is a 400 bad request. I don't see anything new in the container logs. ![]() |
You don't need an SSH tunnel to the EC2 instance if you're using Graph Explorer's proxy. One thing to realize is that the queries used to fetch data into Graph Explorer are not coming from the Graph Explorer application. They are being triggered from the Graph Explorer code that is running in your browser. The proxy is to allow the requests from your browser to the Graph Explorer proxy on EC2, which then forwards the requests to Neptune. Graph Explorer does not have a middle-tier / API layer that sends requests to Neptune. All of the query requests go from the browser to Neptune (either directly, or via the proxy). This is why you will not see 400 errors in the container. The 400 errors would only appear in your browser's console. |
Thanks @triggan that clears it up. I was setting the proxy endpoint to ![]() My EC2 instance can send and receive on ports 80, 443, 8182 and 22. I've also added the certificate to my Keychain. I'm not sure what's causing this. Update: I think this is due to the size of the graph (~3.5k nodes). I tried reducing the gremlin query size and hitting the same endpoint and it did give out a valid response. Is there any way to go around this? |
Hi @RonLek,
This additional information will help us diagnose the problem and provide a solution more quickly. |
For anyone else stumbling upon this. If you're running the graph explorer on your ec2 instance then when you create a connection with the UI you want to put:
|
Community Note
Describe the bug
I'm trying to visualize data from my Neptune DB using graph-explorer. I'm running graph-explorer in an EC2 instance within the same VPC as my Neptune cluster and creating an SSH tunnel from my local to port
8182
of this instance for connection. I can verify the connection by getting a response fromhttps://<NEPTUNE_ENDPOINT>:8182/status
from my browser.However, the synchronization fails. The Network tab looks like the following
The first gremlin request gets a correct response but the second one fails with a
400
. Additionally, thesummary
request fails due to a CORS error. Connectivity to the Neptune cluster is not a problem since the first gremlin request succeeds.My graph has approximately 3,500 nodes and edges which I presume should not be large to cause timeouts.
Expected behavior
A successful synchronization of the data.
The text was updated successfully, but these errors were encountered: