-
Notifications
You must be signed in to change notification settings - Fork 211
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
Stop/inspect running queries #1341
Comments
Have you tried the |
Doesn't seem to work. I can see running statements like
|
When you are using the SPARQL endpoint, you need to run the following command:
The number on the first line is the amount of milliseconds this query has run for so far. There currently no way to kill individual queries, as they can be run on multiple threads in parallel. The only way to stop these queries is by running the If you are running an open SPARQL endpoint, such as DBpedia then you may want to consider enabling the ANYTIME functionality on your SPARQL endpoint 2. Footnotes |
I'm triggering SPARQL queries against the Virtuoso
/sparql
endpoint via the Python packageSPARQLWrapper
:Sometimes I have SPARQL queries that have a very long running time and therefore I would like in some cases to check if such queries are still running and eventually stop them. Is there a way to inspect running queries and to stop a specific query while is running?
Background: the queries are triggered from a Docker container running a FastAPI application which invokes the
/sparql
endpoint in another Docker container. The Virtuoso database is based on Docker imagevirtuoso/virtuoso-opensource-7:7.2.13-r19-g8273aad-alpine
.Thank you for the support.
The text was updated successfully, but these errors were encountered: