Reputation: 1242
We're running a large bulk load into AWS neptune and can no longer query the graph to get node counts without the query timing out. What options do we have to ensure we can audit the total counts in the graph?
Fails on curl and sagemaker notebook.
Upvotes: 3
Views: 676
Reputation: 14371
There are a few of things you could consider.
DFEQueryEngine=viaQueryHint
in the cluster parameter group.Updated 2023-03-20
As of Engine release 1.2.1.0, Amazon Neptune now provides a Summary API that can be used to query various graph metadata, including node and edge counts etc. The Graph-Notebook project now also offers a %summary
line magic that can be used to invoke the API.
Upvotes: 2