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

Fixes #540 - Document Search Endpoint #551

Merged
merged 3 commits into from
Sep 16, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All examples in this section assume that you've found a running leader at `chron

- [Leaders](#leaders)
- [Listing Jobs](#listing-jobs)
- [Searching for a Job](#searching-for-a-job)
- [Deleting a Job](#deleting-a-job)
- [Deleting All Tasks for a Job](#deleting-all-tasks-for-a-job)
- [Manually Starting a Job](#manually-starting-a-job)
Expand Down Expand Up @@ -49,6 +50,16 @@ Interesting fields in the hashes are:

If there is a `parents` field there will be no `schedule` field, and vice-versa.

## Searching for a Job

Searching for a job with known attributes can be helpful when a large amount of jobs are being deployed. The list of possible attributes is described in the [Job Configuration](#job-configuration) section.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not all of those attributes are supported by the search, see: https://github.com/mesos/chronos/blob/master/src/main/scala/org/apache/mesos/chronos/scheduler/api/JobManagementResource.scala#L221

The search endpoints accepts the following parameters:

  • name
  • command
  • any (which is quite misleading as it actually means "name or command").

We should also mention how the search works. It will convert both the search term and the desired job attribute to lower case and then check if the job attribute contains the term.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Listed the available attributes and description.

* Endpoint: __/scheduler/jobs/search__
* Method: __GET__
* Example: `curl -L -X GET chronos-node:8080/scheduler/jobs/search?name=request_event_counter_hourly`
* Example: `curl -L -X GET chronos-node:8080/scheduler/jobs/search?owner=foo@bar.io`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

owner is not a supported parameter

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed

* Response: HTTP 204

## Deleting a Job

Get a job name from the job listing above.
Expand Down