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

issue/91/ischeduler-protocol-defs: IScheduler protocol function definitions vs implementation mismatch. #92

Merged
merged 2 commits into from
Sep 11, 2020
Merged
Changes from all commits
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
20 changes: 10 additions & 10 deletions src/meson/protocols/master/scheduler.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,35 +6,35 @@

(defprotocol IScheduler
""
(accept [this payload] [this payload content-type]
(accept [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler when it accepts offer(s) sent by the master. The
`ACCEPT` request includes the type of operations (e.g., launch task,
reserve resources, create volumes) that the scheduler wants to perform on
the offers.")
(acknowledge [this payload] [this payload content-type]
(acknowledge [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to acknowledge a status update.")
(decline [this payload] [this payload content-type]
(decline [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to explicitly decline offer(s) received. Note that
this is same as sending an `ACCEPT` call with no operations.")
(kill-task [this payload] [this payload content-type]
(kill-task [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to kill a specific task. If the scheduler has a
custom executor, the kill is forwarded to the executor; it is up to the
executor to kill the task and send a `TASK_KILLED` (or `TASK_FAILED`)
update.")
(message [this payload] [this payload content-type]
(message [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to send arbitrary binary data to the executor.")
(reconcile [this payload] [this payload content-type]
(reconcile [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to query the status of non-terminal tasks.")
(request [this payload] [this payload content-type]
(request [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to request resources from the master/allocator.")
(revive [this payload] [this payload content-type]
(revive [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to remove any/all filters that it has previously
set via `ACCEPT` or `DECLINE` calls.")
(shutdown-executor [this ayload] [this payload content-type]
(shutdown-executor [this payload stream-id framework-id] [this payload stream-id framework-id content-type]
"Sent by the scheduler to shutdown a specific custom executor.")
(subscribe [this payload] [this payload content-type]
"This is the first step in the communication process between the scheduler
and the master. This is also to be considered as subscription to the
“/scheduler” events stream.")
(teardown [this payload] [this payload content-type]
(teardown [this stream-id framework-id] [this stream-id framework-id content-type]
"Sent by the scheduler when it wants to tear itself down."))