@abloatai/ablo 0.35.0 → 0.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +713 -629
- package/README.md +56 -519
- package/bin/ablo.cjs +39 -0
- package/dist/BaseSyncedStore.d.ts +24 -4
- package/dist/BaseSyncedStore.js +53 -37
- package/dist/Database.d.ts +8 -20
- package/dist/Database.js +61 -59
- package/dist/InstanceCache.d.ts +6 -2
- package/dist/InstanceCache.js +18 -16
- package/dist/Model.d.ts +17 -7
- package/dist/Model.js +17 -7
- package/dist/ModelRegistry.d.ts +4 -0
- package/dist/ModelRegistry.js +17 -15
- package/dist/NetworkMonitor.d.ts +3 -1
- package/dist/NetworkMonitor.js +7 -5
- package/dist/SyncClient.d.ts +5 -15
- package/dist/SyncClient.js +60 -57
- package/dist/client/Ablo.js +30 -19
- package/dist/client/createInternalComponents.d.ts +4 -0
- package/dist/client/createInternalComponents.js +8 -2
- package/dist/client/createModelProxy.d.ts +21 -1
- package/dist/client/createModelProxy.js +123 -57
- package/dist/client/humans.d.ts +30 -9
- package/dist/client/humans.js +45 -19
- package/dist/client/reactiveEngine.d.ts +16 -11
- package/dist/client/reactiveEngine.js +113 -335
- package/dist/client/storeCluster.d.ts +47 -0
- package/dist/client/storeCluster.js +118 -0
- package/dist/client/storeLifecycle.d.ts +61 -0
- package/dist/client/storeLifecycle.js +231 -0
- package/dist/context.d.ts +13 -0
- package/dist/context.js +23 -0
- package/dist/core/index.d.ts +1 -1
- package/dist/docs/catalog.js +6 -3
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -2
- package/dist/query/client.d.ts +3 -0
- package/dist/query/client.js +6 -5
- package/dist/react/AbloProvider.d.ts +13 -1
- package/dist/react/AbloProvider.js +5 -2
- package/dist/react/context.d.ts +2 -2
- package/dist/react/createAbloReact.d.ts +56 -0
- package/dist/react/createAbloReact.js +51 -0
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +3 -0
- package/dist/react/useAblo.d.ts +9 -2
- package/dist/react/useAblo.js +25 -7
- package/dist/schema/coordination.js +5 -1
- package/dist/schema/index.d.ts +1 -0
- package/dist/schema/index.js +4 -0
- package/dist/schema/select.js +3 -0
- package/dist/schema/serialize.js +3 -0
- package/dist/source/adapter.d.ts +7 -5
- package/dist/source/adapter.js +7 -5
- package/dist/source/index.d.ts +1 -1
- package/dist/source/index.js +1 -1
- package/dist/{core/storeContract.d.ts → storeContract.d.ts} +5 -5
- package/dist/{core → stores}/DatabaseManager.d.ts +3 -1
- package/dist/{core → stores}/DatabaseManager.js +13 -12
- package/dist/{core → stores}/StoreManager.d.ts +5 -3
- package/dist/{core → stores}/StoreManager.js +24 -22
- package/dist/stores/SyncActionStore.d.ts +3 -1
- package/dist/stores/SyncActionStore.js +9 -7
- package/dist/sync/BootstrapFetcher.d.ts +4 -0
- package/dist/sync/BootstrapFetcher.js +28 -26
- package/dist/sync/OnDemandLoader.d.ts +3 -0
- package/dist/sync/OnDemandLoader.js +1 -0
- package/dist/sync/bootstrapApply.d.ts +3 -0
- package/dist/sync/bootstrapApply.js +2 -2
- package/dist/sync/deltaPipeline.d.ts +13 -12
- package/dist/sync/deltaPipeline.js +21 -4
- package/dist/sync/groupChange.d.ts +3 -0
- package/dist/sync/groupChange.js +16 -14
- package/dist/sync/participants.d.ts +19 -2
- package/dist/sync/participants.js +3 -1
- package/dist/sync/schemas.d.ts +2 -1
- package/dist/sync/schemas.js +3 -3
- package/dist/syncLog/contract.d.ts +20 -0
- package/dist/syncLog/contract.js +19 -0
- package/dist/syncLog/index.d.ts +1 -0
- package/dist/syncLog/index.js +1 -0
- package/dist/transaction/auth/capability.d.ts +35 -0
- package/dist/transaction/auth/capability.js +25 -0
- package/dist/transaction/coordination/awaitClaimGrant.d.ts +7 -0
- package/dist/transaction/coordination/awaitClaimGrant.js +12 -0
- package/dist/transaction/coordination/claimHeartbeatLoop.d.ts +34 -0
- package/dist/transaction/coordination/claimHeartbeatLoop.js +20 -0
- package/dist/transaction/coordination/index.d.ts +4 -4
- package/dist/transaction/coordination/index.js +4 -3
- package/dist/transaction/coordination/locator.d.ts +23 -2
- package/dist/transaction/coordination/locator.js +22 -2
- package/dist/transaction/coordination/schema.d.ts +125 -62
- package/dist/transaction/coordination/schema.js +228 -64
- package/dist/transaction/coordination/targetConflict.js +32 -28
- package/dist/transaction/errorCodes.d.ts +2 -2
- package/dist/transaction/errorCodes.js +13 -9
- package/dist/transaction/plugin.d.ts +95 -2
- package/dist/transaction/plugin.js +21 -2
- package/dist/transaction/resources/httpResources.d.ts +57 -2
- package/dist/transaction/resources/modelOperations.d.ts +148 -40
- package/dist/transaction/resources/where.d.ts +16 -0
- package/dist/transaction/resources/where.js +45 -0
- package/dist/transaction/schema/field.d.ts +12 -18
- package/dist/transaction/schema/fieldRef.d.ts +38 -0
- package/dist/transaction/schema/fieldRef.js +11 -0
- package/dist/transaction/schema/openapi.d.ts +16 -15
- package/dist/transaction/schema/openapi.js +186 -25
- package/dist/transaction/schema/relation.d.ts +7 -2
- package/dist/transaction/schema/schema.d.ts +27 -0
- package/dist/transaction/schema/schema.js +20 -0
- package/dist/transaction/transactions/settlement/commitEnvelope.d.ts +1 -1
- package/dist/transaction/transactions/settlement/pendingWrite.d.ts +1 -1
- package/dist/transaction/transport/httpClient.d.ts +9 -1
- package/dist/transaction/transport/httpClient.js +1 -0
- package/dist/transaction/transport/httpTransport.js +156 -44
- package/dist/transaction/transport/wsTransport.d.ts +2 -4
- package/dist/transaction/transport/wsTransport.js +16 -10
- package/dist/transaction/types/streams.d.ts +10 -0
- package/dist/transaction/utils/duration.d.ts +25 -0
- package/dist/transaction/utils/duration.js +32 -0
- package/dist/transaction/wire/accountResponses.d.ts +69 -0
- package/dist/transaction/wire/accountResponses.js +36 -1
- package/dist/transaction/wire/auth.d.ts +9 -2
- package/dist/transaction/wire/auth.js +7 -1
- package/dist/transaction/wire/claims.d.ts +164 -97
- package/dist/transaction/wire/claims.js +126 -28
- package/dist/transaction/wire/commit.d.ts +1 -1
- package/dist/transaction/wire/feedEvent.d.ts +27 -0
- package/dist/transaction/wire/feedEvent.js +27 -1
- package/dist/transaction/wire/frames.d.ts +2 -2
- package/dist/transaction/wire/inboundFrames.d.ts +12 -2
- package/dist/transaction/wire/index.d.ts +10 -6
- package/dist/transaction/wire/index.js +12 -3
- package/dist/transaction/wire/modelMutations.d.ts +31 -0
- package/dist/transaction/wire/modelMutations.js +52 -0
- package/dist/transaction/wire/modelShape.d.ts +78 -0
- package/dist/transaction/wire/modelShape.js +74 -0
- package/dist/transactions/mutations/MutationQueue.d.ts +6 -0
- package/dist/transactions/mutations/MutationQueue.js +55 -45
- package/dist/transactions/mutations/commitPayload.d.ts +3 -2
- package/dist/transactions/mutations/commitPayload.js +5 -5
- package/dist/transactions/mutations/deltaConfirmation.d.ts +4 -0
- package/dist/transactions/mutations/deltaConfirmation.js +10 -8
- package/dist/transactions/mutations/replayValidation.d.ts +2 -1
- package/dist/transactions/mutations/replayValidation.js +3 -2
- package/dist/{core → views}/QueryView.d.ts +1 -1
- package/dist/{core → views}/QueryView.js +1 -1
- package/dist/{core → views}/ViewRegistry.d.ts +1 -1
- package/dist/{core/queryUtils.d.ts → views/incrementalView.d.ts} +6 -6
- package/dist/{core/queryUtils.js → views/incrementalView.js} +6 -6
- package/docs/agents.md +1 -1
- package/docs/api-keys.md +6 -6
- package/docs/api.md +5 -43
- package/docs/audit.md +4 -3
- package/docs/cli.md +11 -11
- package/docs/client-behavior.md +4 -4
- package/docs/concurrency-convention.md +28 -42
- package/docs/coordination.md +235 -83
- package/docs/data-sources.md +4 -4
- package/docs/debugging.md +34 -12
- package/docs/deployment.md +8 -8
- package/docs/examples/scoped-agent.md +3 -3
- package/docs/groups.md +57 -3
- package/docs/guarantees.md +37 -10
- package/docs/how-it-works.md +29 -5
- package/docs/idempotency.md +6 -6
- package/docs/identity.md +22 -23
- package/docs/index.md +8 -8
- package/docs/integration-guide.md +14 -3
- package/docs/mcp.md +7 -7
- package/docs/migration.md +34 -15
- package/docs/projects.md +1 -1
- package/docs/react.md +19 -8
- package/docs/sessions.md +1 -1
- package/docs/webhooks.md +9 -9
- package/llms.txt +4 -4
- package/package.json +13 -20
- package/dist/cli.cjs +0 -288600
- package/dist/testing/fixtures/bootstrap.d.ts +0 -49
- package/dist/testing/fixtures/bootstrap.js +0 -59
- package/dist/testing/fixtures/deltas.d.ts +0 -83
- package/dist/testing/fixtures/deltas.js +0 -136
- package/dist/testing/fixtures/httpResponses.d.ts +0 -70
- package/dist/testing/fixtures/httpResponses.js +0 -90
- package/dist/testing/fixtures/models.d.ts +0 -83
- package/dist/testing/fixtures/models.js +0 -272
- package/dist/testing/helpers/reactWrapper.d.ts +0 -69
- package/dist/testing/helpers/reactWrapper.js +0 -67
- package/dist/testing/helpers/syncEngineHarness.d.ts +0 -54
- package/dist/testing/helpers/syncEngineHarness.js +0 -73
- package/dist/testing/helpers/wait.d.ts +0 -30
- package/dist/testing/helpers/wait.js +0 -49
- package/dist/testing/index.d.ts +0 -23
- package/dist/testing/index.js +0 -33
- package/dist/testing/mocks/FakeDatabase.d.ts +0 -18
- package/dist/testing/mocks/FakeDatabase.js +0 -10
- package/dist/testing/mocks/MockMutationExecutor.d.ts +0 -87
- package/dist/testing/mocks/MockMutationExecutor.js +0 -186
- package/dist/testing/mocks/MockNetworkMonitor.d.ts +0 -20
- package/dist/testing/mocks/MockNetworkMonitor.js +0 -46
- package/dist/testing/mocks/MockSyncContext.d.ts +0 -51
- package/dist/testing/mocks/MockSyncContext.js +0 -72
- package/dist/testing/mocks/MockSyncStore.d.ts +0 -88
- package/dist/testing/mocks/MockSyncStore.js +0 -171
- package/dist/testing/mocks/MockWebSocket.d.ts +0 -71
- package/dist/testing/mocks/MockWebSocket.js +0 -118
- package/docs/interaction-model.md +0 -99
- /package/dist/{core → query}/QueryProcessor.d.ts +0 -0
- /package/dist/{core → query}/QueryProcessor.js +0 -0
- /package/dist/{core/storeContract.js → storeContract.js} +0 -0
- /package/dist/{core → stores}/openIDBWithTimeout.d.ts +0 -0
- /package/dist/{core → stores}/openIDBWithTimeout.js +0 -0
- /package/dist/{source → transaction}/footprint.d.ts +0 -0
- /package/dist/{source → transaction}/footprint.js +0 -0
- /package/dist/{core → views}/ViewRegistry.js +0 -0
package/docs/coordination.md
CHANGED
|
@@ -38,21 +38,36 @@ Reads stay open: reading a claimed row is allowed unless the caller explicitly
|
|
|
38
38
|
asks for claimed gating. A claim carries a TTL so a crashed holder is
|
|
39
39
|
auto-released and the queue advances.
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
>
|
|
48
|
-
>
|
|
49
|
-
>
|
|
50
|
-
>
|
|
51
|
-
>
|
|
52
|
-
>
|
|
53
|
-
>
|
|
54
|
-
|
|
55
|
-
|
|
41
|
+
A claim is also as narrow as you make it. Name a part of the row — a `field`, a
|
|
42
|
+
`path` into a document, a `range` of text — and exclusion follows the target:
|
|
43
|
+
**two claims on non-overlapping parts of the same row are both granted**, and
|
|
44
|
+
only overlapping targets queue behind each other. See
|
|
45
|
+
[claiming part of a row](#claiming-part-of-a-row).
|
|
46
|
+
|
|
47
|
+
> **Transport: both wait — only the mechanism differs.** `claim({ id })` means
|
|
48
|
+
> "serialize me behind whoever holds this row" on every transport. The
|
|
49
|
+
> realtime client parks the promise on its socket and resolves it on the grant
|
|
50
|
+
> frame. The **stateless HTTP client** (`Ablo({ transport: 'http' })` — the
|
|
51
|
+
> transport server-side agents use) holds the same place in the same
|
|
52
|
+
> server-side FIFO line; under the hood it heartbeats its queued ticket until
|
|
53
|
+
> the line moves, then re-reads the row and resolves to the same held claim.
|
|
54
|
+
> The same snippet works on both.
|
|
55
|
+
>
|
|
56
|
+
> Shape the wait the same way on either transport: cap it with
|
|
57
|
+
> `waitTimeoutMs` (rejects `grant_timeout` and leaves the line), cancel it
|
|
58
|
+
> from outside with `signal` (an `AbortSignal`; rejects
|
|
59
|
+
> `claim_wait_aborted`), bound the line you'll join with `maxQueueDepth`
|
|
60
|
+
> (`queue_too_deep`), or skip waiting entirely with `queue: false` — the
|
|
61
|
+
> try-claim, which resolves `null` when the target is held (a declined try
|
|
62
|
+
> is not an error) and takes no place in line. For
|
|
63
|
+
> callers that manage the wait themselves, the ticket surface remains:
|
|
64
|
+
> `ablo.claims.retrieve({ claimId })` polls a ticket to its grant,
|
|
65
|
+
> `ablo.claims.heartbeat({ claimId })` keeps the slot, and
|
|
66
|
+
> `ablo.claims.release({ claimId })` leaves the line. And contention can be
|
|
67
|
+
> treated as a signal rather than a wait at all — catch the error, re-read
|
|
68
|
+
> fresh, regenerate, retry; see [Errors](#errors) for the loop sketch.
|
|
69
|
+
|
|
70
|
+
This reference opens with [the model](#the-model-three-layers-one-decision) — the
|
|
56
71
|
one answer to "how do two agents not clobber each other" — then covers the
|
|
57
72
|
[claim state object](#the-claim-state-object), the SDK [methods](#methods)
|
|
58
73
|
(`claim` · `claim.state` · `claim.queue` · `claim.release` · [writing under a
|
|
@@ -83,7 +98,7 @@ claim](#writing-under-a-claim)), and the [errors](#errors) you can catch.
|
|
|
83
98
|
|
|
84
99
|
---
|
|
85
100
|
|
|
86
|
-
## The model
|
|
101
|
+
## The model: three layers, one decision
|
|
87
102
|
|
|
88
103
|
Ablo has exactly **three** coordination layers. They are **not** three competing
|
|
89
104
|
answers to the same question — they stack, and only one of them is a decision you
|
|
@@ -91,9 +106,9 @@ make:
|
|
|
91
106
|
|
|
92
107
|
| layer | kind | what it does | enforces? |
|
|
93
108
|
|---|---|---|---|
|
|
94
|
-
| **Presence** (`claim.state`, observers) | observation | Broadcasts who is working where, live. Renders cursors / "agent X is editing." Reading or claiming a row auto-enrolls you in its sync group, so `claim.state({ id })` observes co-participants from any client (browser or Node agent) with no manual subscribe step. | **No.** Advisory only
|
|
95
|
-
| **Claim** (`claim`/`claim.queue`/`claim.release`) | pessimistic | Reserves a row for one participant. Foreign writers are rejected server-side; contenders join a fair FIFO queue. | **Yes**, between participants
|
|
96
|
-
| **Stale-context** (`readAt` + `onStale`) | optimistic (LWW) | On commit, rejects a write whose snapshot is older than the row's latest delta. Last-writer-wins detection. | **Yes**, against time
|
|
109
|
+
| **Presence** (`claim.state`, observers) | observation | Broadcasts who is working where, live. Renders cursors / "agent X is editing." Reading or claiming a row auto-enrolls you in its sync group, so `claim.state({ id })` observes co-participants from any client (browser or Node agent) with no manual subscribe step. | **No.** Advisory only: it never blocks or rejects a write. |
|
|
110
|
+
| **Claim** (`claim`/`claim.queue`/`claim.release`) | pessimistic | Reserves a row for one participant. Foreign writers are rejected server-side; contenders join a fair FIFO queue. | **Yes**, between participants: mutual exclusion. |
|
|
111
|
+
| **Stale-context** (`readAt` + `onStale`) | optimistic (LWW) | On commit, rejects a write whose snapshot is older than the row's latest delta. Last-writer-wins detection. | **Yes**, against time: lost-update detection. |
|
|
97
112
|
|
|
98
113
|
**The one decision: do you hold the row across a slow gap (read → LLM call →
|
|
99
114
|
write)?**
|
|
@@ -205,14 +220,15 @@ a model row. It's what `claim.state()` returns and what observers render.
|
|
|
205
220
|
| field | type | description |
|
|
206
221
|
|---|---|---|
|
|
207
222
|
| `id` | `string` | The claim id (distinct from the target row id). |
|
|
208
|
-
| `status` | `ClaimStatus` | `'active' \| 'queued' \| 'committed' \| 'expired' \| 'canceled'`. `active` = the holder; `queued` = waiting in line behind it. The other three are terminal states you only see on a claim you just finished
|
|
209
|
-
| `target` | `EntityRef` | What is being coordinated (`{ model, id
|
|
210
|
-
| `description` | `string` | Peer-visible description of the work
|
|
223
|
+
| `status` | `ClaimStatus` | `'active' \| 'queued' \| 'committed' \| 'expired' \| 'canceled'`. `active` = the holder; `queued` = waiting in line behind it. The other three are terminal states you only see on a claim you just finished: `committed` (released after a successful write), `expired` (TTL lapsed), `canceled` (released early). |
|
|
224
|
+
| `target` | `EntityRef` | What is being coordinated: the row (`{ model, id }`) plus any sub-row narrowing the holder claimed: `path?`, `range?`, `field?`, `fields?`, and opaque `meta?`. A target with no narrowing covers the whole row. |
|
|
225
|
+
| `description` | `string` | Peer-visible description of the work: the sentence another participant reads to decide whether to wait or move on (`'rewriting the risk section'`). Defaults to `'editing'`. |
|
|
211
226
|
| `heldBy` | `string` | Participant holding (or waiting on) it (e.g. `'agent:forecaster'`). |
|
|
212
|
-
| `participantKind` | `'user' \| 'agent' \| 'system'` | Who's behind it
|
|
213
|
-
| `position` | `number?` | 0-based place in the FIFO line
|
|
214
|
-
| `createdAt` | `number?` | Ms-epoch the holder opened it. Optional
|
|
215
|
-
| `expiresAt` | `number` | Ms-epoch the server reclaims it if the holder goes **silent**. Renewed automatically while the holder's connection stays alive
|
|
227
|
+
| `participantKind` | `'user' \| 'agent' \| 'system'` | Who's behind it: a human (`user`), an AI (`agent`), or automated infrastructure (`system`). |
|
|
228
|
+
| `position` | `number?` | 0-based place in the FIFO line: present only when `status: 'queued'` (`0` = next behind the holder). |
|
|
229
|
+
| `createdAt` | `number?` | Ms-epoch the holder opened it. Optional: derived shapes may omit it. |
|
|
230
|
+
| `expiresAt` | `number` | Ms-epoch the server reclaims it if the holder goes **silent**. Renewed automatically while the holder's connection stays alive: a crash-cleanup floor, not a duration you size. |
|
|
231
|
+
| `meta` | `Record<string, unknown>?` | The claim's open metadata bag, as it stands on the wire. A [heartbeat](#heartbeat-holding-a-claim-for-long-running-work) writes its `details` here under `progress`: last beat wins, so an observer can read what a long hold is doing without the holder releasing it. Distinct from `target.meta`, which is the shape your program declared: a declared shape has no member for a key the coordinator wrote. |
|
|
216
232
|
|
|
217
233
|
```jsonc
|
|
218
234
|
{
|
|
@@ -223,23 +239,49 @@ a model row. It's what `claim.state()` returns and what observers render.
|
|
|
223
239
|
"heldBy": "agent:forecaster",
|
|
224
240
|
"participantKind": "agent",
|
|
225
241
|
"createdAt": 1748160000000,
|
|
226
|
-
"expiresAt": 1748160030000
|
|
242
|
+
"expiresAt": 1748160030000,
|
|
243
|
+
"meta": { "progress": { "phase": "writing", "done": 2, "of": 5 } }
|
|
227
244
|
}
|
|
228
245
|
```
|
|
229
246
|
|
|
247
|
+
### Lifecycle
|
|
248
|
+
|
|
249
|
+
```
|
|
250
|
+
claim({ id }) update({ id }) lands
|
|
251
|
+
(free) ───────────▶ active ───────────────────────▶ committed
|
|
252
|
+
│
|
|
253
|
+
┌───────────┴───────────┐
|
|
254
|
+
▼ ▼
|
|
255
|
+
canceled expired
|
|
256
|
+
(release w/o write) (TTL; holder died)
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
A target is free when `ablo.<model>.claim.state({ id })` returns `null`. Terminal
|
|
260
|
+
states drop out of the live stream, so a claim you can see is either `active`
|
|
261
|
+
(the holder) or `queued` (waiting in the FIFO line behind it; see
|
|
262
|
+
[`claim.queue`](#claimqueue)).
|
|
263
|
+
|
|
264
|
+
Reading a holder's progress is the same synchronous read as everything else
|
|
265
|
+
here — no second subscription, and nothing to poll:
|
|
266
|
+
|
|
267
|
+
```ts
|
|
268
|
+
const held = ablo.documents.claim.state({ id: docId });
|
|
269
|
+
const phase = held?.meta?.progress?.phase ?? 'reading';
|
|
270
|
+
```
|
|
271
|
+
|
|
230
272
|
---
|
|
231
273
|
|
|
232
274
|
## Methods
|
|
233
275
|
|
|
234
276
|
One word — "claim" — names four distinct things; keep them separate as you read:
|
|
235
277
|
|
|
236
|
-
- **the lease (claim handle)
|
|
278
|
+
- **the lease (claim handle):** the *object* returned by `ablo.<model>.claim({ id })`
|
|
237
279
|
(`ClaimHandle`, an `AsyncDisposable` with `.data` and `.release()`).
|
|
238
|
-
- **acquiring a claim/lease
|
|
280
|
+
- **acquiring a claim/lease:** the *verb* `ablo.<model>.claim({ id })`, the call
|
|
239
281
|
that takes the lease.
|
|
240
|
-
- **`claim.state` / `claim.queue
|
|
282
|
+
- **`claim.state` / `claim.queue`:** the *inspection namespace* hanging off the
|
|
241
283
|
model, for reading who holds the row and who's lined up.
|
|
242
|
-
- **the write's `claim` param
|
|
284
|
+
- **the write's `claim` param:** `update({ id, data, claim })`, where you pass a
|
|
243
285
|
lease the proxy didn't take itself.
|
|
244
286
|
|
|
245
287
|
Each method below follows one fixed shape: **signature · what it does ·
|
|
@@ -259,16 +301,41 @@ then re-reads so the claimed snapshot reflects what the previous holder
|
|
|
259
301
|
committed. There's no polling and no race window — the server decides the order,
|
|
260
302
|
so two claimers can't both think they won.
|
|
261
303
|
|
|
262
|
-
**Parameters**
|
|
304
|
+
**Parameters** — every option is flat on the call, and each sits on one of
|
|
305
|
+
four axes. `claim({ id })` alone is a complete call; each axis is opt-in.
|
|
306
|
+
|
|
307
|
+
*What you claim* — the target, narrowed below the row:
|
|
308
|
+
|
|
309
|
+
| name | type | required | description |
|
|
310
|
+
|---|---|---|---|
|
|
311
|
+
| `id` | `string` | yes | The row id: same id as `retrieve` / `update`. |
|
|
312
|
+
| `options.field` | `ClaimField` | no | **Deprecated: say it as a set: `fields: ['title']`. Removed in 0.37.0.** One member for a set of one, beside another for a set of any size, is two ways to say one thing, and the singular is the one that misled: a caller needing two parts packed them into it. The wire still reads `field`, so this changes what you write, not what is understood. |
|
|
313
|
+
| `options.fields` | `ClaimField[]` | no | Claim named parts of the row instead of all of it: one or several. Prefer the selector form, `fields: (f) => [f.status]`, where the model hands you its own fields, so a field it does not have stops compiling and a rename is a compile error at every use. A bare name (`'status'`) autocompletes but is not checked; an app-defined part, a cell, a section, is named with `part('B2')`. Two sets conflict where they intersect, so holders of disjoint parts do not wait for each other, see [claiming part of a row](#claiming-part-of-a-row). A name containing a comma is refused: two names in one string compare as a single unrelated name, and both writers would be granted the same part. |
|
|
314
|
+
| `options.path` | `string` | no | A hierarchical position in a document-shaped row: `'/content/3'` claims one block. Paths conflict on containment: `/content` covers `/content/3`, while `/content/3` and `/content/7` are disjoint and both granted. |
|
|
315
|
+
| `options.range` | `TargetRange` | no | A span of the row's text: `{ startLine, endLine, startColumn?, endColumn? }`. Ranges conflict only where their line intervals overlap. An editor addressing by integer position maps it onto `startLine`/`endLine`: the test is plain interval intersection. |
|
|
316
|
+
|
|
317
|
+
*What others see* — the presence half:
|
|
263
318
|
|
|
264
319
|
| name | type | required | description |
|
|
265
320
|
|---|---|---|---|
|
|
266
|
-
| `id` | `string` | yes | The row id — same id as `retrieve` / `update`. |
|
|
267
321
|
| `options.description` | `string` | no | Peer-visible description of the work, shown to observers (default `'editing'`). |
|
|
268
|
-
| `options.
|
|
269
|
-
|
|
322
|
+
| `options.meta` | `object` | no | App-defined structured metadata, carried verbatim to every participant observing the claim. Declare its shape once on `Register`'s `ClaimMeta` slot. |
|
|
323
|
+
|
|
324
|
+
*How you wait* — admission to the line:
|
|
325
|
+
|
|
326
|
+
| name | type | required | description |
|
|
327
|
+
|---|---|---|---|
|
|
328
|
+
| `options.queue` | `boolean` | no | `true` (default) queues and waits for the lease. `false` is the try-claim: if another participant holds the row it resolves `null`: an expected outcome, not an error, so claim-or-skip dedup reads `if (!claim) return` (waiting would double-process). Who holds it stays readable via `claim.state`. A *write* to a held row still rejects `entity_claimed`. |
|
|
270
329
|
| `options.maxQueueDepth` | `number` | no | Backpressure: reject with `AbloClaimedError('queue_too_deep')` instead of joining a line already `>= maxQueueDepth` deep. Omit to wait however deep the queue is. |
|
|
271
|
-
| `options.
|
|
330
|
+
| `options.waitTimeoutMs` | `number` | no | Cap on how long a queued claim waits for its grant before rejecting with `AbloClaimedError('grant_timeout')`. Omit to wait as long as the line takes. Same meaning on both transports; over HTTP a timed-out wait also leaves the line. |
|
|
331
|
+
| `options.signal` | `AbortSignal` | no | Abort a pending wait from outside: a cancelled agent task or an unmounted component takes its queued claim with it. Rejects with `AbloClaimedError('claim_wait_aborted')`; over HTTP the abort also leaves the line. Ignored once the grant has arrived, release a held lease instead. |
|
|
332
|
+
|
|
333
|
+
*How long you hold* — the lease:
|
|
334
|
+
|
|
335
|
+
| name | type | required | description |
|
|
336
|
+
|---|---|---|---|
|
|
337
|
+
| `options.ttl` | `Duration` | no | Crash-cleanup floor. Rarely set: the lease renews while your connection is alive, so it only matters once you go silent. |
|
|
338
|
+
| `options.heartbeat` | `true \| Duration \| { every?, onBeat?, onLost? }` | no | Keep the lease alive for work that outlives the TTL: `true` beats every third of the TTL, a duration sets the cadence, and the structured form carries the cadence and both callbacks in one place: `onBeat` fires after every successful beat (chiefly `queueDepth`, the pressure signal), `onLost` once if a beat learns the lease is gone. The loop stops on release. |
|
|
272
339
|
|
|
273
340
|
The high-level `claim` queues by default, so on contention you either get the row
|
|
274
341
|
when your turn arrives or one of the [queue errors](#errors) (`claim_lost`,
|
|
@@ -300,6 +367,65 @@ committed — pass an idempotency key on the write if you replay the block.) The
|
|
|
300
367
|
lower-level [`claim.release`](#claimrelease) shows the manual `try/finally`
|
|
301
368
|
equivalent for when you hold a claim without `await using`.
|
|
302
369
|
|
|
370
|
+
### Claiming part of a row
|
|
371
|
+
|
|
372
|
+
Name a field and a typo cannot survive — the model is already bound by the call,
|
|
373
|
+
so it hands you its own fields:
|
|
374
|
+
|
|
375
|
+
```ts
|
|
376
|
+
await using mine = await ablo.tasks.claim({ id, fields: (f) => [f.status] });
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
`f.status` is checked against the model: a field it does not have stops
|
|
380
|
+
compiling, and renaming one is a compile error at every use. Nothing to import,
|
|
381
|
+
nothing to add to your schema file.
|
|
382
|
+
|
|
383
|
+
`fields: ['status']` still works and still autocompletes; it just accepts
|
|
384
|
+
`'titel'` too, which is granted, excludes nobody, and leaves the write of
|
|
385
|
+
`title` unguarded.
|
|
386
|
+
|
|
387
|
+
A claim covers the whole row only when you name nothing narrower. Name a
|
|
388
|
+
target — a `path` into a document, a `range` of text, a `field` or set of
|
|
389
|
+
`fields` — and exclusion follows it: **two claims on non-overlapping parts of
|
|
390
|
+
the same row are both granted**, and only overlapping targets queue behind
|
|
391
|
+
each other.
|
|
392
|
+
|
|
393
|
+
```ts
|
|
394
|
+
// Agent A holds one block of the document…
|
|
395
|
+
await using intro = await ablo.documents.claim({
|
|
396
|
+
id: docId,
|
|
397
|
+
path: '/content/3',
|
|
398
|
+
description: 'rewriting the risk section',
|
|
399
|
+
});
|
|
400
|
+
|
|
401
|
+
// …while agent B, in another process, holds a different block of the SAME
|
|
402
|
+
// row. Granted immediately — /content/3 and /content/7 do not overlap.
|
|
403
|
+
await using summary = await ablo.documents.claim({
|
|
404
|
+
id: docId,
|
|
405
|
+
path: '/content/7',
|
|
406
|
+
description: 'tightening the summary',
|
|
407
|
+
});
|
|
408
|
+
```
|
|
409
|
+
|
|
410
|
+
Overlap is judged per axis:
|
|
411
|
+
|
|
412
|
+
- **`path`:** hierarchical containment, on a separator boundary. `/content`
|
|
413
|
+
covers `/content/3`, so the parent's holder queues behind (or is queued
|
|
414
|
+
behind by) the child's; `/content/3` and `/content/7` are disjoint, and
|
|
415
|
+
`/content` never collides with `/contentious`.
|
|
416
|
+
- **`field` / `fields`:** set intersection. Holders on `title` and `status`
|
|
417
|
+
proceed concurrently; naming no field covers all of them.
|
|
418
|
+
- **`range`:** interval intersection on `[startLine, endLine]`. An editor
|
|
419
|
+
that addresses text by integer position rather than by line maps that
|
|
420
|
+
position axis straight onto `startLine`/`endLine`: the server's test is
|
|
421
|
+
plain interval intersection and never assumes the units are lines of a
|
|
422
|
+
file.
|
|
423
|
+
|
|
424
|
+
A claim with no target is the widest parent: it covers every part of the row
|
|
425
|
+
and conflicts with any narrower claim on it. Region locking on a single
|
|
426
|
+
document row is therefore one claim per region — the row stays one row, and
|
|
427
|
+
the claims carve it up.
|
|
428
|
+
|
|
303
429
|
### Claim-gated reads
|
|
304
430
|
|
|
305
431
|
`claim.state({ id })` always returns immediately. Model reads such as
|
|
@@ -347,8 +473,15 @@ whole coordination API.
|
|
|
347
473
|
|---|---|---|---|
|
|
348
474
|
| `id` | `string` | yes | The row id. |
|
|
349
475
|
|
|
350
|
-
**Returns** —
|
|
351
|
-
is free.
|
|
476
|
+
**Returns** — an active [claim state object](#the-claim-state-object) on the row, or
|
|
477
|
+
`null` when the row is free.
|
|
478
|
+
|
|
479
|
+
**One holder, and a row can have several.** This reads a row, not a target, and
|
|
480
|
+
answers with a single claim. That is the whole story for a whole-row claim, and
|
|
481
|
+
only part of it once you [claim parts of a row](#claiming-part-of-a-row): three
|
|
482
|
+
agents holding `/content/3`, `/content/7`, and `title` are all active at once,
|
|
483
|
+
and this read surfaces one of them. To render every holder — a rail per claimed
|
|
484
|
+
block, a chip per participant — use [`claim.list`](#claimlist).
|
|
352
485
|
|
|
353
486
|
**Example**
|
|
354
487
|
|
|
@@ -371,6 +504,45 @@ Returns the active claim state when the row is held, or `null` when it's free:
|
|
|
371
504
|
}
|
|
372
505
|
```
|
|
373
506
|
|
|
507
|
+
### `claim.list`
|
|
508
|
+
|
|
509
|
+
```ts
|
|
510
|
+
ablo.<model>.claim.list({ id })
|
|
511
|
+
```
|
|
512
|
+
|
|
513
|
+
Every holder of a row. Same synchronous, reactive read as `claim.state` — off
|
|
514
|
+
the same local snapshot, safe to call inline in a render — and the same list
|
|
515
|
+
envelope as [`claim.queue`](#claimqueue).
|
|
516
|
+
|
|
517
|
+
Reach for it whenever a row can be claimed in parts. One agent rewriting
|
|
518
|
+
`/content/3` while another tightens `/content/7` are two active claims on one
|
|
519
|
+
row, and only this read returns both.
|
|
520
|
+
|
|
521
|
+
**Parameters**
|
|
522
|
+
|
|
523
|
+
| name | type | required | description |
|
|
524
|
+
|---|---|---|---|
|
|
525
|
+
| `id` | `string` | yes | The row id. |
|
|
526
|
+
|
|
527
|
+
**Returns** — `{ object: 'list', data: Claim[] }`. Your own claim comes first
|
|
528
|
+
when this client holds one, then the other participants'. Empty `data` when the
|
|
529
|
+
row is free.
|
|
530
|
+
|
|
531
|
+
**Example** — a rail for every claimed block:
|
|
532
|
+
|
|
533
|
+
```tsx
|
|
534
|
+
const { data: holders } = ablo.documents.claim.list({ id: docId });
|
|
535
|
+
|
|
536
|
+
return blocks.map((block) => {
|
|
537
|
+
const held = holders.find((c) => c.target.path === `/content/${block.index}`);
|
|
538
|
+
return <Block key={block.id} rail={held?.heldBy} note={held?.description} />;
|
|
539
|
+
});
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
`claim.state({ id })` remains the right read when a row is claimed whole, or
|
|
543
|
+
when all you need is "is anyone working here" — it answers with one claim and
|
|
544
|
+
`null` when the row is free.
|
|
545
|
+
|
|
374
546
|
### `claim.queue`
|
|
375
547
|
|
|
376
548
|
```ts
|
|
@@ -436,7 +608,7 @@ try {
|
|
|
436
608
|
}
|
|
437
609
|
```
|
|
438
610
|
|
|
439
|
-
### `heartbeat
|
|
611
|
+
### `heartbeat`: holding a claim for long-running work
|
|
440
612
|
|
|
441
613
|
```ts
|
|
442
614
|
held.heartbeat(ttl?: Duration): Promise<{ expiresAt: number }>
|
|
@@ -457,8 +629,7 @@ await using claim = await ablo.reports.claim({
|
|
|
457
629
|
id: 'report_q3',
|
|
458
630
|
description: 'generating',
|
|
459
631
|
ttl: '5m',
|
|
460
|
-
heartbeat:
|
|
461
|
-
onHeartbeatLost: () => abortWork(),
|
|
632
|
+
heartbeat: { onLost: () => abortWork() }, // `true` and '2m' are the shorthands
|
|
462
633
|
});
|
|
463
634
|
await runLongGeneration(claim.data); // lease held for the duration
|
|
464
635
|
// scope exit releases; the loop stops with it
|
|
@@ -473,11 +644,11 @@ failures (a connection blip) don't stop the loop — the next tick retries.
|
|
|
473
644
|
|
|
474
645
|
Each beat's answer carries two more things:
|
|
475
646
|
|
|
476
|
-
- **`queueDepth
|
|
647
|
+
- **`queueDepth`:** how many participants wait in line behind the lease.
|
|
477
648
|
This is the cooperative-yield pressure signal: a worker that can checkpoint
|
|
478
649
|
may release early when others wait. Read it from the resolved beat, or pass
|
|
479
|
-
`
|
|
480
|
-
- **progress `details
|
|
650
|
+
`heartbeat: { onBeat }` when claiming to observe every auto-beat.
|
|
651
|
+
- **progress `details`:** `held.heartbeat({ details: { pages: 42, of: 100 } })`
|
|
481
652
|
stores the payload as the claim's peer-visible `meta.progress` (last beat
|
|
482
653
|
wins, via `claim.state`). This is presence, not a checkpoint: it dies with
|
|
483
654
|
the lease. Durable progress belongs in the data itself — write a row, and
|
|
@@ -507,7 +678,7 @@ A stateless worker holding **many** rows beats them all in one round trip:
|
|
|
507
678
|
entry per extended lease. This is the socketless twin of the realtime
|
|
508
679
|
keepalive, which already renews every held lease on each ping.
|
|
509
680
|
|
|
510
|
-
### durability
|
|
681
|
+
### durability: what a claim survives
|
|
511
682
|
|
|
512
683
|
A lease belongs to your **identity** — the participant behind the credential —
|
|
513
684
|
not to the socket it was claimed on; the server keys each lease by participant
|
|
@@ -547,12 +718,12 @@ snapshot.
|
|
|
547
718
|
|
|
548
719
|
| the holder… | what happens to the claim |
|
|
549
720
|
| --- | --- |
|
|
550
|
-
| blips, then reconnects within the window | renewed automatically on reconnect
|
|
721
|
+
| blips, then reconnects within the window | renewed automatically on reconnect: no interruption |
|
|
551
722
|
| crashes or drops for good | released within one keepalive cycle; the queue advances |
|
|
552
|
-
| still has a second live connection | survives
|
|
723
|
+
| still has a second live connection | survives: release fires only on the last connection |
|
|
553
724
|
| loses the server to a restart | rides the TTL in the coordination store; re-announced on reconnect |
|
|
554
725
|
|
|
555
|
-
### `join
|
|
726
|
+
### `join`: presence for a set of rows
|
|
556
727
|
|
|
557
728
|
Reading or claiming a row auto-enrolls you in its sync group, which is enough for
|
|
558
729
|
`claim.state`/`claim.queue` to observe co-participants. When you want to *hold*
|
|
@@ -625,15 +796,15 @@ inspect the `code`.
|
|
|
625
796
|
|
|
626
797
|
| error | `code` | thrown when | carries |
|
|
627
798
|
|---|---|---|---|
|
|
628
|
-
| `AbloClaimedError` | `claim_lost` | A held/queued claim was taken away
|
|
629
|
-
| `AbloClaimedError` | `claim_queued` | **HTTP transport only.** A contended `claim` (default `queue: true`) could not block-wait for the lease (no socket), so it rejected immediately instead of queueing. Retryable
|
|
799
|
+
| `AbloClaimedError` | `claim_lost` | A held/queued claim was taken away: the holder disconnected (reaped on the keepalive cycle), went silent past its TTL, was revoked, or was preempted (a privileged reorder, or a configured cumulative-hold ceiling reached while contenders waited), while you were holding or waiting. | `claims?` |
|
|
800
|
+
| `AbloClaimedError` | `claim_queued` | **HTTP transport only.** A contended `claim` (default `queue: true`) could not block-wait for the lease (no socket), so it rejected immediately instead of queueing. Retryable: re-attempt the claim. | `claims?` |
|
|
630
801
|
| `AbloClaimedError` | `grant_timeout` | The optional `timeoutMs` elapsed while you were still queued for a grant. | `claims?` |
|
|
631
|
-
| `AbloClaimedError` | `queue_too_deep` | `claim` was passed `maxQueueDepth` and the wait line was already that deep when you tried to join
|
|
632
|
-
| `AbloClaimedError` | `claim_conflict` | An `update`/`delete` targets a row another participant holds
|
|
633
|
-
| `AbloClaimedError` | `entity_claimed` | Same conflict, from the commit guard backstop.
|
|
634
|
-
| `AbloStaleContextError`
|
|
635
|
-
| `AbloValidationError` | `model_claim_not_configured` | `claim` called on a model proxy built without the collaboration runtime
|
|
636
|
-
| `AbloValidationError` | `entity_not_found` | The row id doesn't exist locally or on load.
|
|
802
|
+
| `AbloClaimedError` | `queue_too_deep` | `claim` was passed `maxQueueDepth` and the wait line was already that deep when you tried to join: fail-fast instead of waiting. | `claims?` |
|
|
803
|
+
| `AbloClaimedError` | `claim_conflict` | An `update`/`delete` targets a row another participant holds: the server's pre-commit check rejected it. |: |
|
|
804
|
+
| `AbloClaimedError` | `entity_claimed` | Same conflict, from the commit guard backstop. |: |
|
|
805
|
+
| `AbloStaleContextError` |: | A guarded `update` (under a claim, or any write carrying `readAt`) targets a row that received deltas since the snapshot: your reasoning is stale. | `readAt`, `conflicts[]` |
|
|
806
|
+
| `AbloValidationError` | `model_claim_not_configured` | `claim` called on a model proxy built without the collaboration runtime: an internal/advanced construction path. The standard `Ablo({ schema, apiKey })` client enables claiming for **every** model; there is no per-model claim config to add. |: |
|
|
807
|
+
| `AbloValidationError` | `entity_not_found` | The row id doesn't exist locally or on load. |: |
|
|
637
808
|
|
|
638
809
|
`AbloStaleContextError.conflicts` lists the `(model, id, observedSyncId)` rows
|
|
639
810
|
that moved during your generation window — use it for selective regeneration
|
|
@@ -741,9 +912,9 @@ state**, which is the shape that races. The other two aren't read-modify-write:
|
|
|
741
912
|
|
|
742
913
|
| Verb | Functional form? | Why | Its "just works" property |
|
|
743
914
|
| --- | --- | --- | --- |
|
|
744
|
-
| `update` | **yes
|
|
745
|
-
| `create` | no
|
|
746
|
-
| `delete` | no
|
|
915
|
+
| `update` | **yes**: `update(id, current => next)` | next value depends on the current one (lost-update hazard) | compare-and-swap + reconcile |
|
|
916
|
+
| `create` | no: `create({ data, id? })` | no prior state to read; the hazard is *id collision*, a terminal `unique_violation`, not a lost update | **idempotency**: stable id / `idempotencyKey` makes a retried create safe |
|
|
917
|
+
| `delete` | no: `delete({ id })` | no resulting state to compute; "make it not exist" is unchanged by concurrent edits, and delete is idempotent | naturally idempotent |
|
|
747
918
|
|
|
748
919
|
The same reason React has `setState(prev => next)` but no functional mount /
|
|
749
920
|
unmount. A *conditional* delete ("only if unchanged since I read it") is the one
|
|
@@ -752,38 +923,19 @@ not a function.
|
|
|
752
923
|
|
|
753
924
|
---
|
|
754
925
|
|
|
755
|
-
## Observability
|
|
926
|
+
## Observability
|
|
756
927
|
|
|
757
928
|
Coordination you can't see is coordination you can't debug. Pass an
|
|
758
929
|
`observability` provider to `Ablo({ ... })` and the client reports every claim
|
|
759
930
|
lifecycle event and stale-write collision it sees. The batteries-included
|
|
760
|
-
provider is `ClaimLog
|
|
931
|
+
provider is `ClaimLog`, and `collisions()` is the eval primitive:
|
|
761
932
|
|
|
762
933
|
```ts
|
|
763
|
-
import Ablo, { ClaimLog } from '@abloatai/ablo';
|
|
764
|
-
|
|
765
934
|
const log = new ClaimLog();
|
|
766
935
|
const ablo = Ablo({ schema, apiKey, observability: log });
|
|
767
|
-
// …run your agents…
|
|
768
936
|
|
|
769
|
-
log.
|
|
770
|
-
log.collisions() // just the collisions: rejected/lost claims + stale writes
|
|
771
|
-
log.toString() // pretty, greppable timeline to print
|
|
772
|
-
log.onChange(fn) // reactive subscribe → drive a live activity feed / useSyncExternalStore
|
|
937
|
+
expect(log.collisions()).toHaveLength(0); // no one stepped on anyone
|
|
773
938
|
```
|
|
774
939
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
`conflict: tx … — 1 row(s) changed underneath: reports/r1`.
|
|
778
|
-
|
|
779
|
-
`ClaimLog` implements the full `SyncObservabilityProvider`, so it drops straight
|
|
780
|
-
into the `observability` slot; spread `noopObservability` if you only want to
|
|
781
|
-
override a few hooks (e.g. forward to Sentry/OTel). Exports: `ClaimLog`,
|
|
782
|
-
`formatClaim`, `formatConflict`, `noopObservability`, and the types `ClaimEvent`,
|
|
783
|
-
`ConflictEvent`, `ClaimLogEntry`, `SyncObservabilityProvider`.
|
|
784
|
-
|
|
785
|
-
> **Both transports, from 0.21.0.** Observability fires on the WebSocket **and**
|
|
786
|
-
> the stateless HTTP transport (claim acquired + coordination-conflict
|
|
787
|
-
> rejections, on every write door). Before 0.21.0 only WebSocket emitted, so a
|
|
788
|
-
> `ClaimLog` on an HTTP client — e.g. a headless server-agent eval — stayed
|
|
789
|
-
> silent even though coordination still worked.
|
|
940
|
+
See [Debugging & Logs](./debugging.md) for the setup, the event shapes, a
|
|
941
|
+
reactive activity feed, and routing events to your own backend.
|
package/docs/data-sources.md
CHANGED
|
@@ -75,7 +75,7 @@ Run it against your database as a superuser or the DB owner. It creates:
|
|
|
75
75
|
|
|
76
76
|
Scope it to a subset with `npx ablo connect --tables a,b,c`.
|
|
77
77
|
|
|
78
|
-
- **A replication role
|
|
78
|
+
- **A replication role:** it streams the WAL and `SELECT`s, nothing more. This is
|
|
79
79
|
the role Ablo reads and confirms through. You choose the password; it never
|
|
80
80
|
passes through Ablo's CLI or servers:
|
|
81
81
|
|
|
@@ -87,7 +87,7 @@ Run it against your database as a superuser or the DB owner. It creates:
|
|
|
87
87
|
On Amazon RDS the `REPLICATION` attribute is granted, not set directly:
|
|
88
88
|
`GRANT rds_replication TO "ablo_replicator";`.
|
|
89
89
|
|
|
90
|
-
- **A scoped writer role
|
|
90
|
+
- **A scoped writer role:** the role Ablo writes your rows through. It gets row
|
|
91
91
|
DML (`SELECT, INSERT, UPDATE, DELETE`) and the sync ledger, and nothing else: no
|
|
92
92
|
`REPLICATION`, no schema `CREATE`, `NOSUPERUSER NOBYPASSRLS`, row security on. It
|
|
93
93
|
can change rows in your tables; it cannot change your database:
|
|
@@ -189,7 +189,7 @@ A commit is accepted the moment Ablo takes it (`queued`); it becomes `confirmed`
|
|
|
189
189
|
once the row appears on your WAL. See [Guarantees](./guarantees.md) for what each
|
|
190
190
|
state means and when to wait.
|
|
191
191
|
|
|
192
|
-
## What Ablo touches in your database
|
|
192
|
+
## What Ablo touches in your database: the honest footprint
|
|
193
193
|
|
|
194
194
|
This is the complete list. Nothing else.
|
|
195
195
|
|
|
@@ -197,7 +197,7 @@ This is the complete list. Nothing else.
|
|
|
197
197
|
|---|---|---|
|
|
198
198
|
| `ablo_publication` | A publication naming the tables Ablo reads and confirms against. | You create it (step 2). |
|
|
199
199
|
| `ablo_replicator` role | A `REPLICATION` + `SELECT` role Ablo reads and confirms through. | You create it (step 2). |
|
|
200
|
-
| `ablo_writer` role | A scoped DML role Ablo writes your rows through
|
|
200
|
+
| `ablo_writer` role | A scoped DML role Ablo writes your rows through: row DML + ledger, nothing more. | You create it (step 2). |
|
|
201
201
|
| Replication slot | A logical slot Ablo subscribes through to track its WAL position. | Ablo's runtime creates it on first connect. |
|
|
202
202
|
| `wal_level = logical` | A server setting that **requires a restart**. | You set it (step 1). |
|
|
203
203
|
|
package/docs/debugging.md
CHANGED
|
@@ -13,6 +13,17 @@ import { schema } from './ablo/schema';
|
|
|
13
13
|
const ablo = Ablo({ schema, apiKey: process.env.ABLO_API_KEY, debug: true });
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
## CLI environment and target
|
|
17
|
+
|
|
18
|
+
The CLI checks an explicit credential in this order: exported `ABLO_API_KEY`,
|
|
19
|
+
`.env.local`, `.env`, then the key saved by `ablo login`. An exported value wins
|
|
20
|
+
over project files. If a stale shell export (for example `OPENAI_API_KEY`) is
|
|
21
|
+
shadowing a value in `.env.local`, restart the shell or unset the stale variable.
|
|
22
|
+
|
|
23
|
+
When a command appears to use the wrong plane or project, run `ablo status`.
|
|
24
|
+
It reports the credential source and, when reachable, the server-confirmed
|
|
25
|
+
project and environment; that confirmed target is authoritative.
|
|
26
|
+
|
|
16
27
|
`debug: true` is the simple switch. For finer control use `logLevel`, or set it without touching code via the `ABLO_LOG_LEVEL` environment variable.
|
|
17
28
|
|
|
18
29
|
```ts
|
|
@@ -31,15 +42,15 @@ ABLO_LOG_LEVEL=debug npm run dev # same, from the environment
|
|
|
31
42
|
|---|---|
|
|
32
43
|
| `silent` | nothing |
|
|
33
44
|
| `error` | failures only |
|
|
34
|
-
| `warn` | **default
|
|
45
|
+
| `warn` | **default**: warnings + errors |
|
|
35
46
|
| `info` | the above + the **coordination trace** (claims, grants, queueing) + connection state |
|
|
36
|
-
| `debug` | the above + internal lifecycle (per-model registration, store hydration)
|
|
47
|
+
| `debug` | the above + internal lifecycle (per-model registration, store hydration): the full firehose |
|
|
37
48
|
|
|
38
49
|
Precedence: an explicit `logLevel` wins, then `debug: true` (⇒ `debug`), then `ABLO_LOG_LEVEL`, then the `warn` default. `debug: false` (or omitting it) just means "don't raise the level."
|
|
39
50
|
|
|
40
51
|
> For watching coordination, **`logLevel: 'info'` is the sweet spot** — you get the claim trace without the per-model registration chatter that `debug` adds.
|
|
41
52
|
|
|
42
|
-
## What you'll see
|
|
53
|
+
## What you'll see: the coordination trace
|
|
43
54
|
|
|
44
55
|
These lines (all at `info`) let you watch the handover you built:
|
|
45
56
|
|
|
@@ -54,12 +65,12 @@ These lines (all at `info`) let you watch the handover you built:
|
|
|
54
65
|
|
|
55
66
|
Read it as the lifecycle of one claim:
|
|
56
67
|
|
|
57
|
-
- **`requesting
|
|
58
|
-
- **`queued … position N of M
|
|
59
|
-
- **`granted … your turn
|
|
60
|
-
- **`rejected … held by <who
|
|
61
|
-
- **`lost
|
|
62
|
-
- **`released
|
|
68
|
+
- **`requesting`:** your code (or an agent) called `ablo.<model>.claim(...)`. `(will queue if contended)` appears when you passed `{ queue: true }`.
|
|
69
|
+
- **`queued … position N of M`:** the row was held, so you're waiting in the FIFO line. This is the "an agent is waiting behind a claim" moment; it re-logs only when your position changes, so you can watch it advance.
|
|
70
|
+
- **`granted … your turn`:** you reached the head of the line; the lease is now yours and the row may have changed while you waited.
|
|
71
|
+
- **`rejected … held by <who>`:** your claim was refused because someone else holds it (and the model's policy didn't let you in).
|
|
72
|
+
- **`lost`:** you held the lease and it was taken (preempted by a higher-priority writer, or it expired).
|
|
73
|
+
- **`released`:** you (or `await using`'s scope exit) gave the lease back.
|
|
63
74
|
|
|
64
75
|
## Where the logs run
|
|
65
76
|
|
|
@@ -82,7 +93,7 @@ Ablo({
|
|
|
82
93
|
});
|
|
83
94
|
```
|
|
84
95
|
|
|
85
|
-
## Read the coordination in code
|
|
96
|
+
## Read the coordination in code: the activity log
|
|
86
97
|
|
|
87
98
|
The console trace above is for *you*, at a terminal. To put the same activity **inside your app** — an activity feed, a "who's editing" badge, a Sentry breadcrumb trail — read it programmatically. Same events, three layers; pick by audience:
|
|
88
99
|
|
|
@@ -114,7 +125,7 @@ interface ConflictEvent {
|
|
|
114
125
|
|
|
115
126
|
`phase` is past-tense — the state the claim just entered — and maps one-to-one to what arrives on the wire.
|
|
116
127
|
|
|
117
|
-
### Collect them
|
|
128
|
+
### Collect them: `ClaimLog`
|
|
118
129
|
|
|
119
130
|
`ClaimLog` records both into an ordered list. Hand it to `observability`, then read it back:
|
|
120
131
|
|
|
@@ -136,7 +147,7 @@ It's also the simplest way to **assert** coordination in a test — no log scrap
|
|
|
136
147
|
expect(log.collisions()).toHaveLength(0); // no one stepped on anyone
|
|
137
148
|
```
|
|
138
149
|
|
|
139
|
-
### Show it on a page
|
|
150
|
+
### Show it on a page: reactive
|
|
140
151
|
|
|
141
152
|
`ClaimLog.onChange` fires on every event and returns an unsubscribe — the exact shape `useSyncExternalStore` wants, so a live feed is a few lines:
|
|
142
153
|
|
|
@@ -185,6 +196,17 @@ const ablo = Ablo({
|
|
|
185
196
|
});
|
|
186
197
|
```
|
|
187
198
|
|
|
199
|
+
`ClaimLog` implements the full `SyncObservabilityProvider`, so it drops straight
|
|
200
|
+
into the `observability` slot. The surface exports `ClaimLog`, `formatClaim`,
|
|
201
|
+
`formatConflict`, and `noopObservability`, plus the types `ClaimEvent`,
|
|
202
|
+
`ConflictEvent`, `ClaimLogEntry`, and `SyncObservabilityProvider`.
|
|
203
|
+
|
|
204
|
+
> **Both transports, from 0.21.0.** Observability fires on the WebSocket and on
|
|
205
|
+
> the stateless HTTP transport (claim acquired, plus coordination-conflict
|
|
206
|
+
> rejections on every write door). Before 0.21.0 only WebSocket emitted, so a
|
|
207
|
+
> `ClaimLog` on an HTTP client, such as a headless server-agent eval, stayed
|
|
208
|
+
> silent even though coordination still worked.
|
|
209
|
+
|
|
188
210
|
## Errors
|
|
189
211
|
|
|
190
212
|
Ablo's thrown errors are typed and self-describing — `String(err)` (or logging it) yields one clean line, never a stack dump:
|