File: DESIGN.md

package info (click to toggle)
golang-github-mesos-mesos-go 0.0.6%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 11,724 kB
  • sloc: makefile: 163
file content (172 lines) | stat: -rw-r--r-- 5,532 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
## Overview

### Dependencies

Ideals:
- keep it easy for framework writers to integrate w/ mesos-go
- keep it easy for the maintainers of mesos-go

Some guideposts:
- severely limit dependencies on 3rd party libraries
- prefer code generators to compile-time dependencies
- when adding a code generator, add a Makefile target so that it is easily runnable

## Target Audience: Framework Writers

### Developer A: high-level framework writer

**This is a longer-term goal.**
The more immediate need is for a low-level API (see the Developer B section).

Framework-writer goals:
  - wants to provide minimal initial configuration
  - wants to consume a simple event stream
  - wants to inject events into a managed event queue (easy state machine semantics)

One approach is a polling based API, where `Event` objects are produced by some client:

```go
func main() {
...
	c := client.New(scheduler-client-options..) // package scheduler/client
	eventSource := c.ListenWithReconnect()
	ctx := context.TODO()
	for {
		event, err := eventSource.Yield(ctx)
		if err != nil {
			if err == io.EOF {
				// graceful driver termination
				break
			}
			log.Fatalf("FATAL: unrecoverable driver error: %v", err)
		}
		processEvent(event)
	}
	log.Println("scheduler terminating")
}

func processEvent(c *client.Client, ctx context.Context, e events.Event) {
...
	switch e := e.(type) {
	case *mesos.Event:
		... // standard v1 HTTP API Mesos event
	case *client.Event:
		... // high-level driver API event (connected, disconnected, reconnected, ...)
	case *customFramework.Event:
		... // custom framework-generated event, previously annouced via Announcer
	}
...
	if ... {
		go func() {
			// do some time-intensive task and process the result
			// on the driver event queue (easy serialization)
			c.Announce(ctx, &customEvent{...})
		}()
	}
...
	c.AcceptResources(...)
}
```

#### API

##### package events

```go
type (
	// Event objects implement this "marker" interface, which has no meaningful
	// functionality other than to declare that some object is, in fact, an Event.
	// Framework writers may implement their own event objects and for dispatching
	// via some common EventBus.
	Event interface {
		IsEventObject()
	}

	Source interface {
		// Event returns the next available event, blocking until an event becomes available
		// or until the specified context is cancelled. Guaranteed to return a non-nil event
		// if error is nil. Returns an io.EOF error upon graceful termination of the source.
		Yield(Context) (Event, error)
	}

	SourceFunc func(Context) (Event, error) // implements Source interface

	Announcer interface {
		// Announce communicates the occurrence of the event, blocking until the event is
		// successfully announced or until the specified context is cancelled.
		Announce(Context, Event) error
	}

	AnnouncerFunc func(Context, Event) error // implements Announcer interface
)
```

Some possible approaches:
- polling-style API (documented above)
  - framework-writer periodically invokes `client.Event()` to pull the next incoming event from a driver-managed queue
  - pro: more minimal interface than callbacks; API will be more stable over time
  - pro: non-channel API allows scheduler the freedom to re-order the event queue until the last possible moment
  - pro: scheduler can still implement a high-level event-based state machine (just like the chan-based API)
  - con: framework writer is not "forced" to be made aware of new event types (vs. callback-style API)

- channel-based API
  - pro: more minimal interface than callbacks; API will be more stable over time
  - pro: integrates well with select-based event loops
  - pro: scheduler can still implement a high-level event-based state machine (just like the polling-based API)
  - con: chan-based APIs are often not consumed correctly by callers, even when properly documented
  - con: lack of Context on a per-read basis from a Source (less flexible API)
  - con: framework writer is not "forced" to be made aware of new event types (vs. callback-style API)

- callback-style API
  - similar to old mesos-bindings, framework writer submits an `EventHandler`
  - scheduler driver invokes `EventHandler.Handle()` for incoming events
  - pro: a rich interface for EventHandler forces the user to consider all possible event types
  - con: the driver yields total program control to the framework-writer
  - con: new events require EventHandler API changes

### Developer B: low-level framework writer

Goals:
  - wants to manage mesos per-call details (specific codecs, headers, etc)
  - wants to manage entire registration lifecycle (total control over client state)
  - WIP in #211, for example:

```go
func main() {
...
	for {
		err := eventLoop(cli.Do(subscribe, httpcli.Close(true)))
		if err != nil {
			log.Println(err)
		} else {
			log.Println("disconnected")
		}
		log.Println("reconnecting..")
	}
...
}

func eventLoop(events encoding.Decoder, conn io.Closer, err error) error {
	defer func() {
		if conn != nil {
			conn.Close()
		}
	}()
	for err == nil {
		var e scheduler.Event
		if err = events.Decode(&e); err != nil {
			if err == io.EOF {
				err = nil
			}
			continue
		}

		switch e.GetType().Enum() {
		case scheduler.Event_SUBSCRIBED.Enum():
...
```

## References

* [MESOS/scheduler v1 HTTP API](https://github.com/apache/mesos/blob/master/docs/scheduler-http-api.md)
* [MESOS/executor HTTP API Design](https://docs.google.com/document/d/1dFmTrSZXCo5zj8H8SkJ4HT-V0z2YYnEZVV8Fd_-AupM/edit#heading=h.r7o3o3roqg12)