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/87/subscribe arg #88

Merged
merged 7 commits into from
Sep 11, 2020
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ sudo: required
services: docker
language: clojure
before_install:
- docker pull clojusc/mesos
- docker run -d -p 5050:5050 clojusc/mesos
- docker pull clojusc/mesos:1.0.1
- docker run -d -p 5050:5050 clojusc/mesos:1.0.1
script:
- lein check-deps || true # log outdated libraries, but don't exit with error.
- lein travis
dist: trusty
jdk:
- oraclejdk8
#- oraclejdk7
Expand Down
69 changes: 66 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ Meson API Reference docs are available here:

## Usage [↟](#contents)

### Provide Framework, Use Default Handlers and Default/Localhost Mesos

Subscribe a framework with default handlers to a localhost Mesos master.

Purpose: Development/testing.

Start up the REPL (and be sure to have a running Mesos deployment), then:

```clj
Expand All @@ -89,9 +95,66 @@ Start up the REPL (and be sure to have a running Mesos deployment), then:
```

Since `subscribe` was only called with the framework setup info and didn't also
pass a handler function, it will use the default framework handler (basically
just a logging message for each scheduler event). Any real-world Meson
framework will have its own handler and pass it to the `subscribe` function.
pass a handler function or mesos master URL, it will use the default framework handler (basically
just a logging message for each scheduler event) and subscribe to localhost. Any real-world Meson
framework will have its own handler, pass it to the `subscribe` function, and also pass a Mesos master
scheduler api URL.

### Provide Framework and Handlers, Use Default/Localhost Mesos

Subscribe a framework, providing your own handler functions, to a localhost Mesos master.

Purpose: Development/testing.

* Define your own handler functions as multi-methods. (See `meson.api.scheduler.handlers` for an example.)
* Same requires and framework definition as previous section.
* Subscribe command is now:

```clj
(def channel (scheduler/subscribe framework-info my-handlers))
```

### Provide Framework, Handlers, and Mesos Master

Subscribe a framework, providing your own handler functions, to a remote Mesos master.

Purpose: Production use.

* Define your own handler functions as multi-methods. (See `meson.api.scheduler.handlers` for an example.)
* Same requires and framework definition as previous section.
* Retrieve the URL to your remote Mesos master scheduler api.
* Subscribe command is now:

```clj
(def channel (scheduler/subscribe framework-info my-handlers "https://my-mesos-master.org:5050/api/v1/scheduler"))
```

### Provide Framework, Mesos Master, Use Default Handlers

Subscribe a framework, with default handler functions, to a remote Mesos master.

This is a scenario in which you want to verify you can successfully subscribe to a remote mesos master,
but have not written handlers yet.

**CAUTION**: The default handlers do NOT decline offers. Once subscribed, all offers will go to the framework and wait,
preventing other frameworks from getting offers.

Purpose: Development/testing.

* Require an additional meson library. (see code below)
* Same framework definition as previous section.
* Retrieve the URL to your remote Mesos master scheduler api.
* Subscribe command is now:

```clojure
(require '[clojure.core.async :as async]
'[clojure.pprint :refer [pprint]]
'[meson.api.scheduler.core :as scheduler]
'[meson.api.scheduler.handlers :as scheduler-handlers])
(def channel (scheduler/subscribe framework-info scheduler-handlers/default "https://my-mesos-master.org:5050/api/v1/scheduler"))
```

### Subscription Results

Regardless, a channel is returned in both cases, and that can be interacted
with directly in the REPL, for example:
Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
:exclusions [org.clojure/clojure]
:plugins [
[jonase/eastwood "0.2.4"]
[lein-ancient "0.6.10"]
[lein-ancient "0.6.15"]
[lein-bikeshed "0.4.1"]
[lein-kibit "0.1.5"]
[lein-shell "0.5.0"]
Expand All @@ -58,7 +58,7 @@
:dependencies [
[codox-theme-rdash "0.1.2"]]
:plugins [
[lein-codox "0.10.3"]
[lein-codox "0.10.7"]
[lein-simpleton "1.3.0"]]
:codox {
:project {
Expand Down Expand Up @@ -89,7 +89,7 @@
"travis" [
"do"
["version"]
["check-deps"]
; ["check-deps"] ; when a package is outdated, do stops execution.
["compile"]
["uberjar"]
["test" ":unit"]
Expand Down
8 changes: 7 additions & 1 deletion src/meson/api/scheduler/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
(recur)))))

(defn subscribe
"Subscribe a framework to a Mesos master scheduler.
Provide a framework [`args`] or a minimal default is used.
Provide handlers [`handler`] or defaults are used which log messages received only.
Provide a url to the mesos master [`mesos-master`] scheduler api or localhost is used."
;; XXX arity-0 is just temporary, to ease dev
([]
(subscribe {:framework-info {
Expand All @@ -56,11 +60,13 @@
([args]
(subscribe args scheduler-handlers/default))
([args handler]
(subscribe args handler "http://localhost:5050/api/v1/scheduler"))
([args handler mesos-master]
(log/info "args:" args)
(let [chan (async/chan)
data (message/create-call :subscribe args)
prepared-data (records/prepare-data data)
response (httpc/post "http://localhost:5050/api/v1/scheduler"
response (httpc/post mesos-master
(assoc http/stream-options
:form-params prepared-data))
stream (:body response)]
Expand Down