satay 0.1.0a1__tar.gz
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.
- satay-0.1.0a1/.gitignore +38 -0
- satay-0.1.0a1/LICENSE +202 -0
- satay-0.1.0a1/PKG-INFO +161 -0
- satay-0.1.0a1/README.md +136 -0
- satay-0.1.0a1/pyproject.toml +123 -0
- satay-0.1.0a1/src/satay/__init__.py +57 -0
- satay-0.1.0a1/src/satay/_studio_assets/assets/index-BEr3SCNe.css +1 -0
- satay-0.1.0a1/src/satay/_studio_assets/assets/index-By_8Sh9l.js +10 -0
- satay-0.1.0a1/src/satay/_studio_assets/index.html +13 -0
- satay-0.1.0a1/src/satay/api/__init__.py +38 -0
- satay-0.1.0a1/src/satay/api/context.py +88 -0
- satay-0.1.0a1/src/satay/api/decorators.py +82 -0
- satay-0.1.0a1/src/satay/api/primitives.py +250 -0
- satay-0.1.0a1/src/satay/api/registry.py +89 -0
- satay-0.1.0a1/src/satay/api/run_handle.py +75 -0
- satay-0.1.0a1/src/satay/api/runner.py +251 -0
- satay-0.1.0a1/src/satay/blobs/__init__.py +173 -0
- satay-0.1.0a1/src/satay/cli/__init__.py +13 -0
- satay-0.1.0a1/src/satay/cli/main.py +117 -0
- satay-0.1.0a1/src/satay/config.py +102 -0
- satay-0.1.0a1/src/satay/control/__init__.py +114 -0
- satay-0.1.0a1/src/satay/control/api.py +116 -0
- satay-0.1.0a1/src/satay/control/commands.py +382 -0
- satay-0.1.0a1/src/satay/control/redaction.py +82 -0
- satay-0.1.0a1/src/satay/control/security.py +128 -0
- satay-0.1.0a1/src/satay/control/server.py +207 -0
- satay-0.1.0a1/src/satay/control/views.py +491 -0
- satay-0.1.0a1/src/satay/demo.py +489 -0
- satay-0.1.0a1/src/satay/devstack/__init__.py +27 -0
- satay-0.1.0a1/src/satay/devstack/cli.py +41 -0
- satay-0.1.0a1/src/satay/devstack/lock.py +128 -0
- satay-0.1.0a1/src/satay/devstack/orchestrator.py +224 -0
- satay-0.1.0a1/src/satay/executor/__init__.py +247 -0
- satay-0.1.0a1/src/satay/journal/__init__.py +121 -0
- satay-0.1.0a1/src/satay/journal/codec.py +217 -0
- satay-0.1.0a1/src/satay/journal/events.py +175 -0
- satay-0.1.0a1/src/satay/journal/store.py +450 -0
- satay-0.1.0a1/src/satay/journal/timeline.py +96 -0
- satay-0.1.0a1/src/satay/py.typed +0 -0
- satay-0.1.0a1/src/satay/replay/__init__.py +31 -0
- satay-0.1.0a1/src/satay/replay/driver.py +73 -0
- satay-0.1.0a1/src/satay/replay/engine.py +792 -0
- satay-0.1.0a1/src/satay/replay/identity.py +132 -0
- satay-0.1.0a1/src/satay/replay/nondeterminism.py +51 -0
- satay-0.1.0a1/src/satay/testing/__init__.py +32 -0
- satay-0.1.0a1/src/satay/testing/clock.py +104 -0
- satay-0.1.0a1/src/satay/testing/faults.py +81 -0
- satay-0.1.0a1/src/satay/testing/fixtures.py +67 -0
- satay-0.1.0a1/src/satay/testing/rng.py +60 -0
- satay-0.1.0a1/src/satay/timers/__init__.py +287 -0
- satay-0.1.0a1/src/satay/versioning/__init__.py +152 -0
satay-0.1.0a1/.gitignore
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.egg-info/
|
|
5
|
+
build/
|
|
6
|
+
dist/
|
|
7
|
+
|
|
8
|
+
# Environments
|
|
9
|
+
.venv/
|
|
10
|
+
venv/
|
|
11
|
+
|
|
12
|
+
# Tooling caches
|
|
13
|
+
.mypy_cache/
|
|
14
|
+
.pytest_cache/
|
|
15
|
+
.ruff_cache/
|
|
16
|
+
|
|
17
|
+
# Coverage
|
|
18
|
+
.coverage
|
|
19
|
+
.coverage.*
|
|
20
|
+
htmlcov/
|
|
21
|
+
coverage.xml
|
|
22
|
+
|
|
23
|
+
# Satay project-local data dir (ADR-0017)
|
|
24
|
+
.satay/
|
|
25
|
+
|
|
26
|
+
# Studio frontend (ADR-0013/0018): source lives in studio/; the built bundle is
|
|
27
|
+
# vendored to src/satay/_studio_assets/ and IS committed (served by the V5 process).
|
|
28
|
+
studio/node_modules/
|
|
29
|
+
studio/dist/
|
|
30
|
+
studio/.svelte-kit/
|
|
31
|
+
studio/*.tsbuildinfo
|
|
32
|
+
studio/vite.config.ts.timestamp-*
|
|
33
|
+
|
|
34
|
+
# Editor / OS
|
|
35
|
+
.DS_Store
|
|
36
|
+
*.swp
|
|
37
|
+
.idea/
|
|
38
|
+
.vscode/
|
satay-0.1.0a1/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2026 The Satay Runtime Authors
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
satay-0.1.0a1/PKG-INFO
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: satay
|
|
3
|
+
Version: 0.1.0a1
|
|
4
|
+
Summary: Satay Runtime — a local-first durable-execution runtime for async Python workflows.
|
|
5
|
+
Project-URL: Homepage, https://github.com/leejianrong/satay-runtime
|
|
6
|
+
Project-URL: Repository, https://github.com/leejianrong/satay-runtime
|
|
7
|
+
Author-email: Jian <leejianrong2@gmail.com>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: asyncio,durable-execution,event-sourcing,replay,workflow
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
17
|
+
Classifier: Typing :: Typed
|
|
18
|
+
Requires-Python: >=3.12
|
|
19
|
+
Provides-Extra: studio
|
|
20
|
+
Requires-Dist: fastapi>=0.110; extra == 'studio'
|
|
21
|
+
Requires-Dist: pydantic>=2.6; extra == 'studio'
|
|
22
|
+
Requires-Dist: typer>=0.12; extra == 'studio'
|
|
23
|
+
Requires-Dist: uvicorn>=0.29; extra == 'studio'
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# Satay Runtime
|
|
27
|
+
|
|
28
|
+
Satay is a **local-first durable-execution runtime** for async Python. You write
|
|
29
|
+
ordinary `async def` workflows and tasks; Satay records every durable call to an
|
|
30
|
+
append-only journal and, on crash, **replays the workflow from the top** — reusing
|
|
31
|
+
recorded results and re-executing only what never finished. No external
|
|
32
|
+
infrastructure: it runs in one process over SQLite.
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
import satay
|
|
36
|
+
|
|
37
|
+
@satay.task()
|
|
38
|
+
async def charge(amount: int) -> str: ...
|
|
39
|
+
|
|
40
|
+
@satay.workflow
|
|
41
|
+
async def checkout(order):
|
|
42
|
+
receipt = await charge(order["total"])
|
|
43
|
+
return receipt
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
The debugger — **Satay Studio**, a local web UI over an HTTP read API — ships in the
|
|
47
|
+
optional `satay[studio]` extra, so applications that embed Satay never carry the
|
|
48
|
+
FastAPI/uvicorn/JS stack into production.
|
|
49
|
+
|
|
50
|
+
## Status
|
|
51
|
+
|
|
52
|
+
**The MVP is built and the full suite is green (V1–V8).** Trust the code over the docs:
|
|
53
|
+
`docs/` describes the intended full system, and where docs and code disagree the code
|
|
54
|
+
wins. `uv run pytest -q` prints the current test count.
|
|
55
|
+
|
|
56
|
+
What works today:
|
|
57
|
+
|
|
58
|
+
- **Durable core + replay.** Workflows replay from the top against an append-only
|
|
59
|
+
SQLite journal (`PRAGMA user_version` schema, forward-only migrations, WAL); recorded
|
|
60
|
+
results are reused and only unfinished work re-executes.
|
|
61
|
+
- **Execution guarantees.** Retries with capped exponential backoff and jittered delays
|
|
62
|
+
off an injected clock, at-least-once task execution, runtime-derived idempotency keys
|
|
63
|
+
readable inside a task body, replay nondeterminism detection, and an `effect_safety`
|
|
64
|
+
policy that guards retryable side-effecting tasks.
|
|
65
|
+
- **Time and events.** Durable `sleep`, `wait_for_event`/`send_event` over a persistent
|
|
66
|
+
inbox, and a timer + event poll loop with FIFO delivery and event-wins-over-timeout.
|
|
67
|
+
- **Composition.** `map`, `gather`, and `start_child`, each item a keyed durable call, so
|
|
68
|
+
a crash mid-fan-out resumes with completed items reused and only unresolved items re-run.
|
|
69
|
+
- **Control plane.** An HTTP control + read API (start, cancel, send event, fork; run
|
|
70
|
+
list, timeline, tree, task detail, compare) with a redactor applied to every read and a
|
|
71
|
+
loopback/token security guard.
|
|
72
|
+
- **Studio.** The Satay Studio SPA ships as a built bundle served by the same process.
|
|
73
|
+
- **Forking and versioning.** Fork a run from a prefix, compare two runs call-by-call, and
|
|
74
|
+
a code-version stamp with a strict/warn/off mismatch policy on resume.
|
|
75
|
+
- **`satay dev`.** One command brings up the lock, store, worker, and Studio server, and
|
|
76
|
+
tears them down in reverse.
|
|
77
|
+
- **Payload spill.** Encoded payloads over 256 KiB spill to content-addressed blob files
|
|
78
|
+
transparently on write and rehydrate on read.
|
|
79
|
+
|
|
80
|
+
Deliberate MVP gaps, so the honesty survives contact:
|
|
81
|
+
|
|
82
|
+
- **No blob GC.** No run deletion and no compaction; blobs accumulate under `./.satay/`
|
|
83
|
+
and removal is manual (ADR-0004). A future GC has to be reference-aware, since forks
|
|
84
|
+
share blobs with their source run.
|
|
85
|
+
- **Fan-out is fail-fast only.** No collect / `return_exceptions` mode for
|
|
86
|
+
`map`/`gather`/`start_child`; the first failure raises and sibling results are discarded
|
|
87
|
+
(ADR-0020).
|
|
88
|
+
- **`satay runs show` is frozen at the V1 event subset** (ADR-0016). Timer, event,
|
|
89
|
+
cancellation, and fork events render as bare type lines; Studio covers the rest.
|
|
90
|
+
- **Fork only accepts terminal runs** (ADR-0004) — completed, failed, or cancelled.
|
|
91
|
+
- **One process, one writer.** No PostgreSQL backend, no multi-worker or distributed
|
|
92
|
+
execution. The cross-process data-dir lock is POSIX `flock` and only `satay dev` takes it.
|
|
93
|
+
- **Async only.** Sync (non-async) workflows and tasks are unsupported.
|
|
94
|
+
- **Nondeterminism detection is runtime-only** and compares the durable-call schedule,
|
|
95
|
+
not arguments; there is no static analysis of workflow bodies, and no automatic
|
|
96
|
+
migration of long-running workflows across code versions.
|
|
97
|
+
- **Windows is best-effort** and SQLite on network filesystems is unsupported (ADR-0019).
|
|
98
|
+
|
|
99
|
+
See `docs/` for the specs and `CLAUDE.md` for the build brief.
|
|
100
|
+
|
|
101
|
+
## Requirements
|
|
102
|
+
|
|
103
|
+
- Python **3.12 or 3.13**
|
|
104
|
+
- [`uv`](https://docs.astral.sh/uv/) for environment and dependency management
|
|
105
|
+
- Linux/macOS first-class; Windows best-effort (SQLite on local disk only)
|
|
106
|
+
|
|
107
|
+
## Dev quickstart
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
uv sync # create the venv, install deps + dev group
|
|
111
|
+
uv run ruff check . # lint
|
|
112
|
+
uv run ruff format --check . # format check
|
|
113
|
+
uv run mypy src # type-check (strict)
|
|
114
|
+
uv run pytest tests/unit -q # unit tests
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
The integration and e2e tests that cover Studio and the HTTP API need the `studio` extra;
|
|
118
|
+
without it they skip themselves and the reported count silently drops:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
uv sync --extra studio # then run the full suite
|
|
122
|
+
uv run pytest -q
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Or via the Makefile:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
make dev # uv sync
|
|
129
|
+
make check # ruff + mypy
|
|
130
|
+
make test # unit tests
|
|
131
|
+
make ci # everything CI runs
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Install the pre-push hook (runs the cheap gates before every push):
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
make install-hooks # or: ./scripts/install-hooks.sh
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Layout
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
src/satay/ runtime core (pure Python, near-zero dependencies)
|
|
144
|
+
api/ author decorators, primitives, run handle, TaskContext
|
|
145
|
+
replay/ replay engine, identity, nondeterminism
|
|
146
|
+
journal/ event model + Store seam + codec
|
|
147
|
+
executor/ TaskExecutor seam + LocalTaskExecutor
|
|
148
|
+
timers/ timer + event poll loop
|
|
149
|
+
control/ HTTP control + read API (satay[studio])
|
|
150
|
+
versioning/ code-version stamper
|
|
151
|
+
blobs/ payload spill
|
|
152
|
+
devstack/ `satay dev` orchestrator (satay[studio])
|
|
153
|
+
testing/ fault injection, manual clock, seeded RNG, fixtures
|
|
154
|
+
cli/ core argparse CLI (`satay runs show`)
|
|
155
|
+
tests/{unit,integration,e2e}/
|
|
156
|
+
docs/ specs + ADRs
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## License
|
|
160
|
+
|
|
161
|
+
Apache-2.0. See [LICENSE](LICENSE).
|
satay-0.1.0a1/README.md
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# Satay Runtime
|
|
2
|
+
|
|
3
|
+
Satay is a **local-first durable-execution runtime** for async Python. You write
|
|
4
|
+
ordinary `async def` workflows and tasks; Satay records every durable call to an
|
|
5
|
+
append-only journal and, on crash, **replays the workflow from the top** — reusing
|
|
6
|
+
recorded results and re-executing only what never finished. No external
|
|
7
|
+
infrastructure: it runs in one process over SQLite.
|
|
8
|
+
|
|
9
|
+
```python
|
|
10
|
+
import satay
|
|
11
|
+
|
|
12
|
+
@satay.task()
|
|
13
|
+
async def charge(amount: int) -> str: ...
|
|
14
|
+
|
|
15
|
+
@satay.workflow
|
|
16
|
+
async def checkout(order):
|
|
17
|
+
receipt = await charge(order["total"])
|
|
18
|
+
return receipt
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
The debugger — **Satay Studio**, a local web UI over an HTTP read API — ships in the
|
|
22
|
+
optional `satay[studio]` extra, so applications that embed Satay never carry the
|
|
23
|
+
FastAPI/uvicorn/JS stack into production.
|
|
24
|
+
|
|
25
|
+
## Status
|
|
26
|
+
|
|
27
|
+
**The MVP is built and the full suite is green (V1–V8).** Trust the code over the docs:
|
|
28
|
+
`docs/` describes the intended full system, and where docs and code disagree the code
|
|
29
|
+
wins. `uv run pytest -q` prints the current test count.
|
|
30
|
+
|
|
31
|
+
What works today:
|
|
32
|
+
|
|
33
|
+
- **Durable core + replay.** Workflows replay from the top against an append-only
|
|
34
|
+
SQLite journal (`PRAGMA user_version` schema, forward-only migrations, WAL); recorded
|
|
35
|
+
results are reused and only unfinished work re-executes.
|
|
36
|
+
- **Execution guarantees.** Retries with capped exponential backoff and jittered delays
|
|
37
|
+
off an injected clock, at-least-once task execution, runtime-derived idempotency keys
|
|
38
|
+
readable inside a task body, replay nondeterminism detection, and an `effect_safety`
|
|
39
|
+
policy that guards retryable side-effecting tasks.
|
|
40
|
+
- **Time and events.** Durable `sleep`, `wait_for_event`/`send_event` over a persistent
|
|
41
|
+
inbox, and a timer + event poll loop with FIFO delivery and event-wins-over-timeout.
|
|
42
|
+
- **Composition.** `map`, `gather`, and `start_child`, each item a keyed durable call, so
|
|
43
|
+
a crash mid-fan-out resumes with completed items reused and only unresolved items re-run.
|
|
44
|
+
- **Control plane.** An HTTP control + read API (start, cancel, send event, fork; run
|
|
45
|
+
list, timeline, tree, task detail, compare) with a redactor applied to every read and a
|
|
46
|
+
loopback/token security guard.
|
|
47
|
+
- **Studio.** The Satay Studio SPA ships as a built bundle served by the same process.
|
|
48
|
+
- **Forking and versioning.** Fork a run from a prefix, compare two runs call-by-call, and
|
|
49
|
+
a code-version stamp with a strict/warn/off mismatch policy on resume.
|
|
50
|
+
- **`satay dev`.** One command brings up the lock, store, worker, and Studio server, and
|
|
51
|
+
tears them down in reverse.
|
|
52
|
+
- **Payload spill.** Encoded payloads over 256 KiB spill to content-addressed blob files
|
|
53
|
+
transparently on write and rehydrate on read.
|
|
54
|
+
|
|
55
|
+
Deliberate MVP gaps, so the honesty survives contact:
|
|
56
|
+
|
|
57
|
+
- **No blob GC.** No run deletion and no compaction; blobs accumulate under `./.satay/`
|
|
58
|
+
and removal is manual (ADR-0004). A future GC has to be reference-aware, since forks
|
|
59
|
+
share blobs with their source run.
|
|
60
|
+
- **Fan-out is fail-fast only.** No collect / `return_exceptions` mode for
|
|
61
|
+
`map`/`gather`/`start_child`; the first failure raises and sibling results are discarded
|
|
62
|
+
(ADR-0020).
|
|
63
|
+
- **`satay runs show` is frozen at the V1 event subset** (ADR-0016). Timer, event,
|
|
64
|
+
cancellation, and fork events render as bare type lines; Studio covers the rest.
|
|
65
|
+
- **Fork only accepts terminal runs** (ADR-0004) — completed, failed, or cancelled.
|
|
66
|
+
- **One process, one writer.** No PostgreSQL backend, no multi-worker or distributed
|
|
67
|
+
execution. The cross-process data-dir lock is POSIX `flock` and only `satay dev` takes it.
|
|
68
|
+
- **Async only.** Sync (non-async) workflows and tasks are unsupported.
|
|
69
|
+
- **Nondeterminism detection is runtime-only** and compares the durable-call schedule,
|
|
70
|
+
not arguments; there is no static analysis of workflow bodies, and no automatic
|
|
71
|
+
migration of long-running workflows across code versions.
|
|
72
|
+
- **Windows is best-effort** and SQLite on network filesystems is unsupported (ADR-0019).
|
|
73
|
+
|
|
74
|
+
See `docs/` for the specs and `CLAUDE.md` for the build brief.
|
|
75
|
+
|
|
76
|
+
## Requirements
|
|
77
|
+
|
|
78
|
+
- Python **3.12 or 3.13**
|
|
79
|
+
- [`uv`](https://docs.astral.sh/uv/) for environment and dependency management
|
|
80
|
+
- Linux/macOS first-class; Windows best-effort (SQLite on local disk only)
|
|
81
|
+
|
|
82
|
+
## Dev quickstart
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
uv sync # create the venv, install deps + dev group
|
|
86
|
+
uv run ruff check . # lint
|
|
87
|
+
uv run ruff format --check . # format check
|
|
88
|
+
uv run mypy src # type-check (strict)
|
|
89
|
+
uv run pytest tests/unit -q # unit tests
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
The integration and e2e tests that cover Studio and the HTTP API need the `studio` extra;
|
|
93
|
+
without it they skip themselves and the reported count silently drops:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
uv sync --extra studio # then run the full suite
|
|
97
|
+
uv run pytest -q
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Or via the Makefile:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
make dev # uv sync
|
|
104
|
+
make check # ruff + mypy
|
|
105
|
+
make test # unit tests
|
|
106
|
+
make ci # everything CI runs
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
Install the pre-push hook (runs the cheap gates before every push):
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
make install-hooks # or: ./scripts/install-hooks.sh
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Layout
|
|
116
|
+
|
|
117
|
+
```
|
|
118
|
+
src/satay/ runtime core (pure Python, near-zero dependencies)
|
|
119
|
+
api/ author decorators, primitives, run handle, TaskContext
|
|
120
|
+
replay/ replay engine, identity, nondeterminism
|
|
121
|
+
journal/ event model + Store seam + codec
|
|
122
|
+
executor/ TaskExecutor seam + LocalTaskExecutor
|
|
123
|
+
timers/ timer + event poll loop
|
|
124
|
+
control/ HTTP control + read API (satay[studio])
|
|
125
|
+
versioning/ code-version stamper
|
|
126
|
+
blobs/ payload spill
|
|
127
|
+
devstack/ `satay dev` orchestrator (satay[studio])
|
|
128
|
+
testing/ fault injection, manual clock, seeded RNG, fixtures
|
|
129
|
+
cli/ core argparse CLI (`satay runs show`)
|
|
130
|
+
tests/{unit,integration,e2e}/
|
|
131
|
+
docs/ specs + ADRs
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
## License
|
|
135
|
+
|
|
136
|
+
Apache-2.0. See [LICENSE](LICENSE).
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "satay"
|
|
7
|
+
version = "0.1.0a1"
|
|
8
|
+
description = "Satay Runtime — a local-first durable-execution runtime for async Python workflows."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
13
|
+
authors = [{ name = "Jian", email = "leejianrong2@gmail.com" }]
|
|
14
|
+
keywords = [
|
|
15
|
+
"durable-execution",
|
|
16
|
+
"workflow",
|
|
17
|
+
"asyncio",
|
|
18
|
+
"event-sourcing",
|
|
19
|
+
"replay",
|
|
20
|
+
]
|
|
21
|
+
classifiers = [
|
|
22
|
+
"Development Status :: 3 - Alpha",
|
|
23
|
+
"Intended Audience :: Developers",
|
|
24
|
+
"Programming Language :: Python :: 3",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
28
|
+
"Typing :: Typed",
|
|
29
|
+
]
|
|
30
|
+
# Near-zero core dependency surface (ADR-0013, ADR-0016): the runtime core is
|
|
31
|
+
# stdlib-first. Nothing goes here without an ADR.
|
|
32
|
+
dependencies = []
|
|
33
|
+
|
|
34
|
+
[project.optional-dependencies]
|
|
35
|
+
# The debugger stack (ADR-0013 / ADR-0016). Declared now, wired up in later slices.
|
|
36
|
+
studio = [
|
|
37
|
+
"fastapi>=0.110",
|
|
38
|
+
"uvicorn>=0.29",
|
|
39
|
+
"pydantic>=2.6",
|
|
40
|
+
"typer>=0.12",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[project.scripts]
|
|
44
|
+
# Core, stdlib-only, read-only CLI (argparse). `satay dev` + Typer live in the
|
|
45
|
+
# studio extra (ADR-0016) and are not wired to this entry point.
|
|
46
|
+
satay = "satay.cli:main"
|
|
47
|
+
|
|
48
|
+
[project.urls]
|
|
49
|
+
Homepage = "https://github.com/leejianrong/satay-runtime"
|
|
50
|
+
Repository = "https://github.com/leejianrong/satay-runtime"
|
|
51
|
+
|
|
52
|
+
# uv dev dependency group (PEP 735); installed by default on `uv sync`.
|
|
53
|
+
[dependency-groups]
|
|
54
|
+
dev = [
|
|
55
|
+
"ruff>=0.6",
|
|
56
|
+
"mypy>=1.11",
|
|
57
|
+
"pytest>=8.2",
|
|
58
|
+
"pytest-asyncio>=0.23",
|
|
59
|
+
"pytest-cov>=5.0",
|
|
60
|
+
"hypothesis>=6.100",
|
|
61
|
+
# Test-only HTTP client backing FastAPI's TestClient for the V5 HTTP-surface tests.
|
|
62
|
+
# Not a runtime/studio dependency — the studio server never imports it.
|
|
63
|
+
"httpx>=0.27",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
[tool.hatch.build.targets.wheel]
|
|
67
|
+
packages = ["src/satay"]
|
|
68
|
+
# The built Studio bundle is vendored under the package and shipped in the wheel
|
|
69
|
+
# (ADR-0013: prebuilt in CI, never at pip install). `artifacts` guarantees it is
|
|
70
|
+
# included even though it is build output rather than hand-written source.
|
|
71
|
+
artifacts = ["src/satay/_studio_assets/**"]
|
|
72
|
+
|
|
73
|
+
[tool.hatch.build.targets.sdist]
|
|
74
|
+
include = ["src/satay", "README.md", "LICENSE"]
|
|
75
|
+
|
|
76
|
+
# ---------------------------------------------------------------------------
|
|
77
|
+
# Ruff — lint + format (ADR-0015)
|
|
78
|
+
# ---------------------------------------------------------------------------
|
|
79
|
+
[tool.ruff]
|
|
80
|
+
line-length = 100
|
|
81
|
+
target-version = "py312"
|
|
82
|
+
src = ["src", "tests"]
|
|
83
|
+
|
|
84
|
+
[tool.ruff.lint]
|
|
85
|
+
select = [
|
|
86
|
+
"E", # pycodestyle errors
|
|
87
|
+
"W", # pycodestyle warnings
|
|
88
|
+
"F", # pyflakes
|
|
89
|
+
"I", # isort
|
|
90
|
+
"N", # pep8-naming
|
|
91
|
+
"UP", # pyupgrade
|
|
92
|
+
"B", # flake8-bugbear
|
|
93
|
+
"C4", # flake8-comprehensions
|
|
94
|
+
"SIM", # flake8-simplify
|
|
95
|
+
"PTH", # flake8-use-pathlib
|
|
96
|
+
"RUF", # ruff-specific
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[tool.ruff.lint.per-file-ignores]
|
|
100
|
+
# Tests may use assert and re-import fixtures freely.
|
|
101
|
+
"tests/**" = ["S101"]
|
|
102
|
+
|
|
103
|
+
# ---------------------------------------------------------------------------
|
|
104
|
+
# mypy — strict over the runtime core (ADR-0015)
|
|
105
|
+
# ---------------------------------------------------------------------------
|
|
106
|
+
[tool.mypy]
|
|
107
|
+
python_version = "3.12"
|
|
108
|
+
strict = true
|
|
109
|
+
files = ["src/satay"]
|
|
110
|
+
warn_unused_configs = true
|
|
111
|
+
show_error_codes = true
|
|
112
|
+
|
|
113
|
+
# ---------------------------------------------------------------------------
|
|
114
|
+
# pytest (ADR-0015)
|
|
115
|
+
# ---------------------------------------------------------------------------
|
|
116
|
+
[tool.pytest.ini_options]
|
|
117
|
+
asyncio_mode = "auto"
|
|
118
|
+
testpaths = ["tests"]
|
|
119
|
+
addopts = "-ra"
|
|
120
|
+
|
|
121
|
+
[tool.coverage.run]
|
|
122
|
+
source = ["satay"]
|
|
123
|
+
branch = true
|