Skip to content
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] Using the air-routes data set the DFW airport does not expand correctly #314

Closed
krlawrence opened this issue Apr 24, 2024 · 2 comments
Labels
bug Something isn't working exploration Issues related to graph exploration, node & edge details, neighbor expansion, etc performance Issues relating to performance reliability Issues relating to improvements in reliability
Milestone

Comments

@krlawrence
Copy link
Contributor

krlawrence commented Apr 24, 2024

Community Note

  • Please use a 👍 reaction to provide a +1/vote. This helps the community and maintainers prioritize this request.
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment.

Describe the bug
Environment:

  • Amazon Neptune version 1.3.1.0
  • Graph Explorer V 1.6.0
  • Gremlin connection type

With the air routes data set loaded, add the DFW airport to the canvas and expand it so that all 253 connected airports are shown. Once this is done, none of the adjacent airports can be further expanded. If the expanded number of adjacent airports is limited to say 10, things work as expected. There are several areas that can be improved here.

  1. Data about the adjacent airports is never correctly fetched. Further exploration is impossible.
  2. The Explorer sends 253 HTTP requests in rapid succession to get the information about the adjacent airports. This can result in throttling exceptions. I saw a lot of errors in the browser debug console (network tab).
  3. The Gremlin queries being used are very simple of the form "g.V(\"178\").both().limit(500).dedup().group().by(label).by(count()) . A better scheme might be to fetch data about batches of nodes at a time (maybe 10 or even 50)
  4. The "Updating neighbors" pop-up never goes away

image

Expected behavior
You should be able to further expand and explore the graph.

@krlawrence krlawrence added the bug Something isn't working label Apr 24, 2024
@krlawrence krlawrence changed the title [Bug] Using te air-routes data set the DFW airport does not expand correctly [Bug] Using the air-routes data set the DFW airport does not expand correctly Apr 24, 2024
@kmcginnes kmcginnes added performance Issues relating to performance reliability Issues relating to improvements in reliability exploration Issues related to graph exploration, node & edge details, neighbor expansion, etc labels Apr 24, 2024
@kmcginnes kmcginnes added this to the Release 1.6.2 milestone May 1, 2024
@kmcginnes
Copy link
Collaborator

@kmcginnes
Copy link
Collaborator

This has been resolved by the work done in

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working exploration Issues related to graph exploration, node & edge details, neighbor expansion, etc performance Issues relating to performance reliability Issues relating to improvements in reliability
Projects
None yet
Development

No branches or pull requests

2 participants