sleet 0.1.0

A fleet manager for SlateDB databases
Documentation
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "sleet response",
  "description": "A response from any subcommand run with `--format json`, one variant\nper command. Exists to generate the single response schema: each\ncommand's response is a named definition under `$defs`, so consumers\nvalidate against e.g. `#/$defs/StatusResponse`.",
  "anyOf": [
    {
      "description": "`sleet status`.",
      "$ref": "#/$defs/StatusResponse"
    },
    {
      "description": "`sleet register`.",
      "$ref": "#/$defs/RegisterResponse"
    },
    {
      "description": "`sleet mirror sync`.",
      "$ref": "#/$defs/MirrorSyncResponse"
    },
    {
      "description": "`sleet mirror restore`.",
      "$ref": "#/$defs/MirrorRestoreResponse"
    }
  ],
  "$defs": {
    "DatabaseStatus": {
      "description": "One registered database and its service placement.",
      "type": "object",
      "properties": {
        "queue": {
          "description": "Compaction queue depth from `.compactions`; present only with\n`sleet status --compactions`.",
          "anyOf": [
            {
              "$ref": "#/$defs/QueueStatus"
            },
            {
              "type": "null"
            }
          ]
        },
        "services": {
          "description": "Placement of each configured service.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ServicePlacement"
          }
        },
        "url": {
          "description": "The database's canonical URL.",
          "type": "string"
        }
      },
      "required": [
        "url",
        "services"
      ]
    },
    "HumanDuration": {
      "description": "A duration in humantime form, e.g. \"10s\", \"5m\", \"1h 30m\".",
      "type": "string",
      "pattern": "^([0-9]+ *[a-zµ]+ *)+$"
    },
    "MirrorRestoreResponse": {
      "title": "sleet mirror restore response",
      "description": "The `sleet mirror restore` response.",
      "type": "object",
      "properties": {
        "backup": {
          "description": "The backup root restored from.",
          "type": "string"
        },
        "bytes_copied": {
          "description": "Data bytes copied.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "destination": {
          "description": "The destination root restored into.",
          "type": "string"
        },
        "manifest_id": {
          "description": "The restore point committed as the destination's head.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "manifests_committed": {
          "description": "Manifests committed.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "objects_copied": {
          "description": "Data objects copied.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        }
      },
      "required": [
        "backup",
        "destination",
        "manifest_id",
        "manifests_committed",
        "objects_copied",
        "bytes_copied"
      ]
    },
    "MirrorStatus": {
      "description": "One `(database, target)` mirror's lag, from the source and\ndestination heads.",
      "type": "object",
      "properties": {
        "database": {
          "description": "The source database's canonical URL.",
          "type": "string"
        },
        "dest_manifest_id": {
          "description": "The destination's latest manifest id (the watermark).",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint64",
          "minimum": 0
        },
        "destination": {
          "description": "The destination root the target maps this database to.",
          "type": "string"
        },
        "error": {
          "description": "Why lag could not be read, if it could not.",
          "type": [
            "string",
            "null"
          ]
        },
        "manifests_behind": {
          "description": "Manifests the destination is behind.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint64",
          "minimum": 0
        },
        "seconds_behind": {
          "description": "Estimated seconds of lag: source and target sequence numbers\nmapped through the source's sequence tracker.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint64",
          "minimum": 0
        },
        "source_manifest_id": {
          "description": "The source's latest manifest id.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint64",
          "minimum": 0
        },
        "target": {
          "description": "The target's name.",
          "type": "string"
        },
        "wal_behind": {
          "description": "WAL ids the destination is behind.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint64",
          "minimum": 0
        }
      },
      "required": [
        "database",
        "target",
        "destination"
      ]
    },
    "MirrorSyncResponse": {
      "title": "sleet mirror sync response",
      "description": "The `sleet mirror sync` response: one pass, plus the prune that\nfollows it when retention is set.",
      "type": "object",
      "properties": {
        "bytes_copied": {
          "description": "Data bytes copied; zero for the rclone copier.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "committed": {
          "description": "False when the destination was already at the source's head.",
          "type": "boolean"
        },
        "database": {
          "description": "The source database's canonical URL.",
          "type": "string"
        },
        "destination": {
          "description": "The destination root.",
          "type": "string"
        },
        "head": {
          "description": "The manifest id the destination head ended at.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "manifests_committed": {
          "description": "Manifests written to the destination.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "objects_copied": {
          "description": "Data objects copied.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "pruned_manifests": {
          "description": "Manifests the prune deleted; zero without retention.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "pruned_objects": {
          "description": "Data objects the prune deleted; zero without retention.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "target": {
          "description": "The target's name.",
          "type": "string"
        }
      },
      "required": [
        "database",
        "target",
        "destination",
        "head",
        "committed",
        "manifests_committed",
        "objects_copied",
        "bytes_copied",
        "pruned_manifests",
        "pruned_objects"
      ]
    },
    "NodeStatus": {
      "description": "One fleet member.",
      "type": "object",
      "properties": {
        "heartbeat_age": {
          "description": "Age of the heartbeat object.",
          "$ref": "#/$defs/HumanDuration"
        },
        "live": {
          "description": "Whether the heartbeat is younger than `heartbeat_timeout`.",
          "type": "boolean"
        },
        "node_id": {
          "description": "The node's id, from its heartbeat object name.",
          "type": "string"
        },
        "services": {
          "description": "Services the node offers, from its heartbeat object name.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/Service"
          }
        },
        "slatedb_version": {
          "description": "The slatedb version the node runs, from the heartbeat body;\nabsent if the body was unreadable.",
          "type": [
            "string",
            "null"
          ]
        },
        "sleet_version": {
          "description": "The sleet version the node runs, from the heartbeat body; absent\nif the body was unreadable.",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "node_id",
        "live",
        "heartbeat_age",
        "services"
      ]
    },
    "QueueStatus": {
      "description": "Compaction queue depth for one database.",
      "type": "object",
      "properties": {
        "claimable": {
          "description": "Jobs waiting for a worker.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        },
        "running": {
          "description": "Jobs a worker is executing.",
          "type": "integer",
          "format": "uint64",
          "minimum": 0
        }
      },
      "required": [
        "claimable",
        "running"
      ]
    },
    "RegisterResponse": {
      "title": "sleet register response",
      "description": "The `sleet register` response.",
      "type": "object",
      "properties": {
        "created": {
          "description": "False if the database was already registered.",
          "type": "boolean"
        },
        "file": {
          "description": "The registry object written, relative to the fleet root.",
          "type": "string"
        },
        "url": {
          "description": "The canonicalized database URL.",
          "type": "string"
        }
      },
      "required": [
        "url",
        "file",
        "created"
      ]
    },
    "Service": {
      "description": "A per-database service.",
      "oneOf": [
        {
          "description": "Garbage collection.",
          "type": "string",
          "const": "gc"
        },
        {
          "description": "Standalone compaction coordinator (RFC-0025).",
          "type": "string",
          "const": "compactor-coordinator"
        },
        {
          "description": "Compaction workers (RFC-0025).",
          "type": "string",
          "const": "compaction-workers"
        },
        {
          "description": "Mirroring to per-database targets (RFC 0002).",
          "type": "string",
          "const": "mirror"
        }
      ]
    },
    "ServicePlacement": {
      "description": "Where one database service runs: the top of the service's rendezvous\nranking. One node for `gc` and `compactor-coordinator`, the top\n`count` nodes for `compaction-workers`. Empty means no live node\noffers the service.",
      "type": "object",
      "properties": {
        "nodes": {
          "description": "The owning nodes, best-ranked first.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "service": {
          "description": "The placed service.",
          "$ref": "#/$defs/Service"
        }
      },
      "required": [
        "service",
        "nodes"
      ]
    },
    "StatusResponse": {
      "title": "sleet status response",
      "description": "The `sleet status` response, derived from the fleet root: node\nliveness, roles, and versions from `nodes/`, registered databases\nfrom `dbs/`, and placement by computing the same rendezvous ranking\nthe nodes do.",
      "type": "object",
      "properties": {
        "databases": {
          "description": "Registered databases and their service placement.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/DatabaseStatus"
          }
        },
        "mirrors": {
          "description": "Per-target mirror lag; present only with `sleet status\n--mirrors`.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/MirrorStatus"
          }
        },
        "nodes": {
          "description": "Every fleet member with a heartbeat object.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/NodeStatus"
          }
        },
        "warnings": {
          "description": "Fleet-level problems: registry entries that alias the same\ndatabase, services no live node offers, and the like.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "nodes",
        "databases"
      ]
    }
  }
}