Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
9.0
-
None
Description
The "Task Management" Task Management page in the ref-guide has API paths for the list-task and cancel-task APIs that appear to not match their actual paths at runtime.
Documented in Ref Guide
- List Tasks: /solr/tasks/list
- Cancel Tasks: /solr/tasks/cancel
But it looks like the documentation is missing a collection-name. Querying the APIs as-documented returns 404's.
$ curl -ilk -X GET "http://localhost:8983/solr/tasks/list" HTTP/1.1 404 Not Found ... $ curl -ilk -X GET "http://localhost:8983/solr/tasks/cancel" HTTP/1.1 404 Not Found ...
Adding a collection name has them return correctly:
$ curl -ilk -X GET "http://localhost:8983/solr/books/tasks/list" HTTP/1.1 200 OK ... $ curl -ilk -X GET "http://localhost:8983/solr/books/tasks/cancel?queryUUID=asdf" HTTP/1.1 200 OK ...
Assuming that actual paths are what we expect, then the ref-guide docs should be updated to match.
Attachments
Issue Links
- is related to
-
SOLR-15164 Task Management Interface
- Closed
- links to