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

eliminate limit of 20k results #6

Open
VladimirAlexiev opened this issue Feb 6, 2024 · 0 comments
Open

eliminate limit of 20k results #6

VladimirAlexiev opened this issue Feb 6, 2024 · 0 comments

Comments

@VladimirAlexiev
Copy link

The Virtuoso instance has a limit of 20k results.
Some simple queries run in no time at all, but suffer from this limit.

Eg here's a query to get all software repositories (with the idea of discovering Github repos devoted to ML, and their respective Github tags, so as to snowball into more ML/AI repos):

prefix lpwcc:   <https://linkedpaperswithcode.com/class/>
prefix fabio:   <http://purl.org/spar/fabio/>

select * {
  [] a lpwcc:repository; fabio:hasURL ?repo
} 

Should return 173k but returns 20k.

Eliminate the limit of 20k results.
Or consider the option of rehosting on GraphDB and setting a query-timeout, but no result-limit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant