Aklakan opened a new pull request, #3184: URL: https://github.com/apache/jena/pull/3184
GitHub issue resolved #2701 Pull request Description: ARQ plugin + Fuseki Plugin to track ongoing query executions: * Added `DatasetGraphWithExecTracker` which wraps another graph and puts a `ExecTracker` object into its context. * Added `QueryEngineFactoryExecTracker` and `UpdateEngineFactoryTracker` which handles `DatasetGraphWithExecTracker` by unwrapping the dataset graph and forwarding the execution request again to the execution factory registries. The obtained execution is then tracken in the `ExecTracker`. The Fuseki Mod adds a `tracker` endpoint that lists running executions with a stop button and the last N (by default = 100) completed queries. [Jena-Query-Dashboard.webm](https://github.com/user-attachments/assets/964cd889-8d46-41c3-9f3a-ca7d485c8eac) ```turtle # New 'tracker' endpoint feature <#ep-tracker> fuseki:name "tracker" ; fuseki:operation fuseki:tracker . # Usual fuseki setup <#ep-update> fuseki:name "update" ; fuseki:operation fuseki:update . <#ep-query> fuseki:operation fuseki:query . <#service> rdf:type fuseki:Service ; fuseki:name "mobydex" ; fuseki:endpoint <#ep-query> , <#ep-update>, <#ep-tracker> ; fuseki:dataset <#textDS> . ``` ---- - [ ] Tests are included. - [ ] Documentation change and updates are provided for the [Apache Jena website](https://github.com/apache/jena-site/) - [x] Commits have been squashed to remove intermediate development commit messages. - [x] Key commit messages start with the issue number (GH-xxxx) By submitting this pull request, I acknowledge that I am making a contribution to the Apache Software Foundation under the terms and conditions of the [Contributor's Agreement](https://www.apache.org/licenses/contributor-agreements.html). ---- See the [Apache Jena "Contributing" guide](https://github.com/apache/jena/blob/main/CONTRIBUTING.md). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org For additional commands, e-mail: pr-h...@jena.apache.org