-
Notifications
You must be signed in to change notification settings - Fork 0
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
Browser chokes with large number of named graphs in dataset #4
Comments
It might be an idea to auto-suggest graph IRIs to the user as they type in the Graph IRI input field. This could then be used to fetch some matching graphs from the repository using a query like:
GROUP BY ?graphIRI |
The implemented query now gives a timeout (after 60s limit). The following query completes in reasonable time (~6s) on my test dataset:
|
Hmm, we're losing the ordering/selection by graph size, but maybe that's not so bad. I was not sure anyway whether one would want ordering by graph IRI or by graph size in that list. I'll commit your version. |
I have a dataset with ~0.5M named graphs in it. The SPARQL SELECT query that gets the named graph IRIs with count of triples returns 150MB of JSON and the browser falls over on it.
Probably it doesn't make sense to try and display that many choices in the Graph IRI drop down anyway, so might make sense to put a reasonable limit (1000) on the number of results that get returned by the query.
The text was updated successfully, but these errors were encountered: