Compare commits
106 Commits
d1edecbf60
...
590bdfe727
| Author | SHA1 | Date |
|---|---|---|
|
|
590bdfe727 | |
|
|
7210ba409c | |
|
|
9d664a0aa6 | |
|
|
9d7b71947c | |
|
|
12248a2e5f | |
|
|
56a64da2f6 | |
|
|
74cbee6c69 | |
|
|
f136063239 | |
|
|
80ce54aeb1 | |
|
|
98bc642e72 | |
|
|
48844aa4ac | |
|
|
760abc8268 | |
|
|
bf46f5cc5e | |
|
|
773370a423 | |
|
|
a99a4c9353 | |
|
|
b58889f625 | |
|
|
0a580df63d | |
|
|
617ca1de43 | |
|
|
9373e9434d | |
|
|
ce430fca64 | |
|
|
e42ecb559d | |
|
|
5327b25e1b | |
|
|
2f86dd1a33 | |
|
|
88d538e3a6 | |
|
|
ce38cb6f0e | |
|
|
5c4859860a | |
|
|
23e26b5b32 | |
|
|
a849161fa5 | |
|
|
086962ca36 | |
|
|
1029b81dfc | |
|
|
40d2d9942e | |
|
|
04123019b7 | |
|
|
643e1c861b | |
|
|
57febf045d | |
|
|
20e89334c0 | |
|
|
fe0a724d10 | |
|
|
99be161ec0 | |
|
|
c294a812c3 | |
|
|
17d7341334 | |
|
|
ecf89bfaac | |
|
|
49213d170e | |
|
|
b69a8667d4 | |
|
|
3aaa3bccbd | |
|
|
3b0b37dcb4 | |
|
|
3690e43abc | |
|
|
33d74da8c2 | |
|
|
9afda1c61d | |
|
|
a3d65a6b3d | |
|
|
4e27dcde48 | |
|
|
93322405a1 | |
|
|
359fe75ced | |
|
|
40be587ce2 | |
|
|
ca4582b003 | |
|
|
75385e448d | |
|
|
34d81adef3 | |
|
|
1691be96fd | |
|
|
36ad1f3dd0 | |
|
|
72441124c0 | |
|
|
0cbb850645 | |
|
|
8f0df0ff6f | |
|
|
f75c9cdeab | |
|
|
75cda1933c | |
|
|
f454cefe56 | |
|
|
d0cc06815f | |
|
|
ebf2258b4f | |
|
|
ac61d7a5bf | |
|
|
584ea4e9ad | |
|
|
16dd876b0c | |
|
|
1a9ce915f3 | |
|
|
0b63af020e | |
|
|
6e424d4696 | |
|
|
5724c0516a | |
|
|
0d6d7c2a63 | |
|
|
bd38204fde | |
|
|
340d506940 | |
|
|
64e820e18e | |
|
|
0a3b0efcc6 | |
|
|
634d914161 | |
|
|
451e0acf8a | |
|
|
3d02a8569e | |
|
|
bceca74eb7 | |
|
|
18faffcff7 | |
|
|
7554f90e59 | |
|
|
3705bbe594 | |
|
|
66ac7863b5 | |
|
|
089e158da9 | |
|
|
7987f6b8d7 | |
|
|
70c7e334a7 | |
|
|
62b729a106 | |
|
|
213a298aad | |
|
|
d1d3fc58bb | |
|
|
a2c8af558e | |
|
|
3ad7e7e5dc | |
|
|
4b4cc76263 | |
|
|
99f9beccb2 | |
|
|
5c4d42c7a7 | |
|
|
d887603a1b | |
|
|
ae67e2f429 | |
|
|
1c7d0c7f3e | |
|
|
203a0f7e1f | |
|
|
92c737ad83 | |
|
|
935c8cf656 | |
|
|
84ec895150 | |
|
|
67280c2898 | |
|
|
0e11ff7e9d | |
|
|
148a098ca6 |
|
|
@ -91,6 +91,10 @@ jobs:
|
|||
name: '${{ matrix.os }} Python${{ matrix.python-version }} spawn_backend=${{ matrix.spawn_backend }} tpt_proto=${{ matrix.tpt_proto }}'
|
||||
timeout-minutes: 16
|
||||
runs-on: ${{ matrix.os }}
|
||||
# Windows support is nascent: its full test suite remains
|
||||
# informational, while setup and the `import tractor` smoke below
|
||||
# are hard signals. Promote the test step to required once the
|
||||
# suite is green.
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
|
@ -98,6 +102,7 @@ jobs:
|
|||
os: [
|
||||
ubuntu-latest,
|
||||
macos-latest,
|
||||
windows-latest,
|
||||
]
|
||||
python-version: [
|
||||
'3.13',
|
||||
|
|
@ -118,10 +123,10 @@ jobs:
|
|||
'tcp',
|
||||
'uds',
|
||||
]
|
||||
# https://github.com/orgs/community/discussions/26253#discussioncomment-3250989
|
||||
exclude:
|
||||
# don't do UDS run on macOS (for now)
|
||||
- os: macos-latest
|
||||
# UDS is POSIX-only; Windows has no `AF_UNIX` so the
|
||||
# backend is intentionally unavailable there.
|
||||
- os: windows-latest
|
||||
tpt_proto: 'uds'
|
||||
|
||||
steps:
|
||||
|
|
@ -150,7 +155,14 @@ jobs:
|
|||
- name: List deps tree
|
||||
run: uv tree
|
||||
|
||||
# hard signal for the Windows import-safety fix: `import
|
||||
# tractor` must succeed everywhere, and `HAS_UDS` reflects
|
||||
# platform capability (False on Windows, True on POSIX).
|
||||
- name: 'Smoke: import tractor'
|
||||
run: uv run python -c "import sys; import tractor; from tractor.ipc._uds import HAS_UDS; assert sys.platform != 'win32' or not HAS_UDS; print('import tractor OK | HAS_UDS=', HAS_UDS)"
|
||||
|
||||
- name: Run tests
|
||||
continue-on-error: ${{ matrix.os == 'windows-latest' }}
|
||||
run: >
|
||||
uv run
|
||||
pytest
|
||||
|
|
|
|||
|
|
@ -0,0 +1,79 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
session: f6c84722-471a-4458-9a80-e453fea9029f
|
||||
timestamp: 2026-07-02T15:42:55Z
|
||||
git_ref: 65bf9df5
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260702T154255Z_65bf9df5_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Driver prompt file `ai/prompt-io/prompts/issue_477.md`:
|
||||
|
||||
> attempt to resolve
|
||||
> https://github.com/goodboy/tractor/issues/477
|
||||
> do it with /open-wkt.
|
||||
|
||||
(plus a hard stop-for-human-review deadline of 12:50PM
|
||||
EST the same day)
|
||||
|
||||
Issue #477 asks to factor `ActorNursery.run_in_actor()`
|
||||
(and possibly `Portal.run()`) out of the nursery
|
||||
internals into a new `tractor.to_actor` wrapper
|
||||
subpackage of "higher level one shot" single-remote-task
|
||||
APIs, adopting the `trio.to_thread`/`anyio.to_process`
|
||||
parlance, so that error collection/propagation moves up
|
||||
into the caller's local `trio` scope and the nursery's
|
||||
spawn machinery can eventually drop the
|
||||
`._ria_nursery` coupling.
|
||||
|
||||
## Response summary
|
||||
|
||||
First-cut `tractor.to_actor` subpkg delivering the
|
||||
one-shot API composed purely from the existing
|
||||
daemon-spawn + portal primitives (`start_actor()` +
|
||||
`Portal.run()` + `Portal.cancel_actor()`), leaving the
|
||||
legacy `.run_in_actor()` machinery untouched (formal
|
||||
deprecation deferred until in-repo usage migrates):
|
||||
|
||||
- `to_actor.run(fn, **fn_kwargs) -> Any`: spawn a
|
||||
subactor, schedule `fn` as its lone remote task, wait
|
||||
on and return its result, ALWAYS reaping the subactor
|
||||
(shield-safe `finally`). Remote errors raise in the
|
||||
caller's task as boxed `RemoteActorError`s.
|
||||
- placement variants: `portal=` reuses a running actor
|
||||
(no spawn/reap), `an=` spawns from a caller-managed
|
||||
actor-nursery, neither opens a call-scoped private
|
||||
`open_nursery()` (implicitly booting the runtime,
|
||||
configurable via `runtime_kwargs`).
|
||||
- fail-fast validation before any spawn: non-streaming
|
||||
async fn required; `portal=`/`an=` mutually
|
||||
exclusive; `runtime_kwargs` rejected alongside any
|
||||
placement opt.
|
||||
- `run_in_actor()` TODO/docstring now cross-reference
|
||||
the successor API.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/to_actor/__init__.py` — new subpkg,
|
||||
re-exports `run`
|
||||
- `tractor/to_actor/_api.py` — `run()` +
|
||||
`_invoke_in_subactor()` + `_validate_one_shot_fn()`
|
||||
- `tractor/__init__.py` — top-level `to_actor`
|
||||
re-export
|
||||
- `tractor/runtime/_supervise.py` — comment/docstring
|
||||
pointers from `run_in_actor()` to the successor
|
||||
- `tests/test_to_actor.py` — 11-test suite covering
|
||||
all placement variants, error relay, the concurrent
|
||||
worker-pool-ish pattern and arg validation
|
||||
- `examples/parallelism/to_actor_one_shots.py` —
|
||||
runnable demo (auto-collected by
|
||||
`test_docs_examples.py`)
|
||||
|
||||
## Human edits
|
||||
|
||||
None yet — pending human review (work paused before the
|
||||
12:50PM EST deadline per the driver prompt).
|
||||
|
|
@ -0,0 +1,100 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
timestamp: 2026-07-02T15:42:55Z
|
||||
git_ref: 65bf9df5
|
||||
diff_cmd: git diff main..wkt/to_actor_subpkg
|
||||
---
|
||||
|
||||
# Raw AI output (diff-ref mode)
|
||||
|
||||
All generated code is committed on the
|
||||
`wkt/to_actor_subpkg` branch; per diff-ref mode each
|
||||
file's verbatim content is reachable via the pointers
|
||||
below rather than duplicated here.
|
||||
|
||||
## Generated files
|
||||
|
||||
> `git diff main..wkt/to_actor_subpkg -- tractor/to_actor/__init__.py`
|
||||
|
||||
New subpackage init: module docstring establishing the
|
||||
`trio.to_thread`/`anyio.to_process` "run it over there"
|
||||
parlance for actors, plus the single public re-export
|
||||
`run as run` from `._api`.
|
||||
|
||||
> `git diff main..wkt/to_actor_subpkg -- tractor/to_actor/_api.py`
|
||||
|
||||
The one-shot invocation impl, composed entirely from the
|
||||
lower level daemon-spawn + portal primitives as
|
||||
prescribed by issue #477:
|
||||
|
||||
- `_validate_one_shot_fn()`: the `Portal.run()`
|
||||
non-streaming-async-fn constraint checked up-front,
|
||||
before any subactor is spawned.
|
||||
- `_invoke_in_subactor()`: `an.start_actor()` ->
|
||||
`Portal.run()` -> always-reap via
|
||||
`Portal.cancel_actor()` in a `finally` (the cancel
|
||||
req's bounded wait is internally shielded so the reap
|
||||
also runs under caller-scope cancellation).
|
||||
- `run()`: the public API. Placement options:
|
||||
`portal=` (reuse a running actor, no spawn/reap),
|
||||
`an=` (spawn from a caller-managed nursery), or
|
||||
neither (private `open_nursery()` scoped to the call,
|
||||
implicitly booting the runtime when needed, tunable
|
||||
via pass-through `runtime_kwargs`). Spawn opts mirror
|
||||
`ActorNursery.start_actor()`; `**fn_kwargs` are
|
||||
relayed to the remote task. Errors raise in the
|
||||
caller's task as boxed `RemoteActorError`s.
|
||||
`runtime_kwargs` alongside any placement opt is a
|
||||
hard `ValueError`, never silently ignored.
|
||||
|
||||
> `git diff main..wkt/to_actor_subpkg -- tractor/__init__.py`
|
||||
|
||||
Top-level `from . import to_actor as to_actor`
|
||||
re-export.
|
||||
|
||||
> `git diff main..wkt/to_actor_subpkg -- tractor/runtime/_supervise.py`
|
||||
|
||||
Comment/docstring-only: the `run_in_actor()` deprecation
|
||||
TODO now points at the implemented `.to_actor.run()`
|
||||
successor (checkbox ticked) and the method docstring
|
||||
gains a NOTE steering users to the new API; remaining
|
||||
TODO items are the `DeprecationWarning` emission +
|
||||
in-repo usage migration.
|
||||
|
||||
> `git diff main..wkt/to_actor_subpkg -- tests/test_to_actor.py`
|
||||
|
||||
11-test suite: private-nursery one-shot, implicit
|
||||
runtime boot via `runtime_kwargs`, remote-error relay to
|
||||
the caller's task (bare + caller-managed nursery),
|
||||
caller-nursery spawn, portal reuse w/o implicit reap,
|
||||
the concurrent worker-pool-ish pattern (local `trio`
|
||||
nursery x shared `an`), and the four validation
|
||||
rejections (sync fn, async-gen fn, `portal`+`an`
|
||||
combo, `runtime_kwargs`+placement combo).
|
||||
|
||||
> `git diff main..wkt/to_actor_subpkg -- examples/parallelism/to_actor_one_shots.py`
|
||||
|
||||
Runnable example (auto-collected by
|
||||
`test_docs_examples.py`): the fully-implicit one-shot
|
||||
plus the concurrent worker-pool-ish prime-check pattern
|
||||
against a shared caller-managed actor-nursery.
|
||||
|
||||
## Test runs (verbatim)
|
||||
|
||||
```
|
||||
tests/test_to_actor.py .......... [100%]
|
||||
============= 10 passed in 4.29s =============
|
||||
```
|
||||
|
||||
Regression subset for touched modules
|
||||
(`test_local.py test_rpc.py test_spawning.py
|
||||
test_cancellation.py`):
|
||||
|
||||
```
|
||||
38 passed, 1 xfailed, 24 warnings in 80.71s (0:01:20)
|
||||
```
|
||||
|
||||
(warnings are pre-existing stdlib `os.fork()`
|
||||
DeprecationWarnings from the mp spawn backends, not
|
||||
introduced by this change)
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
session: b8ec2ffe-1e47-4db5-8bc3-5bebc5feaaf6
|
||||
timestamp: 2026-07-02T15:50:06Z
|
||||
git_ref: 65bf9df5
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260702T155006Z_65bf9df5_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
From `ai/prompt-io/prompts/issue_473.md`:
|
||||
|
||||
> NOTE: you MUST pause this work at 12:50PM EST (BEFORE
|
||||
> your weekly limit reset) for review by a human!
|
||||
>
|
||||
> resolve GH #473: https://github.com/goodboy/tractor/issues/474
|
||||
> do it with /open-wkt.
|
||||
|
||||
(The prompt's issue-number/URL mismatch was resolved in
|
||||
favor of #473 — file name, session name and prompt text
|
||||
all say #473; the `/474` URL is a typo.)
|
||||
|
||||
GH #473: "Root-cause UDS-on-macOS —
|
||||
`uds_transport_actor_tree` example fails on CI".
|
||||
|
||||
## Response summary
|
||||
|
||||
Worked all four #473 next-step checkboxes in wkt
|
||||
`uds_macos_473`:
|
||||
|
||||
1. **stderr surfacing**: `test_docs_examples.py` now
|
||||
raises with the full subproc stderr (+stdout) on ANY
|
||||
non-zero exit. The old last-line-'Error' check could
|
||||
never fire for `tractor` crashes since root-actor
|
||||
stderr always ends with the strict-EG collapse note
|
||||
`( ^^^ this exc was collapsed from a group ^^^ )` —
|
||||
proven against the real PR #460 macOS CI log (bare
|
||||
`assert 1 == 0`, no traceback).
|
||||
2. **root-cause (linux-provable layer)**: macOS-only
|
||||
addr corruption in
|
||||
`MsgpackUDSStream.get_stream_addrs()` — no
|
||||
`SO_PASSCRED`/autobind on darwin means the accept
|
||||
side's `getpeername()` is `''`, and the
|
||||
`(str(), str())` arm took `peername` unconditionally →
|
||||
`Path('')` garbage addrs on every accepted conn.
|
||||
Proven + fixed via linux no-autobind simulation.
|
||||
Possibly not the final macOS crasher (non-fatal on
|
||||
linux-sim); the diagnostic patch guarantees the next
|
||||
macOS CI run shows any remaining layer.
|
||||
3. **CI matrix**: removed the `macos-latest`+`uds`
|
||||
exclude.
|
||||
4. **un-skip**: dropped the macOS+CI skip of the example.
|
||||
|
||||
Also: `start_listener()` bindspace mkdir hardened
|
||||
(`parents=True, exist_ok=True`), example docstring
|
||||
peer-pid mechanism corrected for macOS.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tests/test_docs_examples.py` — surface full stderr on
|
||||
non-zero exit; remove macOS skip of the UDS example
|
||||
- `tractor/ipc/_uds.py` — fix no-autobind
|
||||
`get_stream_addrs()` arm; harden bindspace mkdir;
|
||||
document autobind semantics
|
||||
- `.github/workflows/ci.yml` — add macOS UDS leg (remove
|
||||
matrix exclude)
|
||||
- `examples/uds_transport_actor_tree.py` — platform-
|
||||
correct peer-pid docs
|
||||
|
||||
## Human edits
|
||||
|
||||
None yet — pending human review (hard-stop review
|
||||
checkpoint at 12:50PM EST per prompt); commit staging and
|
||||
any edits are the human's.
|
||||
|
|
@ -0,0 +1,101 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
timestamp: 2026-07-02T15:50:06Z
|
||||
git_ref: 65bf9df5
|
||||
diff_cmd: git diff main..wkt/uds_macos_473
|
||||
---
|
||||
|
||||
# Raw output — GH #473 UDS-on-macOS root-cause session
|
||||
|
||||
NOTE: code output is diff-referenced (not copied) per
|
||||
prompt-io diff-ref mode; all generated code is on branch
|
||||
`wkt/uds_macos_473` relative to `main` (65bf9df5).
|
||||
|
||||
## Diagnostic narrative (verbatim)
|
||||
|
||||
Root-cause work proceeded by linux-side simulation since no
|
||||
macOS host is available:
|
||||
|
||||
1. Pulled the actual macOS CI failure log from PR #460 run
|
||||
28343878933 (job 84115107992): the failure is a bare
|
||||
`assert 1 == 0` on `proc.returncode` with NO stderr
|
||||
surfaced — the harness only re-raised when the LAST
|
||||
stderr line contained 'Error'.
|
||||
|
||||
2. Reproduced the stderr-swallow mechanism on linux: any
|
||||
`tractor` root-actor crash ends stderr with the
|
||||
strict-EG collapse note
|
||||
`( ^^^ this exc was collapsed from a group ^^^ )` which
|
||||
never matches 'Error' — so EVERY possible crash was
|
||||
swallowed. (Verified by sabotaging the runtime dir via
|
||||
an over-long `XDG_RUNTIME_DIR` → `OSError: AF_UNIX path
|
||||
too long` → rc=1 + swallowed.)
|
||||
|
||||
3. Found + proved a macOS-only addr-corruption bug in
|
||||
`MsgpackUDSStream.get_stream_addrs()`: the
|
||||
`(str(), str())` match-arm unconditionally took
|
||||
`peername`, but on no-autobind platforms (macOS lacks
|
||||
linux's `SO_PASSCRED`-triggered autobind) the accept
|
||||
side's `getpeername()` is `''` → `Path('')` garbage
|
||||
laddr/raddr on EVERY accepted UDS conn. Simulated on
|
||||
linux by nulling `SO_PASSCRED` (no autobind → same `''`
|
||||
shape): pre-fix the example printed
|
||||
`listener sock file: .`; post-fix it prints the real
|
||||
registry sockpath. Non-fatal on linux-sim (rc=0), so
|
||||
possibly not the final macOS crasher — the diagnostic
|
||||
patch guarantees the next macOS CI run reveals any
|
||||
remaining layer.
|
||||
|
||||
4. Falsified the missing-parent-dir theory:
|
||||
`get_rt_dir()` already `mkdir(parents=True,
|
||||
exist_ok=True)`s at import (and macOS TCP CI passes),
|
||||
so `~/Library/Caches/TemporaryItems` absence cannot be
|
||||
the crasher. Hardened `start_listener()`'s bindspace
|
||||
mkdir anyway (custom `filedir` case + racing actors).
|
||||
|
||||
## Generated changes (diff pointers)
|
||||
|
||||
> `git diff main..wkt/uds_macos_473 -- tests/test_docs_examples.py`
|
||||
|
||||
- always raise with FULL subproc stderr (+stdout) on any
|
||||
non-zero example exit; keep legacy last-line 'Error'
|
||||
check for zero-rc cases; drop the macOS+CI skip of
|
||||
`uds_transport_actor_tree.py` (GH #473 next-step).
|
||||
|
||||
> `git diff main..wkt/uds_macos_473 -- tractor/ipc/_uds.py`
|
||||
|
||||
- `get_stream_addrs()`: document the autobind semantics
|
||||
(bytes = linux abstract-ns autobind artifact), add
|
||||
no-autobind `(str, str)` arm picking the non-empty name
|
||||
(`peername` connect-side, `sockname` accept-side) with
|
||||
an empty-pair `ValueError` guard.
|
||||
- `start_listener()`: `bs.mkdir(parents=True,
|
||||
exist_ok=True)`.
|
||||
|
||||
> `git diff main..wkt/uds_macos_473 -- .github/workflows/ci.yml`
|
||||
|
||||
- remove the `macos-latest`+`uds` matrix exclude so
|
||||
UDS-on-macOS is exercised by CI (GH #473 next-step).
|
||||
|
||||
> `git diff main..wkt/uds_macos_473 -- examples/uds_transport_actor_tree.py`
|
||||
|
||||
- docs nit: peer-pid mechanism is `SO_PEERCRED` on linux,
|
||||
`LOCAL_PEERPID` on macOS.
|
||||
|
||||
## Verification (verbatim summary)
|
||||
|
||||
- macOS-shape sim (no autobind) + fix: example rc=0 with
|
||||
correct listener sockpath.
|
||||
- native linux post-fix: example rc=0, autobind arms
|
||||
unchanged.
|
||||
- sabotage smoke-test: diagnostic patch surfaces the full
|
||||
EG traceback incl. collapse-note line.
|
||||
- `pytest tests/ipc/ tests/test_2way.py tests/discovery/
|
||||
--tpt-proto uds`: 61 passed, 1 `TooSlowError` flake
|
||||
(test_simple_rpc) that passes solo in 2.2s — attributed
|
||||
to a concurrent full-suite run (other session) loading
|
||||
the host.
|
||||
- full `tests/test_docs_examples.py` run pending at
|
||||
raw-file write time (queued behind the concurrent
|
||||
session's suite).
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
session: b6b42e23-0454-4d9b-be1c-0a89d65aed1b
|
||||
timestamp: 2026-07-02T15:56:26Z
|
||||
git_ref: 65bf9df5
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260702T155626Z_65bf9df5_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
From `ai/prompt-io/prompts/issue_470.md`:
|
||||
|
||||
> attempt to resolve
|
||||
> https://github.com/goodboy/tractor/issues/470
|
||||
> do it with /open-wkt, ensure you /run-tests on all
|
||||
> changes
|
||||
|
||||
(plus a hard pause-for-human-review deadline of
|
||||
12:50PM EST.)
|
||||
|
||||
Issue #470 asks to trim the ~0.42s `import tractor`
|
||||
cost — which dominates per-actor spawn latency on the
|
||||
`trio` backend — by lazy-importing heavy/optional deps
|
||||
(`pdbp`, `stackscope`, `multiaddr`, + audit of
|
||||
`colorlog`/`bidict`/`wrapt`/`setproctitle`).
|
||||
|
||||
## Response summary
|
||||
|
||||
Profiling showed the issue's dep-list only accounted
|
||||
for ~20ms; the dominant cost (~244ms) was
|
||||
`log.get_logger()`'s `get_caller_mod()` calling
|
||||
`inspect.stack()` at module level in ~39 modules —
|
||||
each call walks every stack frame (deep during nested
|
||||
imports) and scans `sys.modules` per frame via
|
||||
`inspect.getmodule()`.
|
||||
|
||||
Changes, in impact order:
|
||||
|
||||
1. `get_caller_mod()` -> `sys._getframe()` +
|
||||
`f_globals['__name__']` `sys.modules` lookup
|
||||
(~240ms saved).
|
||||
2. Issue's lazy-import checklist: `bidict`,
|
||||
`multiaddr`, `colorlog`, `wrapt` moved to
|
||||
`TYPE_CHECKING`/function-local imports;
|
||||
`platformdirs` function-local; `asyncio` +
|
||||
`.to_asyncio` deferred out of the `devx.debug` +
|
||||
`spawn._entry` eager paths (~15ms saved).
|
||||
3. PEP 562 `__getattr__` on `tractor/__init__.py`
|
||||
preserving public `tractor.to_asyncio` attr access.
|
||||
|
||||
Results: `import tractor` 0.42s -> ~0.145s (~65%);
|
||||
sequential `start_actor` latency 0.40-0.44s ->
|
||||
~0.179s/actor. `pdbp` (needs `_repl.py` class-base
|
||||
restructure) + `platformdirs` (needs
|
||||
`UDSAddress.def_bindspace` protocol rework) documented
|
||||
as follow-ups.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/log.py` — `get_caller_mod()` perf fix +
|
||||
lazy `colorlog`
|
||||
- `tractor/__init__.py` — PEP 562 lazy `to_asyncio`
|
||||
- `tractor/discovery/_addr.py` — `bidict` ->
|
||||
`TYPE_CHECKING`
|
||||
- `tractor/discovery/_multiaddr.py` — lazy `multiaddr`
|
||||
- `tractor/ipc/_tcp.py`, `tractor/ipc/_uds.py` —
|
||||
`Multiaddr` -> `TYPE_CHECKING`
|
||||
- `tractor/runtime/_state.py` — lazy `platformdirs`
|
||||
- `tractor/devx/_frame_stack.py` — lazy `pdbp` +
|
||||
`wrapt`
|
||||
- `tractor/devx/debug/_trace.py`,
|
||||
`tractor/devx/debug/_tty_lock.py` — lazy `asyncio` +
|
||||
`.to_asyncio`
|
||||
- `tractor/spawn/_entry.py` — lazy
|
||||
`run_as_asyncio_guest`
|
||||
|
||||
## Human edits
|
||||
|
||||
None yet — pending user review at the 12:50PM EST
|
||||
pause gate (test-suite results reported in-session).
|
||||
|
|
@ -0,0 +1,122 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
timestamp: 2026-07-02T15:56:26Z
|
||||
git_ref: 65bf9df5
|
||||
diff_cmd: git diff main..wkt/boot_latency_470
|
||||
---
|
||||
|
||||
# Raw AI output — gh #470 `import tractor` latency trim
|
||||
|
||||
All generated code is committed on the
|
||||
`wkt/boot_latency_470` branch; per diff-ref mode each
|
||||
file's content is referenced via its diff instead of
|
||||
copied verbatim.
|
||||
|
||||
## Profiling findings (verbatim analysis output)
|
||||
|
||||
Baseline: `import tractor` ~0.39-0.42s wall.
|
||||
|
||||
`python -X importtime` + `cProfile` traced the cost NOT
|
||||
primarily to third-party deps (the issue's hypothesis)
|
||||
but to `tractor/log.py:get_logger()` calling
|
||||
`get_caller_mod()` -> `inspect.stack()` at module level
|
||||
in ~39 tractor modules:
|
||||
|
||||
- `inspect.stack()` builds `FrameInfo` (incl. src-file
|
||||
and line-context resolution) for EVERY frame on the
|
||||
stack; during nested imports the stack is dozens of
|
||||
importlib frames deep.
|
||||
- each `FrameInfo` resolution calls
|
||||
`inspect.getmodule()` which scans all of
|
||||
`sys.modules` per frame (1.4M `ismodule()` calls in
|
||||
one profiled import).
|
||||
- aggregate: ~244ms of tractor-own module "self" time
|
||||
vs ~20ms for ALL the issue-listed third-party deps
|
||||
(`pdbp` ~10ms, `bidict` ~4.5ms, `multiaddr` ~3.5ms,
|
||||
`wrapt`/`colorlog` ~1ms each); `trio` itself is
|
||||
~70-100ms and unavoidable.
|
||||
|
||||
## Generated changes
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/log.py`
|
||||
|
||||
`get_caller_mod()` rewritten from `inspect.stack()` +
|
||||
`inspect.getmodule()` to `sys._getframe(frames_up)` +
|
||||
`frame.f_globals['__name__']` -> `sys.modules` lookup
|
||||
(O(1) vs O(stack x sys.modules)). Unused `inspect`
|
||||
imports dropped; `FrameType` imported from `types`.
|
||||
Also `colorlog` lazy-imported inside
|
||||
`get_console_log()`.
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/discovery/_addr.py`
|
||||
|
||||
`bidict` import moved under `TYPE_CHECKING`
|
||||
(annotation-only use; `_address_types` is a plain dict
|
||||
literal).
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/discovery/_multiaddr.py`
|
||||
|
||||
`from __future__ import annotations` added; `multiaddr`
|
||||
import moved under `TYPE_CHECKING` + function-local
|
||||
imports in `mk_maddr()`/`parse_maddr()`.
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/ipc/_tcp.py tractor/ipc/_uds.py`
|
||||
|
||||
`Multiaddr` imports moved under `TYPE_CHECKING`
|
||||
(annotation-only in both transports).
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/runtime/_state.py`
|
||||
|
||||
`platformdirs` lazy-imported inside `get_rt_dir()`
|
||||
(NOTE: still imported eagerly via
|
||||
`UDSAddress.def_bindspace` class-var eval; see
|
||||
follow-ups).
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/devx/_frame_stack.py`
|
||||
|
||||
`pdbp` + `wrapt` lazy-imported inside
|
||||
`hide_runtime_frames()` / `api_frame()` respectively.
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/devx/debug/_trace.py tractor/devx/debug/_tty_lock.py`
|
||||
|
||||
`asyncio` moved to `TYPE_CHECKING` + call-site local
|
||||
imports (`asyncio.current_task()` sites);
|
||||
`tractor.to_asyncio.run_trio_task_in_future` imports
|
||||
moved into the infected-aio runtime branches.
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/spawn/_entry.py`
|
||||
|
||||
`run_as_asyncio_guest` import moved into the
|
||||
`infect_asyncio=True` branches of `_mp_main()` /
|
||||
`_trio_main()`.
|
||||
|
||||
> `git diff main..wkt/boot_latency_470 -- tractor/__init__.py`
|
||||
|
||||
PEP 562 module `__getattr__` added so
|
||||
`tractor.to_asyncio` attr-access still works (required
|
||||
by `tests/test_child_manages_service_nursery.py` and
|
||||
any downstream user) while keeping `asyncio` off the
|
||||
eager import path.
|
||||
|
||||
## Measured results (verbatim)
|
||||
|
||||
- `import tractor`: 0.39-0.42s -> ~0.145s (~65% cut)
|
||||
- `start_actor` spawn+boot+reg+cancel: ~0.40-0.44s ->
|
||||
~0.179s/actor (n=5 sequential, warm parent)
|
||||
- post-change eager-module check: only `pdbp` +
|
||||
`platformdirs` of the issue's list remain eager.
|
||||
|
||||
## Known follow-ups (not implemented, deadline-bound)
|
||||
|
||||
- `pdbp` (~10ms): still eager via
|
||||
`devx/debug/_repl.py` class bases
|
||||
(`class PdbREPL(pdbp.Pdb)`) + `_tty_lock.py`
|
||||
module-level `@pdbp.hideframe`; needs `_repl`
|
||||
restructure + PEP 562 in `devx.debug.__init__`.
|
||||
- `platformdirs` (~1.5ms): eager via
|
||||
`UDSAddress.def_bindspace: ClassVar = get_rt_dir()`
|
||||
class-body call; needs `Address`-protocol rework of
|
||||
`def_bindspace` to a lazy accessor.
|
||||
- `stackscope` + `setproctitle`: already lazy/absent —
|
||||
no change needed.
|
||||
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
session: f4da6654-63f9-4641-b567-f200da46d697
|
||||
timestamp: 2026-07-02T16:16:24Z
|
||||
git_ref: 65bf9df5
|
||||
scope: tests
|
||||
substantive: true
|
||||
raw_file: 20260702T161624Z_65bf9df5_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
> attempt to resolve
|
||||
> https://github.com/goodboy/tractor/issues/474
|
||||
> do it with /open-wkt.
|
||||
|
||||
Issue #474: "We need test suite for
|
||||
`.trionics.start_or_cancel()`" — dig out the use case
|
||||
from `modden` as a unit test (and provide motivation
|
||||
for upstream `trio` to possibly provide better
|
||||
porcelain around this case). The wrapper landed via
|
||||
PR #464 with no tests.
|
||||
|
||||
## Response summary
|
||||
|
||||
New `tests/trionics/test_taskc.py` (9 tests) covering
|
||||
`start_or_cancel()`, authored in wkt
|
||||
`start_or_cancel_tests_474`.
|
||||
|
||||
Behaviour was first probed empirically (trio 0.29):
|
||||
the lossy `RuntimeError('child exited without calling
|
||||
task_status.started()')` only fires when the child
|
||||
exits pre-`.started()` WITHOUT propagating the ambient
|
||||
`Cancelled` — i.e. when the child (or lib code it
|
||||
calls) absorbs the cancel in a graceful-teardown
|
||||
pattern; a well-behaved child surfaces `Cancelled`
|
||||
straight out of `.start()`. The `modden`
|
||||
`progman.open_wks()` use case was reconstructed from
|
||||
`modden/runtime/progman.py` accordingly.
|
||||
|
||||
Tests (each `use_start_or_cancel` parametrization also
|
||||
pins upstream trio's current lossy behaviour as
|
||||
wart-documentation):
|
||||
|
||||
- `test_sibling_err_not_masked_by_startup_rte` — the
|
||||
`modden` case: sibling error OOB-cancels the shared
|
||||
nursery scope; with the wrapper ONLY the root-cause
|
||||
`ValueError` escapes; bare `.start()` adds the lossy
|
||||
RTE alongside.
|
||||
- `test_pure_oob_cancel_not_morphed_to_rte` — plain
|
||||
ancestor `cs.cancel()`: wrapper → clean exit; bare
|
||||
→ eg-wrapped RTE.
|
||||
- `test_genuine_startup_rte_still_raised` — no
|
||||
cancellation → protocol-bug RTE re-raised same as
|
||||
bare.
|
||||
- `test_childs_own_rte_never_demoted_to_cancel` — a
|
||||
child's own `RuntimeError('never got started!')` /
|
||||
`RuntimeError(1234)` under ambient cancel is never
|
||||
demoted to `Cancelled` (exact-msg-match + str-guard
|
||||
regression cover).
|
||||
- `test_started_value_and_args_passthru` — happy path:
|
||||
positional args, `name=`, `.started()` value.
|
||||
|
||||
Verified: 9/9 pass; 0 flakes across 50 hammer runs;
|
||||
two impl mutations (checkpoint removed; guard relaxed
|
||||
to substring match) each caught by exactly the
|
||||
targeted tests; `tests/trionics/` +
|
||||
`tests/test_trioisms.py` subset green (23 passed,
|
||||
5 xfailed); ruff clean; 69-col style.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tests/trionics/test_taskc.py` — new
|
||||
`start_or_cancel()` unit-test suite (gh #474).
|
||||
|
||||
## Human edits
|
||||
|
||||
Pending review — session paused pre-commit per user
|
||||
deadline; nothing committed as of this entry.
|
||||
|
|
@ -0,0 +1,107 @@
|
|||
---
|
||||
model: claude-fable-5
|
||||
service: claude
|
||||
timestamp: 2026-07-02T16:16:24Z
|
||||
git_ref: 65bf9df5
|
||||
diff_cmd: git diff main..wkt/start_or_cancel_tests_474
|
||||
---
|
||||
|
||||
# Raw output — gh #474 `start_or_cancel()` test suite
|
||||
|
||||
## Generated test code
|
||||
|
||||
> `git diff main..wkt/start_or_cancel_tests_474 -- tests/trionics/test_taskc.py`
|
||||
|
||||
Prose summary of the generated module
|
||||
(`tests/trionics/test_taskc.py`):
|
||||
|
||||
- module docstring framing the `trio.Nursery.start()`
|
||||
startup-cancellation wart, the wrapper's repair, and
|
||||
the intent that `use_start_or_cancel=False` params
|
||||
double as upstream-trio wart-documentation (break on
|
||||
a trio upgrade → upstream may have shipped porcelain,
|
||||
re-audit the wrapper); cites gh #474 / PR #464 and
|
||||
`modden`'s `progman.open_wks()` as the source use
|
||||
case.
|
||||
- shared children: `absorbs_cancel_pre_started()` (the
|
||||
graceful-teardown cancel-absorber which triggers the
|
||||
lossy RTE path) + `raise_val_err()` (fast-erroring
|
||||
sibling).
|
||||
- `test_sibling_err_not_masked_by_startup_rte`
|
||||
(parametrized `use_start_or_cancel`): asserts eg
|
||||
contains exactly one `ValueError` and, wrapper-case,
|
||||
NO residual RTE (`eg.split(ValueError)` remainder is
|
||||
`None`); bare-case, the residual RTE carries trio's
|
||||
exact "child exited without calling" wording.
|
||||
- `test_pure_oob_cancel_not_morphed_to_rte`
|
||||
(parametrized): wrapper-case runs clean and asserts
|
||||
`cs.cancelled_caught`; bare-case asserts the
|
||||
eg-wrapped RTE.
|
||||
- `test_genuine_startup_rte_still_raised`
|
||||
(parametrized): no-cancel protocol bug → RTE with
|
||||
trio's wording from both call forms.
|
||||
- `test_childs_own_rte_never_demoted_to_cancel`
|
||||
(parametrized `rte_arg` in `'never got started!'`,
|
||||
`1234`): child cancels the ambient scope then raises
|
||||
its own RTE synchronously (no checkpoint between →
|
||||
deterministically under-cancellation at catch time);
|
||||
asserts the RTE survives with `args[0]` intact.
|
||||
- `test_started_value_and_args_passthru`: `.started()`
|
||||
value, positional args and the `name=` kwarg (via
|
||||
`trio.lowlevel.current_task().name`) all forward.
|
||||
|
||||
## Non-code output (verbatim highlights)
|
||||
|
||||
Behaviour probe (trio 0.29, scratchpad scripts) — the
|
||||
decision basis for the test shapes:
|
||||
|
||||
```
|
||||
== B-sibling-err use_soc=False
|
||||
start raised: RuntimeError('child exited without
|
||||
calling task_status.started()')
|
||||
top-level: ExceptionGroup([ValueError('sibling blew
|
||||
up!'), RuntimeError('child exited without calling
|
||||
task_status.started()')])
|
||||
== B-cs-cancel use_soc=False
|
||||
top-level: ExceptionGroup([RuntimeError('child
|
||||
exited without calling task_status.started()')])
|
||||
== B-sibling-err use_soc=True
|
||||
start raised: Cancelled()
|
||||
top-level: ExceptionGroup([ValueError('sibling blew
|
||||
up!')])
|
||||
== B-cs-cancel use_soc=True
|
||||
start raised: Cancelled()
|
||||
top-level: clean return
|
||||
== own-rte-under-cancel (both) -> RTE('never got
|
||||
started!') propagates unchanged
|
||||
```
|
||||
|
||||
Key finding: with a WELL-BEHAVED (non-absorbing) child
|
||||
an OOB ancestor cancel surfaces `Cancelled` directly
|
||||
from `.start()` on trio 0.29 — the lossy RTE requires
|
||||
the child to absorb its cancel pre-`.started()`, which
|
||||
is what `modden`'s `open_from_wks` teardown did. Trio's
|
||||
nursery-exit wait defers cancel delivery to children,
|
||||
so all tested shapes are deterministic (0 flakes / 50
|
||||
runs).
|
||||
|
||||
Mutation verification:
|
||||
|
||||
```
|
||||
mutation 1 (checkpoint_if_cancelled removed):
|
||||
FAILED test_sibling_err_not_masked_by_startup_rte[True]
|
||||
FAILED test_pure_oob_cancel_not_morphed_to_rte[True]
|
||||
mutation 2 (guard relaxed to 'started' substring,
|
||||
isinstance dropped):
|
||||
FAILED test_childs_own_rte_never_demoted_to_cancel[never got started!]
|
||||
FAILED test_childs_own_rte_never_demoted_to_cancel[1234]
|
||||
```
|
||||
|
||||
Final runs:
|
||||
|
||||
```
|
||||
tests/trionics/test_taskc.py: 9 passed in 0.03s
|
||||
hammer: 0/50 runs failed
|
||||
tests/trionics/ + tests/test_trioisms.py:
|
||||
23 passed, 5 xfailed in 3.02s
|
||||
```
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_0799212ebffe42arY96czXn89F
|
||||
timestamp: 2026-08-11T23:38:33Z
|
||||
git_ref: 7cbd64ee
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260811T233833Z_7cbd64ee_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Open a new isolated worktree in the local Tractor repository and draft a fix
|
||||
for `BroadcastReceiver` reporting that a lagged one-slot consumer dropped
|
||||
zero values when one value had actually been displaced.
|
||||
|
||||
## Response summary
|
||||
|
||||
Corrected the off-by-one lag count while preserving cursor recovery and added
|
||||
deterministic narrow- and wider-window regressions for exact loss reporting.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/trionics/_broadcast.py` - exact broadcast overrun count.
|
||||
- `tests/test_task_broadcasting.py` - lag count and recovery regression.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - generated output follows the user's diagnosed edge case.
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-11T23:38:33Z
|
||||
git_ref: 7cbd64ee
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
The user asked for a Tractor fix in a new isolated worktree after a live piker
|
||||
failure reported:
|
||||
|
||||
```text
|
||||
tractor.trionics._broadcast.Lagged:
|
||||
Task `piker.brokers.ib.broker.handle_order_requests` overrun and
|
||||
dropped `0` values
|
||||
```
|
||||
|
||||
Inspection showed the lag exception was valid but its count was off by one.
|
||||
`BroadcastReceiver.receive_nowait()` treats `seq` as a deque index. With a
|
||||
one-entry queue, index zero is the only retained value and `seq == 1` already
|
||||
means one value was displaced. The old `seq - maxlen` calculation therefore
|
||||
reported zero instead of one.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/trionics/_broadcast.py`
|
||||
|
||||
Adjusted the lag count to `seq - maxlen + 1` and documented why the first
|
||||
invalid deque index must be included. The existing Tokio-style cursor reset
|
||||
remains unchanged.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_task_broadcasting.py`
|
||||
|
||||
Added a deterministic parameterized regression covering a one-slot queue
|
||||
with one dropped value and a three-slot queue with two dropped values. The
|
||||
test keeps the root receiver idle while a child subscriber synchronously
|
||||
drains each produced value, asserts the exact `Lagged` message, and proves the
|
||||
next receive resumes at the oldest retained item.
|
||||
|
||||
Verification output:
|
||||
|
||||
```text
|
||||
.. [100%]
|
||||
2 passed in 0.04s
|
||||
|
||||
.......... [100%]
|
||||
10 passed in 4.65s
|
||||
```
|
||||
|
||||
The targeted import resolved to the new Tractor worktree. Python compilation
|
||||
and `git diff --check` passed. Adversarial review found no actionable issues;
|
||||
zero-capacity channels remain a pre-existing untested edge outside this fix.
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_0799212ebffe42arY96czXn89F
|
||||
timestamp: 2026-08-12T01:23:24Z
|
||||
git_ref: 06c4af17
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260812T012324Z_06c4af17_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Iteratively refine Tractor PR 490. For item one, correct broadcast statistics
|
||||
queue counts and Trio event checks, verify and review the exact change, then
|
||||
return a complete commit plan before proceeding.
|
||||
|
||||
## Response summary
|
||||
|
||||
Converted subscriber cursor indexes into clamped retained queue counts,
|
||||
removed deprecated event truthiness, and added deterministic state and
|
||||
deprecation regressions.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/trionics/_broadcast.py` - accurate queue and waiter statistics.
|
||||
- `tests/test_task_broadcasting.py` - retained-count and event regression.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - generated output follows the requested first iterative item.
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-12T01:23:24Z
|
||||
git_ref: 06c4af17
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
After opening draft Tractor PR 490, the user requested an iterative pass over
|
||||
additional broadcast subsystem findings. The first item was to correct
|
||||
`BroadcastState.statistics()` queued counts and its deprecated Trio event
|
||||
truthiness check, then stop for a complete commit plan.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/trionics/_broadcast.py`
|
||||
|
||||
Changed `queued_len_by_task` from raw deque cursor indexes to retained,
|
||||
receivable counts. Caught-up `-1` reports zero, valid indexes report index plus
|
||||
one, and lagged cursors clamp to the current retained queue length. Replaced
|
||||
`trio.Event` truthiness with an explicit `is not None` branch.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_task_broadcasting.py`
|
||||
|
||||
Added a deterministic statistics regression using actual sends and receives.
|
||||
It verifies caught-up and one-queued states, drives a root receiver beyond a
|
||||
three-slot retention window to prove clamping, and installs a real
|
||||
`trio.Event` while treating deprecations as errors.
|
||||
|
||||
Verification output:
|
||||
|
||||
```text
|
||||
........... [100%]
|
||||
11 passed in 5.76s
|
||||
```
|
||||
|
||||
Python compilation and `git diff --check` passed. Initial adversarial review
|
||||
caught unclamped lagged cursors and an ineffective event test; both were
|
||||
fixed. Final review found no actionable issues.
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_0799212ebffe42arY96czXn89F
|
||||
timestamp: 2026-08-12T03:06:08Z
|
||||
git_ref: 1095e7f7
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260812T030608Z_1095e7f7_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
For Tractor PR 490 item two, make shared underlying receive failures wake and
|
||||
terminate every broadcast subscriber without losing retained values. Review,
|
||||
verify and return a complete commit plan before continuing.
|
||||
|
||||
## Response summary
|
||||
|
||||
Published ordinary receive failures as terminal broadcast state, introduced
|
||||
a public chained peer exception, kept control-flow exits transient while
|
||||
waking peers, documented the contract, and added deterministic regressions.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/trionics/_broadcast.py` - terminal failure and peer wake protocol.
|
||||
- `tractor/trionics/__init__.py` - public peer exception export.
|
||||
- `docs/api/trionics.rst` - failure-delivery API contract.
|
||||
- `tests/test_task_broadcasting.py` - terminal and transient failure tests.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - generated output follows the requested second iterative item.
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-12T03:06:08Z
|
||||
git_ref: 1095e7f7
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
The user requested the second iterative refinement for Tractor PR 490: ensure
|
||||
non-EOC failures from a shared underlying broadcast receiver do not leave peer
|
||||
subscribers blocked forever, then stop for a complete commit plan.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/trionics/_broadcast.py`
|
||||
|
||||
Added shared terminal failure publication for ordinary `Exception` values.
|
||||
The receive owner gets the original exception; peers may drain retained
|
||||
values and then get a fresh `BroadcastReceiveError` chained from the original.
|
||||
Late subscribers observe the same terminal state without retrying the failed
|
||||
underlying receiver. Process-control and cancellation-like `BaseException`
|
||||
values wake peers but are re-raised without becoming durable channel state.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/trionics/__init__.py`
|
||||
|
||||
Exported `BroadcastReceiveError` as the public peer-delivery exception.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- docs/api/trionics.rst`
|
||||
|
||||
Documented `BroadcastReceiveError` and the owner-versus-peer delivery
|
||||
contract, including retained-value draining and late subscribers.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_task_broadcasting.py`
|
||||
|
||||
Added deterministic bounded regressions. One scripts a successful receive
|
||||
followed by `RuntimeError`, proving the root drains retained data, all current
|
||||
and late receivers observe terminal failure, and the source is not retried.
|
||||
The second scripts a custom `BaseException`, proving peers wake and take over
|
||||
the next source receive without retaining control-flow state.
|
||||
|
||||
Verification output:
|
||||
|
||||
```text
|
||||
............. [100%]
|
||||
13 passed in 5.62s
|
||||
```
|
||||
|
||||
Python compilation and `git diff --check` passed. Iterative adversarial review
|
||||
drove independent peer exception wrappers, ordinary-versus-control-flow
|
||||
classification, bounded test completion, public docs, and the final catch-all
|
||||
peer wake. Final review found no issues.
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_0799212ebffe42arY96czXn89F
|
||||
timestamp: 2026-08-12T15:00:27Z
|
||||
git_ref: c2a6ccef
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260812T150027Z_c2a6ccef_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
For Tractor PR 490 item three, prevent subscriber closure from waking another
|
||||
receiver's shared event or stranding peers. Preserve close-safe source-read
|
||||
ownership handoff, then review, verify and return a complete commit plan.
|
||||
|
||||
## Response summary
|
||||
|
||||
Introduced receiver-local wait/source cancellation, owner-specific handoff,
|
||||
and close precedence over shielded source values/errors/EOC. Clarified that
|
||||
private scope cancellation means explicit close while outer task cancellation
|
||||
remains `trio.Cancelled` for both source-read and peer-wait scopes, with
|
||||
deterministic receiver-close regressions.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/trionics/_broadcast.py` - receiver-local close and ownership scopes.
|
||||
- `tests/test_task_broadcasting.py` - peer close and owner handoff regressions.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - generated output follows the requested third iterative item.
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-12T15:00:27Z
|
||||
git_ref: c2a6ccef
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
The user requested the third iterative refinement for Tractor PR 490: closing
|
||||
one broadcast subscriber must not set another receiver owner's shared event
|
||||
and create a runnable hot loop, then stop for a complete commit plan.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/trionics/_broadcast.py`
|
||||
|
||||
Added receiver-local wait cancellation and source-read ownership scopes.
|
||||
Closing a non-owner waiting behind another source reader cancels only that
|
||||
receiver's private wait and maps it to `ClosedResourceError`; the shared event
|
||||
remains untouched. Closing the active source owner cancels only its private
|
||||
source-read scope, wakes peers after cleanup, and lets one peer take ownership.
|
||||
|
||||
Source outcomes are captured inside the owner scope and classified only after
|
||||
checking close/cancel state. A cancellation-shielding source therefore cannot
|
||||
publish a returned value, ordinary error, or EOC after its owner was closed.
|
||||
The private scope's `cancel_called` bit is asserted to imply receiver closure;
|
||||
outer task cancellation remains `trio.Cancelled` and is not translated into
|
||||
`ClosedResourceError`. Owner-key comments document that only the receiver
|
||||
identified by `recv_ready[0]` may cancel the shared source-read scope. The
|
||||
same explicit-close invariant is enforced symmetrically for private peer-wait
|
||||
scope cancellation.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_task_broadcasting.py`
|
||||
|
||||
Added deterministic bounded regressions for both close positions. The
|
||||
non-owner test places two peers behind an active source read, closes one and
|
||||
proves only that peer exits while the shared event stays unset. The owner test
|
||||
closes a source owner whose receive shields cancellation and parameterizes a
|
||||
returned value, `RuntimeError`, and `EndOfChannel`; each discarded outcome
|
||||
hands the next source receive to the waiting root without terminal-state or
|
||||
EOC publication.
|
||||
|
||||
Verification output:
|
||||
|
||||
```text
|
||||
................. [100%]
|
||||
17 passed in 5.84s
|
||||
```
|
||||
|
||||
Python compilation and `git diff --check` passed. Iterative adversarial review
|
||||
caught a waiting non-owner hang, cancellation-shielded source returns, and
|
||||
shielded source exceptions. All were fixed. Final review found no actionable
|
||||
issues.
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_0799212ebffe42arY96czXn89F
|
||||
timestamp: 2026-08-12T21:31:17Z
|
||||
git_ref: 51185487
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260812T213117Z_51185487_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
For Tractor PR 490 item four, expose `raise_on_lag` through the public IPC and
|
||||
asyncio linked-channel subscription wrappers. Review, verify and return a
|
||||
complete commit plan before applying the API downstream in piker.
|
||||
|
||||
## Response summary
|
||||
|
||||
Added public per-subscription lag policy to both wrappers, preserved first-call
|
||||
root policy, documented the semantics, and covered forwarding plus real fan-out
|
||||
paths.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/_streaming.py` - `MsgStream` lag policy forwarding.
|
||||
- `tractor/to_asyncio.py` - linked-channel lag policy forwarding.
|
||||
- `docs/guide/streaming.rst` - IPC fan-out policy docs.
|
||||
- `docs/guide/asyncio.rst` - linked-channel fan-out policy docs.
|
||||
- `tests/test_task_broadcasting.py` - wrapper policy regression.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - generated output follows the requested fourth iterative item.
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-12T21:31:17Z
|
||||
git_ref: 51185487
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
The user requested the fourth iterative refinement for Tractor PR 490: expose
|
||||
subscriber lag policy through the public `MsgStream.subscribe()` and
|
||||
`LinkedTaskChannel.subscribe()` wrappers, then stop for a complete commit
|
||||
plan. This enables piker to replace private receiver mutation.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/_streaming.py`
|
||||
|
||||
Added `raise_on_lag: bool = True` to `MsgStream.subscribe()`. The first call
|
||||
passes the policy to the irreversibly allocated root broadcaster and its
|
||||
child; later calls configure each child independently while retaining the
|
||||
root's first-call policy.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/to_asyncio.py`
|
||||
|
||||
Added equivalent lag-policy forwarding to `LinkedTaskChannel.subscribe()`.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- docs/guide/streaming.rst`
|
||||
|
||||
> `git diff HEAD~1..HEAD -- docs/guide/asyncio.rst`
|
||||
|
||||
Documented strict versus warn/drop/resume behavior, independent child policy,
|
||||
and first-call root policy for both wrapper types.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_task_broadcasting.py`
|
||||
|
||||
Added a parameterized wrapper-level regression using minimal receive-compatible
|
||||
handles. It verifies a first non-raising subscription configures root and
|
||||
child, then a later strict child does not mutate the sticky root policy.
|
||||
|
||||
Verification output:
|
||||
|
||||
```text
|
||||
................... [100%]
|
||||
19 passed in 5.71s
|
||||
|
||||
.................... [100%]
|
||||
20 passed in 6.88s
|
||||
|
||||
. [100%]
|
||||
1 passed in 0.86s
|
||||
```
|
||||
|
||||
The second and third runs cover actual `MsgStream` and infected-asyncio
|
||||
`LinkedTaskChannel` fan-out respectively. Python compilation and
|
||||
`git diff --check` passed. Adversarial review found no actionable issues.
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: unavailable
|
||||
timestamp: 2026-08-13T18:19:01Z
|
||||
git_ref: a2e0df4b
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260813T181901Z_a2e0df4b_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue Tractor PR 490 after the paired piker EMS consumer commit. Clean
|
||||
cancelled-task diagnostics, define or reject zero-buffer broadcast behavior,
|
||||
review and verify the change, then stop at a complete commit plan.
|
||||
|
||||
## Response summary
|
||||
|
||||
Bound cancellation diagnostics to receiver progress, terminal state and
|
||||
resource lifetime; made EOC durable across peers; released wrapper-owned root
|
||||
broadcasters without breaking graceful EOC or subclass overrides; and rejected
|
||||
non-positive fan-out retention capacity.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/trionics/_broadcast.py` - diagnostic lifecycle, durable EOC and
|
||||
buffer validation.
|
||||
- `tractor/_streaming.py` - safe `MsgStream` root broadcaster cleanup.
|
||||
- `tractor/to_asyncio.py` - linked-channel root broadcaster cleanup.
|
||||
- `tests/test_task_broadcasting.py` - cancellation, EOC, wrapper and capacity
|
||||
regressions.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - generated output follows the requested fifth iterative item.
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-13T18:19:01Z
|
||||
git_ref: a2e0df4b
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
The user asked to continue after committing the paired piker EMS consumer
|
||||
fix. The next isolated Tractor PR 490 item was to clean cancelled-task
|
||||
diagnostics and define zero-buffer broadcast behavior, then review, test and
|
||||
stop at a complete commit plan.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/trionics/_broadcast.py`
|
||||
|
||||
Made `BroadcastState.cancelled` transient: receiver progress and close clear
|
||||
that receiver's diagnostic, terminal EOC and shared receive failure clear all
|
||||
stale cancelled tasks, and durable EOC prevents peers from re-entering the
|
||||
closed source. `broadcast_receiver()` now rejects non-positive retention
|
||||
capacity before creating an unusable zero-length deque.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/_streaming.py`
|
||||
|
||||
Made explicit `MsgStream.aclose()` release its internally allocated root
|
||||
broadcaster while preserving graceful receive-internal EOC teardown. Used a
|
||||
task-local marker so the public zero-argument `aclose()` signature and valid
|
||||
subclass overrides remain compatible.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/to_asyncio.py`
|
||||
|
||||
Made `LinkedTaskChannel.aclose()` release its internally allocated root
|
||||
broadcaster before closing the underlying Trio receive channel.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_task_broadcasting.py`
|
||||
|
||||
Added synchronized regressions for transient child cancellation diagnostics,
|
||||
cross-receiver terminal cleanup, durable EOC peer wakeups, root broadcaster
|
||||
cleanup through both public wrappers, `MsgStream.aclose()` subclass
|
||||
compatibility, and zero-buffer rejection.
|
||||
|
||||
Verification output:
|
||||
|
||||
```text
|
||||
........................... [100%]
|
||||
27 passed in 5.89s
|
||||
|
||||
. [100%]
|
||||
1 passed in 1.22s
|
||||
|
||||
. [100%]
|
||||
1 passed in 0.88s
|
||||
```
|
||||
|
||||
The integration runs cover real `MsgStream` actor fan-out and infected-asyncio
|
||||
`LinkedTaskChannel` fan-out. Ruff, Python compilation and `git diff --check`
|
||||
passed. Repeated adversarial review found and resolved root close re-entrancy,
|
||||
cross-receiver terminal retention, durable-EOC and subclass-compatibility
|
||||
issues; final review reported no findings.
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: pr475-review-fixes-20260817
|
||||
timestamp: 2026-08-17T23:18:25Z
|
||||
git_ref: 359fe75c
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260817T231825Z_359fe75c_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue the `/code-review-changes` pass for PR #475 in its isolated
|
||||
worktree. Address the seven accepted manual-review findings in
|
||||
`tractor/ipc/_types.py` and `tractor/ipc/_uds.py`, preserve the existing
|
||||
Windows capability behavior, verify the result, and prepare the work for
|
||||
human-controlled commit and review-reply steps. Do not publish replies,
|
||||
stage, commit, or push without the required explicit authorization.
|
||||
|
||||
## Response summary
|
||||
|
||||
Restored project quote, docstring, multiline-expression, and
|
||||
`match/case` conventions while retaining the Windows-safe UDS guard.
|
||||
Removed unnecessary structural and comment churn, then verified the
|
||||
focused transport, discovery, and lazy-import paths plus the missing
|
||||
`AF_UNIX` behavior.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/ipc/_types.py` - restore project style and guarded
|
||||
socket-family dispatch.
|
||||
- `tractor/ipc/_uds.py` - format the UDS capability gate
|
||||
consistently.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - the generated patch remains uncommitted and awaits human
|
||||
review.
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-17T23:18:25Z
|
||||
git_ref: 359fe75c
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Applied the seven accepted manual-review fixes for PR #475 while
|
||||
preserving the Windows transport capability behavior.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_types.py`
|
||||
|
||||
The generated changes restore the project's single-quote docstring and
|
||||
string conventions, remove the unnecessary helper divider, simplify the
|
||||
transport-registry comments, and restore `match/case` socket-family
|
||||
dispatch. The UDS case retains a `HAS_UDS` guard that short-circuits
|
||||
before `socket.AF_UNIX` is evaluated on unsupported hosts. Nearby error
|
||||
messages are wrapped without changing their content.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_uds.py`
|
||||
|
||||
The generated change reformats the `HAS_UDS` conjunction according to
|
||||
the project's multiline boolean-expression convention and simplifies
|
||||
the adjacent capability comment.
|
||||
|
||||
Verification:
|
||||
|
||||
`/home/goodboy/repos/tractor/py313/bin/pytest -q tests/test_lazy_imports.py tests/discovery tests/ipc/test_server.py`
|
||||
|
||||
Result: `66 passed, 2 xpassed in 60.62s`.
|
||||
|
||||
`ruff check --no-cache --output-format=json tractor/ipc/_types.py tractor/ipc/_uds.py`
|
||||
|
||||
Result: no findings.
|
||||
|
||||
`git diff --check`
|
||||
|
||||
Result: no whitespace errors.
|
||||
|
||||
An explicit missing-`AF_UNIX` probe set `HAS_UDS = False`, removed the
|
||||
socket constant, and exercised an unsupported socket family. It raised
|
||||
the expected `NotImplementedError` instead of `AttributeError`.
|
||||
|
||||
No review replies, commits, or pushes were published.
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: pr481-review-fixes-p1-20260818
|
||||
timestamp: 2026-08-18T03:15:32Z
|
||||
git_ref: 4151b956
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260818T031532Z_4151b956_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Address the approved review findings on PR #481, but work
|
||||
iteratively: implement and verify one finding at a time, prepare a
|
||||
separate `/commit-plan` after each fix, and stop for the human commit
|
||||
before starting the next finding. Begin with the P1 per-child
|
||||
lifecycle issue. Also publish the already-approved review findings
|
||||
against the reviewed PR head before editing.
|
||||
|
||||
## Response summary
|
||||
|
||||
Published the approved non-approving review at head `4151b956`, then
|
||||
implemented only the P1 lifecycle fix. Owned one-shot actors now use
|
||||
a child-specific cancellation and process-reap handshake, including
|
||||
hard escalation for unacknowledged cancellation and deterministic
|
||||
bookkeeping removal before `to_actor.run()` returns.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_supervise.py` - coordinate child-specific cancel
|
||||
and reap.
|
||||
- `tractor/spawn/_trio.py` - wait on the Trio child's reap request.
|
||||
- `tractor/spawn/_mp.py` - wait on the multiprocessing child's reap
|
||||
request.
|
||||
- `tractor/spawn/_spawn.py` - publish monitor completion centrally.
|
||||
- `tractor/to_actor/_api.py` - await owned-child process reaping.
|
||||
- `tests/test_to_actor.py` - cover cleanup, escalation, and startup
|
||||
ordering.
|
||||
|
||||
## Human edits
|
||||
|
||||
None - the generated P1 patch remains uncommitted for human review.
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-18T03:15:32Z
|
||||
git_ref: 4151b956
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implemented only the P1 lifecycle finding from the approved PR #481
|
||||
review, preserving the requested one-fix-at-a-time commit boundary.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_supervise.py`
|
||||
|
||||
Added per-child reap request/completion events to `ActorNursery`, a
|
||||
shielded child-specific cancel-and-reap operation, late-registration
|
||||
latching for nursery teardown, and cancellation escalation that waits
|
||||
for debugger release before using non-ignorable process termination.
|
||||
The nursery-wide cancellation path snapshots child records before
|
||||
checkpointing so concurrent one-shot cleanup cannot invalidate its
|
||||
iteration.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_trio.py`
|
||||
|
||||
Changed Trio child monitors to wait on their per-child reap requests.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_mp.py`
|
||||
|
||||
Changed multiprocessing child monitors to wait on their per-child reap
|
||||
requests.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_spawn.py`
|
||||
|
||||
Ensured every backend publishes child-reap completion after its process
|
||||
monitor exits.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/to_actor/_api.py`
|
||||
|
||||
Changed owned one-shot cleanup to await child-specific process joining
|
||||
and bookkeeping removal instead of treating the cancel RPC as reaping.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py`
|
||||
|
||||
Added regressions for immediate caller-managed nursery cleanup, failed
|
||||
cancel acknowledgement escalation, and child registration after a
|
||||
latched nursery-wide teardown request.
|
||||
|
||||
Verification:
|
||||
|
||||
`pytest -q tests/test_to_actor.py tests/test_cancellation.py tests/test_spawning.py tests/discovery/test_multi_program.py`
|
||||
|
||||
Result: `46 passed, 1 xfailed, 3 xpassed`.
|
||||
|
||||
`pytest -q tests/test_to_actor.py --tpt-proto uds`
|
||||
|
||||
Result: `13 passed`.
|
||||
|
||||
`pytest -q tests/test_to_actor.py --spawn-backend mp_spawn --tpt-proto tcp`
|
||||
|
||||
Result: `13 passed`.
|
||||
|
||||
One broad verification run was mistakenly launched in parallel with
|
||||
the UDS and `mp_spawn` actor suites. It timed out
|
||||
`test_remote_error_from_caller_nursery`; the node passed immediately
|
||||
in isolation and the complete broad selection then passed serially.
|
||||
The failure was classified as concurrent test-session interference,
|
||||
not accepted as a passing boundary result.
|
||||
|
||||
Ruff, Python compilation, and `git diff --check` passed for the changed
|
||||
boundary. Ruff's existing `_trio.py` F401 finding was reproduced at the
|
||||
unmodified PR head and excluded from attribution to this patch.
|
||||
|
||||
No source files were staged, committed, pushed, or used for review
|
||||
replies. The previously approved top-level review was published before
|
||||
the fix at reviewed head `4151b956`.
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_3e4c90d3eafeqHEtRYSIHgHhpA
|
||||
timestamp: 2026-08-18T19:30:01Z
|
||||
git_ref: bf06b4f8
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260818T193001Z_bf06b4f8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Fix cancellation during an indeterminate transport write without
|
||||
allowing a second RPC msg to corrupt the stream. Keep the transport
|
||||
fix separate from the higher-level `to_actor` remediation and explain
|
||||
the length-prefixed protocol rather than using unexplained "framed
|
||||
send" terminology.
|
||||
|
||||
## Response summary
|
||||
|
||||
Close a msgpack transport stream when cancellation interrupts its
|
||||
length-prefixed `send_all()` operation. The stream can no longer be
|
||||
safely reused because Trio cannot report how many bytes were written.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/ipc/_transport.py` - close an interrupted send stream.
|
||||
- `tests/ipc/test_each_tpt.py` - cover cancellation during the write.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human required this transport edge-case fix to land as its own
|
||||
behavioral commit with a detailed message. During staged review, the
|
||||
human also rejected the unexplained "framed send" wording and asked
|
||||
for terminology tied directly to the actual transport operation.
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-18T19:30:01Z
|
||||
git_ref: bf06b4f8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Prospective review found that cancellation can interrupt
|
||||
`MsgpackTransport.send()` after `send_all()` writes only part of its
|
||||
length-prefixed msg. Sending a cancellation request afterward can
|
||||
append another msg to the indeterminate stream and desynchronize the
|
||||
peer decoder.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_transport.py tests/ipc/test_each_tpt.py`
|
||||
|
||||
Close the stream under a cancellation shield when `send_all()` is
|
||||
cancelled. Cover the behavior with a fake stream that checkpoints
|
||||
inside the write and records forced closure.
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_3e4c90d3eafeqHEtRYSIHgHhpA
|
||||
timestamp: 2026-08-18T19:30:02Z
|
||||
git_ref: bf06b4f8
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260818T193002Z_bf06b4f8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Distill repeated `Actor._contexts.pop()` machinery into a wrapper like
|
||||
the RPC-task registration helper so future teardown sites do not keep
|
||||
reconstructing the context-registry key independently. Preserve the
|
||||
existing lifecycle-specific cleanup behavior.
|
||||
|
||||
## Response summary
|
||||
|
||||
Add idempotent `Actor._drop_context()` registry removal keyed from the
|
||||
context's own channel and CID. Use it for caller context teardown and
|
||||
the strict callee-side RPC deregistration path.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_runtime.py` - own context-registry removal.
|
||||
- `tractor/runtime/_rpc.py` - use the helper for callee teardown.
|
||||
- `tractor/_context.py` - use the helper after caller teardown.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human identified the repeated registry-pop code and requested a
|
||||
central primitive analogous to `_register_rpc_task()`. The agent first
|
||||
suggested an async helper that also closed receive channels; the final
|
||||
design was narrowed to registry removal only so each lifecycle owner
|
||||
retains its existing closure, debugger, shielding, and error policy.
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-18T19:30:02Z
|
||||
git_ref: bf06b4f8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Repeated teardown sites reconstruct the `Actor._contexts` registry
|
||||
key from a portal channel and context ID before popping it. Add an
|
||||
idempotent actor-owned helper deriving the key from the context itself,
|
||||
then route caller and callee context teardown through that helper.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_runtime.py tractor/runtime/_rpc.py tractor/_context.py`
|
||||
|
||||
Keep receive-channel closure and cancellation shielding in each
|
||||
lifecycle owner so the helper centralizes registry machinery without
|
||||
changing their teardown ordering.
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_3e4c90d3eafeqHEtRYSIHgHhpA
|
||||
timestamp: 2026-08-18T19:30:03Z
|
||||
git_ref: bf06b4f8
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260818T193003Z_bf06b4f8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Cancel a remote task when its caller is cancelled after `Start`
|
||||
publication but before startup acknowledgement. Keep cancellation
|
||||
bounded, prevent its private `_cancel_task` RPC from recursively
|
||||
cancelling itself and preserve public target kwargs unchanged.
|
||||
|
||||
## Response summary
|
||||
|
||||
Add private portal startup policy, use it for non-recursive context
|
||||
cancellation and clean caller-side startup state under a shield.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_portal.py` - separate private startup policy.
|
||||
- `tractor/_context.py` - disable recursion for cancellation RPCs.
|
||||
- `tractor/runtime/_runtime.py` - clean cancelled task startup.
|
||||
- `tests/test_context_stream_semantics.py` - control cancellation
|
||||
between `Start` publication and acknowledgement.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human required this cancellation behavior to remain a distinct
|
||||
commit from general startup failures and from the public `to_actor`
|
||||
API. The human also requested that its runtime comment describe the
|
||||
actual length-prefixed transport guarantee and concrete `_cancel_task`
|
||||
operation rather than referring to an unnamed wrapper.
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-18T19:30:03Z
|
||||
git_ref: bf06b4f8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Cancellation while `Actor.start_remote_task()` waits for `StartAck`
|
||||
can strand its caller-side context and leave the remote task running.
|
||||
Make one bounded cleanup request, remove local startup state and close
|
||||
its receive channel.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_runtime.py tractor/runtime/_portal.py tractor/_context.py tests/test_context_stream_semantics.py`
|
||||
|
||||
Separate private startup-cancellation policy from public target kwargs
|
||||
using `Portal._run_from_ns()`. Have `Context.cancel()` disable recursive
|
||||
startup cancellation for its own `_cancel_task` RPC. Exercise
|
||||
cancellation after `Start` publication and prove the caller-owned actor
|
||||
remains reusable without leaked contexts.
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_3e4c90d3eafeqHEtRYSIHgHhpA
|
||||
timestamp: 2026-08-18T19:30:04Z
|
||||
git_ref: bf06b4f8
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260818T193004Z_bf06b4f8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Release caller-side context state for every remote-task startup failure,
|
||||
not only local cancellation. Preserve the remote error, avoid unsafe
|
||||
follow-up sends and prove pre-publication serialization failures leave
|
||||
a reused portal healthy.
|
||||
|
||||
## Response summary
|
||||
|
||||
Extend remote-task startup cleanup across send, acknowledgement and
|
||||
validation errors. Track completed publication, perform only safe
|
||||
best-effort cancellation and deterministically remove local state.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_runtime.py` - clean every startup failure path.
|
||||
- `tests/test_context_stream_semantics.py` - cover authorization and
|
||||
serialization failures before context entry.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human accepted the discovered edge-case fixes but required general
|
||||
startup cleanup to land separately from cancellation cleanup, transport
|
||||
integrity and the public API. This boundary preserves that behavioral
|
||||
distinction and its dedicated commit-message rationale.
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-18T19:30:04Z
|
||||
git_ref: bf06b4f8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
`Actor.start_remote_task()` inserts a context before sending `Start`,
|
||||
but startup errors other than cancellation escape without removing or
|
||||
closing that caller state. Serialization errors, acknowledgement
|
||||
timeouts, malformed acknowledgements and remote authorization errors
|
||||
can therefore leak context-registry entries.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_runtime.py tests/test_context_stream_semantics.py`
|
||||
|
||||
Cover the complete send, acknowledgement and validation phase with
|
||||
exceptional cleanup. Attempt remote cancellation only when publication
|
||||
is known complete or protocol-safe, and always release local state.
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_3e4c90d3eafeqHEtRYSIHgHhpA
|
||||
timestamp: 2026-08-18T19:30:05Z
|
||||
git_ref: bf06b4f8
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260818T193005Z_bf06b4f8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Replace abandoned `Portal.run()` one-shots with a static linked-context
|
||||
endpoint. Follow Trio positional-call semantics, use partials for target
|
||||
keywords, preserve Python 3.14 Placeholder behavior, keep target lookup
|
||||
behind the RPC allowlist and support private, nursery and portal
|
||||
placement.
|
||||
|
||||
## Response summary
|
||||
|
||||
Use `Portal.open_context()` and `Context.wait_for_result()` for one-shot
|
||||
tasks. Normalize every partial layer, validate signatures locally and
|
||||
send target namespace/function components separately to the authorized
|
||||
remote resolver. Retain the client-side function in its `NamespacePath`
|
||||
so `to_tuple()` does not re-import it. Owned actors enable the declaring
|
||||
`_api.__name__` directly; caller-owned portals opt in through the public
|
||||
`to_actor.MODULE` alias.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/to_actor/_api.py` - implement linked one-shot calls.
|
||||
- `tractor/to_actor/__init__.py` - export `MODULE`.
|
||||
- `tractor/msg/ptr.py` - retain refs created by `from_ref()`.
|
||||
- `tests/test_to_actor.py` - cover the public API and authorization.
|
||||
- `examples/parallelism/to_actor_one_shots.py` - use positional inputs.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human rejected nested target-kwargs configuration and selected
|
||||
Trio-style positional inputs plus `functools.partial()`. During staged
|
||||
review the human required a Python 3.14 compatibility comment rather
|
||||
than removing Placeholder support, requested separate namespace and
|
||||
function inputs, preserved `_get_rpc_func(ns: str, funcname: str)`
|
||||
authorization, renamed `RPC_MODULE` to `MODULE`, rejected global module
|
||||
exposure and deferred speculative nursery/module-list helpers to the
|
||||
`open_taskman()` design line. The human also required this public API
|
||||
to land only after its lower-level safety dependencies. In final staged
|
||||
review, the human required `_invoke_from_portal()` to use
|
||||
`NamespacePath.to_tuple()` with the already-held function ref and
|
||||
required internal actor setup to use `_api.__name__` directly, keeping
|
||||
`to_actor.MODULE` solely as the public importer-facing alias.
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-18T19:30:05Z
|
||||
git_ref: bf06b4f8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement `to_actor.run()` with Trio-style positional target arguments,
|
||||
`functools.partial` keyword and Python 3.14 Placeholder binding, and a
|
||||
static context endpoint that links remote results, errors and caller
|
||||
cancellation.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/to_actor/_api.py tractor/to_actor/__init__.py`
|
||||
|
||||
Resolve target functions through `Actor._get_rpc_func()` so module
|
||||
authorization remains authoritative. Automatically expose the helper
|
||||
module for actors owned by `to_actor.run()` and document explicit
|
||||
exposure for a caller-owned portal.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py examples/parallelism/to_actor_one_shots.py`
|
||||
|
||||
Cover placement modes, argument binding, nested partials, caller-linked
|
||||
cancellation, remote errors and module authorization.
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: ses_3e4c90d3eafeqHEtRYSIHgHhpA
|
||||
timestamp: 2026-08-19T02:07:57Z
|
||||
git_ref: b38efed7
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260819T020757Z_b38efed7_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Resolve the remaining P3 review finding before landing PR #481:
|
||||
`runtime_kwargs={}` must not be silently accepted alongside either
|
||||
`an=` or `portal=` merely because the dict is falsey. Keep this as its
|
||||
own final review-remediation commit.
|
||||
|
||||
## Response summary
|
||||
|
||||
Treat any non-`None` `runtime_kwargs` value as provided when validating
|
||||
placement. Cover both placement APIs with empty and configured dicts,
|
||||
proving the error is raised locally before actor startup.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/to_actor/_api.py` - validate option presence explicitly.
|
||||
- `tests/test_to_actor.py` - cover four invalid option combinations.
|
||||
|
||||
## Human edits
|
||||
|
||||
No direct line edits. The human accepted the P3 finding, required it to
|
||||
remain separate from the five P2 behavioral commits and prioritized it
|
||||
before the final PR #484 integration rebase and PR #481 landing steps.
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-19T02:07:57Z
|
||||
git_ref: b38efed7
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Fix the final PR #481 review finding: `runtime_kwargs` is mutually
|
||||
exclusive with both caller placement options whenever it is provided,
|
||||
including an empty dict.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/to_actor/_api.py tests/test_to_actor.py`
|
||||
|
||||
Use an explicit `is not None` check rather than dict truthiness. Expand
|
||||
the validation regression across `an=` and `portal=`, each with empty
|
||||
and configured runtime kwargs, so every invalid combination fails
|
||||
before actor runtime startup.
|
||||
|
||||
Verification:
|
||||
|
||||
- Trio/TCP: `23 passed`
|
||||
- Trio/UDS: `23 passed`
|
||||
- `mp_spawn`/TCP: `23 passed`
|
||||
- Ruff and `git diff --check`: clean
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-19T23:48:23Z
|
||||
git_ref: 557065d8
|
||||
scope: tests
|
||||
substantive: true
|
||||
raw_file: 20260819T234823Z_557065d8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Investigate PR #481's red CI run, explain the missing T-800 and
|
||||
debugger-output failures, and proceed with fixes in the PR #481
|
||||
worktree.
|
||||
|
||||
## Response summary
|
||||
|
||||
Updated stale teardown assertions to match #481's direct hard-reap
|
||||
path and observable process-lifetime invariants. Made nested debugger
|
||||
checks consume the complete pexpect transcript rather than only the
|
||||
last prompt latch.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tests/devx/test_debugger.py` - assert EOF/dead-process teardown and
|
||||
accumulate nested debugger output across prompt boundaries.
|
||||
- `tests/devx/test_tooling.py` - assert cancel-timeout hard-reap
|
||||
escalation instead of the bypassed T-800 backend marker.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human reported the still-red PR #481 CI, supplied a failing job URL,
|
||||
required work in `/wkts/pr481_review_fixes` and directed the agent to
|
||||
continue immediately. No direct source-line edits were made by the
|
||||
human.
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-19T23:48:23Z
|
||||
git_ref: 557065d8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Diagnose and fix the stale debugger and reaper assertions failing PR
|
||||
#481's Unix CI jobs.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/devx/test_debugger.py tests/devx/test_tooling.py`
|
||||
|
||||
Replace the old T-800 backend-log requirement with the new bounded
|
||||
cancel-ack escalation evidence. Prove debugger teardown with EOF and a
|
||||
dead child process instead of requiring optional `KeyboardInterrupt`
|
||||
text. Accumulate all pexpect prompt chunks for nested error propagation
|
||||
so expected tracebacks are not lost when `child.before` advances.
|
||||
|
||||
Verification:
|
||||
|
||||
- exact failed debugger/reaper nodes: `4 passed`
|
||||
- debugger/tooling TCP: `39 passed, 6 skipped`
|
||||
- debugger/tooling UDS: `39 passed, 6 skipped`
|
||||
- full TCP suite: `478 passed, 9 skipped, 7 xfailed, 3 xpassed`
|
||||
- full UDS rerun: `476 passed, 11 skipped, 8 xfailed, 2 xpassed`
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-19T23:48:24Z
|
||||
git_ref: 557065d8
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260819T234824Z_557065d8_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Investigate and fix PR #481's macOS TCP clustering and stream-overrun
|
||||
failures without sacrificing IPC frame integrity or structured
|
||||
concurrency.
|
||||
|
||||
## Response summary
|
||||
|
||||
Changed cancellation during `send_all()` from actor-wide stream closure
|
||||
to shielded complete-frame publication followed by immediate pending
|
||||
cancellation. Prevented failed overrun error shipment from promoting a
|
||||
secondary transport closure over the context-local primary condition.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/ipc/_transport.py` - complete in-flight frames before
|
||||
delivering sender cancellation.
|
||||
- `tractor/_context.py` - absorb transport closure while reporting an
|
||||
overrun on an already-closing channel.
|
||||
- `tests/ipc/test_each_tpt.py` - prove complete framing, cancellation
|
||||
delivery and channel reuse.
|
||||
- `tests/test_context_stream_semantics.py` - prove overrun reporting
|
||||
tolerates a closed transport.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human reported PR #481's red CI, asked for diagnosis and directed
|
||||
the agent to proceed in the dedicated PR #481 worktree. During final
|
||||
review, the human required preservation of the original far-end
|
||||
cancellation rationale and fuller documentation of frame shielding,
|
||||
shared-channel ownership and cancellation-delay tradeoffs. These were
|
||||
human-directed agent edits; the human made no direct source-line edits.
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-19T23:48:24Z
|
||||
git_ref: 557065d8
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Fix the macOS TCP regressions where cancellation during a framed send
|
||||
closed the actor-wide channel and replaced primary stream errors with
|
||||
secondary `TransportClosed` failures.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_transport.py tractor/_context.py tests/ipc/test_each_tpt.py tests/test_context_stream_semantics.py`
|
||||
|
||||
Shield complete frame publication, then deliver pending cancellation
|
||||
immediately after leaving the shield. Preserve channel reuse instead of
|
||||
closing the multiplexed socket from a context-local sender. Treat
|
||||
`TransportClosed` while shipping `StreamOverrun` as failed delivery so
|
||||
the secondary error can not crash the actor-wide RPC loop.
|
||||
|
||||
Add deterministic unit regressions for cancellation in the middle of a
|
||||
frame and overrun reporting after transport closure.
|
||||
|
||||
Verification:
|
||||
|
||||
- transport/context unit regressions: `3 passed`
|
||||
- exact TCP and UDS CI-node batches: `11 passed, 1 skipped`
|
||||
- transport/context/clustering/RPC TCP: `88 passed`
|
||||
- transport/context/clustering/RPC UDS: `86 passed, 2 skipped`
|
||||
- full TCP suite: `478 passed, 9 skipped, 7 xfailed, 3 xpassed`
|
||||
- full UDS rerun: `476 passed, 11 skipped, 8 xfailed, 2 xpassed`
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-20T02:30:04Z
|
||||
git_ref: 88a23449
|
||||
scope: tests
|
||||
substantive: true
|
||||
raw_file: 20260820T023004Z_88a23449_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Inspect the two failed macOS jobs in PR #481's new CI run and continue
|
||||
toward a green landing candidate.
|
||||
|
||||
## Response summary
|
||||
|
||||
Confirmed both jobs fail only the known nested crash-REPL scenario from
|
||||
issue #320, while Ubuntu TCP/UDS and Windows pass. Added a targeted
|
||||
macOS-CI skip without reducing Linux coverage.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tests/devx/test_debugger.py` - skip the issue #320 nested
|
||||
crash-REPL node on Darwin CI.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human monitored the new CI run, reported both macOS jobs dead and
|
||||
directed the agent to continue diagnosis. No direct source-line edits
|
||||
were made by the human.
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-20T02:30:04Z
|
||||
git_ref: 88a23449
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Diagnose the remaining macOS PR #481 CI failures after the Linux
|
||||
debugger and transport fixes passed.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/devx/test_debugger.py`
|
||||
|
||||
Both macOS transports failed the same deeply nested crash-REPL test
|
||||
already tracked by issue #320: TCP omitted one actor-specific traceback
|
||||
record and UDS timed out waiting for a nested prompt. Apply an explicit
|
||||
Darwin-CI skip to this one node while retaining Linux TCP/UDS coverage.
|
||||
|
||||
Verification:
|
||||
|
||||
- debugger/tooling TCP: `39 passed, 6 skipped`
|
||||
- debugger/tooling UDS: `39 passed, 6 skipped`
|
||||
- Ruff, compilation and `git diff --check`: clean
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-20T02:30:05Z
|
||||
git_ref: 88a23449
|
||||
scope: docs
|
||||
substantive: true
|
||||
raw_file: 20260820T023005Z_88a23449_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Audit all documentation and executable examples once more, replacing
|
||||
prescriptive `run_in_actor()` usage with `to_actor.run()` or explicit
|
||||
actor/context lifetime APIs before PR #481 lands.
|
||||
|
||||
## Response summary
|
||||
|
||||
Rewrote one-shot documentation around direct blocking result delivery,
|
||||
linked context execution and per-call reaping. Migrated all runnable
|
||||
examples, using daemon actors where reciprocal dialogs require longer
|
||||
lifetimes. Added API/guide cross-links and retained only three explicit
|
||||
legacy references.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `docs/` - update API, quickstart and subsystem guides to showcase
|
||||
`tractor.to_actor.run()` and link its underlying core APIs.
|
||||
- `examples/` - migrate one-shot calls and preserve explicit daemon
|
||||
lifetimes for reciprocal or long-lived actor dialogs.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human requested a final docs pass covering every place that should
|
||||
showcase `to_actor` over `.run_in_actor()`. Earlier review also required
|
||||
named target arguments to remain visible through `functools.partial()`
|
||||
and core API references to link to local guides/reference pages. These
|
||||
were human-directed agent edits; the human made no direct source-line
|
||||
edits.
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-20T02:30:05Z
|
||||
git_ref: 88a23449
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Perform a final rendered-documentation and executable-example pass so
|
||||
PR #481 showcases `tractor.to_actor.run()` instead of the legacy
|
||||
`ActorNursery.run_in_actor()` API.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- docs examples`
|
||||
|
||||
Migrate one-shot guides and examples to direct result delivery through
|
||||
`to_actor.run()`, preserving named target inputs with target partials.
|
||||
Use daemon actors and concurrent portal calls where reciprocal actor
|
||||
lifetimes require both peers to coexist. Add API and guide cross-links,
|
||||
and retain only explicit legacy/removal notes.
|
||||
|
||||
Verification:
|
||||
|
||||
- executable docs examples: `23 passed`
|
||||
- debugger/tooling TCP: `39 passed, 6 skipped`
|
||||
- debugger/tooling UDS: `39 passed, 6 skipped`
|
||||
- Ruff, compilation and `git diff --check`: clean
|
||||
- local Sphinx build unavailable because Sphinx is not installed
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-20T13:51:25Z
|
||||
git_ref: 9f99043b
|
||||
scope: tests
|
||||
substantive: true
|
||||
raw_file: 20260820T135125Z_9f99043b_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue preparing PR #481 for landing after the prior test and
|
||||
documentation commits were pushed. Follow CI and proceed with clear next
|
||||
steps without merging or changing remote content unasked.
|
||||
|
||||
## Response summary
|
||||
|
||||
Followed CI through completion and found both macOS jobs failed because the
|
||||
new `skipif` expression returned the `CI=true` environment string. Corrected
|
||||
the condition to pass pytest a boolean before evaluating the marker. A
|
||||
simulated Darwin-CI run now skips cleanly, and the sequential TCP and UDS
|
||||
debugger/tooling suites each pass with 39 passed and 6 skipped.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tests/devx/test_debugger.py` - coerce the Darwin-CI skip condition to a
|
||||
boolean.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human pushed the preceding commits, directed the agent to continue, and
|
||||
approved recording this test-only follow-up in Prompt-IO. No direct
|
||||
source-line edits were made by the human.
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-20T13:51:25Z
|
||||
git_ref: 9f99043b
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Continue preparing PR #481 for landing after the test and documentation
|
||||
commits were pushed. Follow the new CI run to completion and diagnose any
|
||||
failures.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/devx/test_debugger.py`
|
||||
|
||||
Both macOS jobs failed while evaluating the new `skipif` marker. The
|
||||
expression returned the `CI=true` environment string instead of a boolean,
|
||||
so pytest evaluated `true` as Python source and raised `NameError` during
|
||||
test setup. Coerce `_ci_env` to `bool` so pytest receives a boolean marker
|
||||
condition on Darwin CI.
|
||||
|
||||
Verification should exercise the condition with `CI=true` and a simulated
|
||||
Darwin platform, then rerun the debugger/tooling TCP and UDS suites.
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-20T14:38:50Z
|
||||
git_ref: 559fd0f1
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260820T143845Z_559fd0f1_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue preparing PR #481 after the latest fix was pushed. Follow CI and
|
||||
proceed with clear next steps toward a green landing candidate.
|
||||
|
||||
## Response summary
|
||||
|
||||
Traced the remaining macOS UDS failure to cancellation racing transport
|
||||
teardown inside the shielded framed-send path. Preserve pending cancellation
|
||||
over a transport error caused by concurrent teardown, and add a deterministic
|
||||
regression for that ordering. A follow-up A/B run showed the corrected
|
||||
cancellation precedence changes which nested debugger intermediary is
|
||||
rendered as the immediate source versus relay, so retain coverage for both
|
||||
actor levels without pinning those racy roles. The adjusted UDS node passes
|
||||
three consecutive runs, and both debugger/tooling transport suites pass with
|
||||
39 passed and 6 skipped.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/ipc/_transport.py` - deliver pending cancellation before
|
||||
translating a shielded send's transport error.
|
||||
- `tests/ipc/test_each_tpt.py` - reproduce cancellation followed by local
|
||||
stream closure during shielded frame publication.
|
||||
- `tests/devx/test_debugger.py` - accept either valid source/relay role for
|
||||
each nested intermediary while retaining the actor and error assertions.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human pushed the preceding fix, ran the proposed verification plan, and
|
||||
reported a repeated UDS debugger failure. That report prompted the A/B
|
||||
comparison and role-insensitive assertion. No direct source-line edits were
|
||||
made by the human.
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-20T14:38:50Z
|
||||
git_ref: 559fd0f1
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Continue preparing PR #481 after pushing the macOS debugger skip fix.
|
||||
Follow the replacement CI run and address any remaining PR-specific
|
||||
failure.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_transport.py`
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/ipc/test_each_tpt.py`
|
||||
|
||||
macOS UDS failed `test_reqresp_ontopof_streaming` when its two-second
|
||||
`move_on_after()` scope cancelled during `stream.send('ping')`. Commit
|
||||
`88a23449` shields framed `send_all()` and checks pending cancellation only
|
||||
after a successful write. Concurrent transport teardown instead closed the
|
||||
socket, causing `ClosedResourceError` to escape as `TransportClosed` before
|
||||
the pending cancellation could be delivered.
|
||||
|
||||
Preserve structured cancellation precedence on the shielded send's
|
||||
transport-error path, and add a deterministic regression that cancels the
|
||||
sender before making the fake stream raise `ClosedResourceError`.
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 7b9c97c4-fff7-4ac4-97fb-35720453308e
|
||||
timestamp: 2026-08-20T15:02:50Z
|
||||
git_ref: pformat_caller_frame_render_guard
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260820T150250Z_9afda1c6_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Fix both newly exposed send-side `MsgTypeError` formatting failures
|
||||
and pin them with an end-to-end regression in PR #503.
|
||||
|
||||
## Response summary
|
||||
|
||||
Corrected codec-spec formatting and default error-message assembly so
|
||||
`_mk_send_mte()` returns a printable error instead of raising another
|
||||
formatter exception.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/msg/_codec.py` - pass the codec to its supported formatter.
|
||||
- `tractor/_exceptions.py` - assemble the default message as `str`.
|
||||
- `tests/devx/test_pformat.py` - render the complete default error.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human selected both one-line fixes and the single end-to-end test
|
||||
as coherent additions to PR #503, while leaving broader formatter
|
||||
cleanup out of scope.
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-20T15:02:50Z
|
||||
git_ref: pformat_caller_frame_render_guard
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
After reviewing additional `tractor.devx.pformat` work suitable for
|
||||
PR #503, the user approved fixing both send-side `MsgTypeError`
|
||||
formatting failures and adding an end-to-end regression.
|
||||
|
||||
## Response
|
||||
|
||||
The generated code corrects the `MsgCodec.msg_spec_str` formatter
|
||||
input, keeps `_mk_send_mte()`'s assembled default message a string,
|
||||
and tests that the resulting `MsgTypeError` can be rendered:
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/msg/_codec.py tractor/_exceptions.py tests/devx/test_pformat.py`
|
||||
|
||||
These failures were hidden behind the original
|
||||
`pformat_caller_frame()` keyword error addressed by the first two
|
||||
commits on the branch.
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-21T02:35:37Z
|
||||
git_ref: ae6f2ac3
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260821T023537Z_ae6f2ac3_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Simplify bounded actor cancellation by passing an explicit absolute
|
||||
deadline from `Portal.cancel_actor()` through `_run_from_ns()`,
|
||||
`Actor.start_remote_task()`, and `Channel.send()` into
|
||||
`MsgpackTransport.send()`. Avoid a `ContextVar`, watcher tasks, shared
|
||||
status, coalescing, and waiter state. After tracing the current
|
||||
`Start -> StartAck -> CancelAck` transaction, rename the local result to
|
||||
`cancel_ack_received`, document its exact semantics, and link a focused
|
||||
follow-up for a dedicated `Cancel -> CancelAck` protocol.
|
||||
|
||||
## Response summary
|
||||
|
||||
Threaded one absolute Trio deadline through the existing private
|
||||
actor-cancel RPC path. The transport retains complete-frame shielding
|
||||
for ordinary sends, while a cancel-control send that overruns its
|
||||
deadline force-closes the potentially corrupted stream before releasing
|
||||
the send lock. The outer actor-cancel scope uses the same deadline for
|
||||
ack waiting and redelivers pending caller cancellation afterward.
|
||||
|
||||
Renamed the completion flag to `cancel_ack_received` and documented that
|
||||
the current private call consumes `StartAck`, then receives a real
|
||||
`CancelAck` after `Actor.cancel()` completes; this does not establish
|
||||
that the OS process exited. Added a source TODO linking issue #506 for
|
||||
the future first-class `Cancel -> CancelAck` transaction.
|
||||
|
||||
Focused transport and actor-cancel verification passed all four tests.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_portal.py` - own the absolute deadline, accurately
|
||||
record ack receipt, and link the dedicated cancellation protocol.
|
||||
- `tractor/runtime/_runtime.py` - forward the optional deadline for the
|
||||
exact private `Start` publication.
|
||||
- `tractor/ipc/_chan.py` - pass the operation-specific deadline to the
|
||||
transport without changing ordinary sends.
|
||||
- `tractor/ipc/_transport.py` - bound the shielded frame publication and
|
||||
close a partial-frame stream before unlocking it.
|
||||
- `tests/ipc/test_each_tpt.py` - cover deadline expiry after a partial
|
||||
frame prefix reaches the stream.
|
||||
- `tests/test_to_actor.py` - prove actor-cancel publication and ack
|
||||
waiting share one absolute timeout budget.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human rejected the initial watcher-task, shared `_SendStatus`, cancel
|
||||
coalescing, and per-waiter design as unnecessary complexity. They also
|
||||
rejected `ContextVar` propagation in favor of explicit functional
|
||||
threading, selected a single absolute deadline for publication and ack
|
||||
waiting, and required item 2 to remain separate from the item-3 child
|
||||
reaping work. After reviewing the result, they requested the precise
|
||||
`cancel_ack_received` name, a detailed protocol-trace comment, a focused
|
||||
follow-up issue, and a linked source TODO. No direct source-line edits
|
||||
were made by the human.
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-21T02:35:37Z
|
||||
git_ref: ae6f2ac3
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Replace the actor-cancel timeout watcher/status experiment with one
|
||||
explicit absolute deadline threaded through the existing private call
|
||||
path. Do not use a `ContextVar`, shared result state, waiter
|
||||
coalescing, or polling tasks.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_portal.py`
|
||||
|
||||
`Portal.cancel_actor()` computes one absolute deadline and uses it for
|
||||
both `Start` frame publication and the subsequent cancel-ack wait.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_runtime.py`
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_chan.py`
|
||||
|
||||
The private RPC path forwards the operation-specific deadline. Lower
|
||||
layers preserve the ordinary infinite-deadline call shape.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/ipc/_transport.py`
|
||||
|
||||
`MsgpackTransport.send()` applies the deadline inside its complete-frame
|
||||
shield. If the deadline expires after partial publication, it closes
|
||||
the unusable stream before releasing the send lock.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/ipc/test_each_tpt.py`
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py`
|
||||
|
||||
Focused regressions prove a partial-frame timeout closes the stream and
|
||||
that actor-cancel publication and acknowledgement share one budget.
|
||||
|
||||
The implementation removes the earlier `_SendStatus`, watcher task,
|
||||
coalescing, shared cancel result, and per-waiter state. Four focused
|
||||
transport and actor-cancel tests pass.
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: 76c5d31c-5a2f-4503-9b16-410ee7f4fab3
|
||||
timestamp: 2026-08-21T04:08:03Z
|
||||
git_ref: 3c1bbe73
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260821T040803Z_3c1bbe73_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue PR #481 review cleanup one item at a time. Compare the
|
||||
remaining child-registration/reaping experiment against PR #484,
|
||||
identify the next valid behavior, and generate an exact commit plan for
|
||||
that boundary without committing automatically.
|
||||
|
||||
## Response summary
|
||||
|
||||
Separated late-child admission from the broader bounded-reap rewrite.
|
||||
Added one synchronous `ActorNursery._register_child()` publication step
|
||||
that stores the child and its reap events before sampling nursery
|
||||
cancellation. This closes both scheduler orderings around
|
||||
`ActorNursery.cancel()`'s child snapshot.
|
||||
|
||||
The MP backend registers immediately before synchronous process startup
|
||||
and refuses to start when cancellation already owns the child. The Trio
|
||||
backend registers immediately after `open_process()` and kills that
|
||||
already-created process when registration observes cancellation. An
|
||||
early `start_actor()` guard rejects calls begun after cancellation is
|
||||
already visible.
|
||||
|
||||
Deterministic tests cover the nursery registration ordering and the MP
|
||||
no-start invariant. Comparison with PR #484 confirmed that its retained
|
||||
generic nursery/backends do not close this race.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_supervise.py` - atomically publish child ownership
|
||||
and reject actor starts after nursery cancellation.
|
||||
- `tractor/spawn/_mp.py` - register before synchronous process startup
|
||||
and abort a cancellation-owned child.
|
||||
- `tractor/spawn/_trio.py` - register immediately after process creation,
|
||||
kill a cancellation-owned child, and remove its stale unused import.
|
||||
- `tests/test_to_actor.py` - cover late registration and MP startup
|
||||
suppression.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human required review extras to be handled one item and one
|
||||
behavioral commit at a time, with each item compared against PR #484
|
||||
before acceptance. That direction split this late-registration fix from
|
||||
the original broad experiment's bounded post-ack reaping,
|
||||
`ActorNursery.cancel()` hard-reap rewrite, and debugger/error behavior.
|
||||
The human accepted the narrower late-registration boundary by requesting
|
||||
its commit plan. No direct source-line edits were made by the human.
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-21T04:08:03Z
|
||||
git_ref: 3c1bbe73
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Compare the remaining child-registration and reaping experiment with
|
||||
PR #484, then identify the next review item without changing code.
|
||||
|
||||
The next item is the late-child admission race. A spawn can pass
|
||||
`ActorNursery.start_actor()`'s early cancellation check, then be absent
|
||||
from `ActorNursery.cancel()`'s child snapshot and register afterward.
|
||||
The existing reap-request latch releases its monitor but does not send
|
||||
runtime cancellation, so the monitor can wait forever for a still-live
|
||||
process.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_supervise.py`
|
||||
|
||||
`ActorNursery._register_child()` publishes the child, installs its reap
|
||||
events, and samples `ActorNursery._cancel_called` without a checkpoint.
|
||||
The two scheduler orderings are then complete: registration first puts
|
||||
the child in the cancel snapshot, while cancellation first makes the
|
||||
backend abort the late registration.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_mp.py`
|
||||
|
||||
The multiprocessing backend registers immediately before `proc.start()`
|
||||
and refuses to start a process already owned by nursery cancellation.
|
||||
There is no Trio checkpoint between registration and process startup.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_trio.py`
|
||||
|
||||
The Trio backend registers immediately after `open_process()` and kills
|
||||
the newly opened process if cancellation won the registration race. Its
|
||||
stale unused `get_runtime_vars` import is removed so the touched module
|
||||
remains lint-clean.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py`
|
||||
|
||||
Deterministic regressions prove late registration observes cancellation
|
||||
and that the MP backend never starts a process after cancellation owns
|
||||
its registration.
|
||||
|
||||
PR #484 retains the affected generic nursery and spawn-backend paths and
|
||||
does not close this race. Keep this fix in PR #481 as its own commit;
|
||||
review bounded post-`CancelAck` reaping separately.
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: d9d7df2c-7044-463f-8768-ec024718eac9
|
||||
timestamp: 2026-08-24T22:20:33Z
|
||||
git_ref: ce38cb6f
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260824T222033Z_ce38cb6f_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue the PR #481 review after triage. The human explicitly accepted
|
||||
the proposed merge-blocking `Context.cancel()` deadline update with
|
||||
"keep" and required the work to remain limited to that review item.
|
||||
|
||||
## Response summary
|
||||
|
||||
Update `Context.cancel()` so one absolute deadline bounds both shielded
|
||||
cancel-request publication and acknowledgement waiting. Add a focused
|
||||
mocked-clock regression for the blocked-publication failure mode and run
|
||||
the narrow cancellation tests.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/_context.py` - forward the cancel transaction's absolute
|
||||
deadline to frame publication.
|
||||
- `tests/test_to_actor.py` - prove blocked context-cancel publication is
|
||||
bounded by the shared deadline.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human retained ownership of review scope and explicitly selected
|
||||
"keep" for this item after receiving keep/defer/drop options. The human
|
||||
required no unrelated cancellation changes and did not directly edit
|
||||
source lines.
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-24T22:20:33Z
|
||||
git_ref: ce38cb6f
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement the approved PR #481 review update for `Context.cancel()`.
|
||||
Use one absolute deadline for both cancellation-request frame
|
||||
publication and acknowledgement waiting, without broadening the change
|
||||
to unrelated cancellation behavior.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/_context.py`
|
||||
|
||||
`Context.cancel()` computes one absolute cancellation deadline, uses it
|
||||
for the outer bounded wait, and forwards it through
|
||||
`Portal._run_from_ns()` to shielded frame publication.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py`
|
||||
|
||||
A deterministic mocked-clock regression arranges a shielded blocked
|
||||
publication and proves that `Context.cancel()` forwards the same deadline
|
||||
which bounds the complete cancel transaction.
|
||||
|
||||
Run the focused cancellation deadline regressions after the edit.
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: d9d7df2c-7044-463f-8768-ec024718eac9
|
||||
timestamp: 2026-08-24T22:36:14Z
|
||||
git_ref: 88d538e3
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260824T223614Z_88d538e3_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue PR #481 review remediation after committing the shared
|
||||
`Context.cancel()` deadline fix. The human accepted the proposed
|
||||
child-reap bookkeeping invariant, asking only that the first fix receive
|
||||
its own commit plan and commit before this update began.
|
||||
|
||||
## Response summary
|
||||
|
||||
Check that `ActorNursery` removes its paired reap-coordination entries
|
||||
together while preserving valid pre-registration and immediate-cancel
|
||||
paths. Extend the existing real-runtime reap tests to prove all three
|
||||
child bookkeeping mappings are empty before `to_actor.run()` returns.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_supervise.py` - assert paired reap-map cleanup.
|
||||
- `tests/test_to_actor.py` - verify graceful and hard-reap bookkeeping.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human explicitly accepted this invariant update but directed the
|
||||
preceding cancellation fix to be planned and committed as a separate
|
||||
boundary first. No direct source-line edits were made by the human.
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-24T22:36:14Z
|
||||
git_ref: 88d538e3
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement the approved PR #481 child-reap bookkeeping update after the
|
||||
preceding `Context.cancel()` fix was committed separately.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_supervise.py`
|
||||
|
||||
`ActorNursery._mark_child_reaped()` captures both reap-coordination
|
||||
entries and asserts that they are either both present or both absent.
|
||||
It intentionally does not require the reap-request event to be set,
|
||||
because backend cancellation can reap immediately after registration.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py`
|
||||
|
||||
Existing real-runtime graceful and hard-reap tests verify that
|
||||
`ActorNursery._children`, `ActorNursery._child_reap_requests`, and
|
||||
`ActorNursery._child_reaped` are all empty before the one-shot call
|
||||
returns.
|
||||
|
||||
Run focused bookkeeping and real-runtime reap tests after the edit.
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: d9d7df2c-7044-463f-8768-ec024718eac9
|
||||
timestamp: 2026-08-24T22:53:56Z
|
||||
git_ref: 2f86dd1a
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260824T225356Z_2f86dd1a_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue PR #481 review remediation after committing the paired
|
||||
`ActorNursery` reap-state invariant. The human selected "keep" for the
|
||||
reviewer's request to factor a duplicated debugger predicate in
|
||||
`_try_cancel_then_kill()`.
|
||||
|
||||
## Response summary
|
||||
|
||||
Factor the child/tree debugger predicate into a local sampler used both
|
||||
before and after the cancel-RPC checkpoint. Preserve dynamic debugger
|
||||
lock re-evaluation and its distinction from root-wide debug mode.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_supervise.py` - factor the duplicated debugger
|
||||
predicate without changing cancellation behavior.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human explicitly selected "keep" after receiving keep/defer/drop
|
||||
options for this isolated review item. During commit-plan review, the
|
||||
agent found that a single pre-checkpoint snapshot could become stale;
|
||||
the human selected a local helper which re-evaluates the lock after the
|
||||
cancel RPC. The human then considered moving the predicate into
|
||||
`.devx.debug` and accepted keeping it local after confirming that no
|
||||
existing helper shares its supervisor-owned semantics. No direct
|
||||
source-line edits were made by the human.
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-24T22:53:56Z
|
||||
git_ref: 2f86dd1a
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement the approved PR #481 review refactor in
|
||||
`_try_cancel_then_kill()` without changing debugger behavior.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_supervise.py`
|
||||
|
||||
Compute the child/tree debugger predicate once, reuse it in the broader
|
||||
hard-kill protection predicate, and pass it directly to
|
||||
`debug.maybe_wait_for_debugger()`.
|
||||
|
||||
Run focused debugger/cancellation coverage and lint after the edit.
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: d9d7df2c-7044-463f-8768-ec024718eac9
|
||||
timestamp: 2026-08-24T23:39:57Z
|
||||
git_ref: 5327b25e
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260824T233957Z_5327b25e_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue PR #481 review remediation after committing the debugger-state
|
||||
sampler. The human selected "keep" for the paired review request to use
|
||||
`Aid` objects as keys in the newly added reap-coordination maps.
|
||||
|
||||
## Response summary
|
||||
|
||||
Migrate only `ActorNursery._child_reap_requests` and
|
||||
`ActorNursery._child_reaped` to `Aid` keys. Preserve the legacy
|
||||
`ActorNursery._children` `.uid` key and pass full actor identities
|
||||
through the narrow process-monitor bookkeeping path.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/runtime/_supervise.py` - key fresh reap maps by `Aid`.
|
||||
- `tractor/spawn/_spawn.py` - pass `Aid` into completed-reap cleanup.
|
||||
- `tests/test_to_actor.py` - exercise `Aid` registration keys.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human explicitly selected "keep" after reviewing the scope,
|
||||
performance, and mutability tradeoffs. The human retained the legacy
|
||||
tuple key for `_children` and accepted `Aid` for only the two fresh
|
||||
private mappings. No direct source-line edits were made by the human.
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-24T23:39:57Z
|
||||
git_ref: 5327b25e
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement the approved PR #481 review update which uses `Aid` keys for
|
||||
the two fresh `ActorNursery` reap-coordination maps while preserving the
|
||||
legacy `.uid` key for `ActorNursery._children`.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/runtime/_supervise.py`
|
||||
|
||||
Type and access `_child_reap_requests` and `_child_reaped` by `Aid`.
|
||||
Pass full actor identities through registration, cancellation, and
|
||||
completed-reap bookkeeping, deriving `.uid` only for `_children`.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_spawn.py`
|
||||
|
||||
Forward `subactor.aid` when publishing completed process teardown.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tests/test_to_actor.py`
|
||||
|
||||
Update deterministic registration tests to exercise `Aid` map keys.
|
||||
|
||||
Run focused registration/reaping tests and the full `to_actor` suite.
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: d9d7df2c-7044-463f-8768-ec024718eac9
|
||||
timestamp: 2026-08-25T01:57:42Z
|
||||
git_ref: e42ecb55
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260825T015742Z_e42ecb55_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue PR #481 review remediation after committing the `Aid` reap-map
|
||||
migration. The human selected "keep" for comments explaining why both
|
||||
spawn backends provisionally register children with `portal=None`.
|
||||
|
||||
## Response summary
|
||||
|
||||
Document that a child has no `Portal` until its IPC handshake yields a
|
||||
`Channel`, and make `portal=None` explicit at both registration calls.
|
||||
Identify the later replacement of each provisional entry with
|
||||
`Portal(chan)`. Update the MP registration test double to accept and
|
||||
assert the explicit provisional portal state. Name every registration
|
||||
argument consistently in both backends.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/spawn/_mp.py` - clarify provisional MP registration.
|
||||
- `tractor/spawn/_trio.py` - clarify provisional Trio registration.
|
||||
- `tests/test_to_actor.py` - model explicit provisional registration.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human explicitly selected "keep" after receiving keep/defer/drop
|
||||
options for this paired clarification. During local review, the human
|
||||
then requested that `subactor` and `proc` also be passed by name in both
|
||||
backend calls. No direct source-line edits were made by the human.
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-25T01:57:42Z
|
||||
git_ref: e42ecb55
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement the approved PR #481 clarification for provisional child
|
||||
registration in both process-spawn backends.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_mp.py`
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/spawn/_trio.py`
|
||||
|
||||
Explain that `portal=None` is provisional because no `Portal` can exist
|
||||
until the child completes its IPC handshake and returns a `Channel`.
|
||||
Use an explicit keyword argument and identify the later replacement with
|
||||
`Portal(chan)`.
|
||||
|
||||
Run lint and the full `to_actor` runtime suite.
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
session: d9d7df2c-7044-463f-8768-ec024718eac9
|
||||
timestamp: 2026-08-25T02:13:19Z
|
||||
git_ref: ce430fca
|
||||
scope: code
|
||||
substantive: true
|
||||
raw_file: 20260825T021319Z_ce430fca_prompt_io.raw.md
|
||||
---
|
||||
|
||||
## Prompt
|
||||
|
||||
Continue PR #481 review remediation after committing provisional child
|
||||
registration clarifications. The human selected "keep" for inlining the
|
||||
guarded `functools.Placeholder` lookup with a walrus assignment.
|
||||
|
||||
## Response summary
|
||||
|
||||
Remove the standalone placeholder assignment and bind the optional
|
||||
Python 3.14 sentinel directly in the existing conditional while
|
||||
preserving compatibility behavior.
|
||||
|
||||
## Files changed
|
||||
|
||||
- `tractor/to_actor/_api.py` - inline placeholder feature detection.
|
||||
|
||||
## Human edits
|
||||
|
||||
The human explicitly selected "keep" after receiving keep/defer/drop
|
||||
options for this isolated cleanup. No direct source-line edits were made
|
||||
by the human.
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
model: openai/gpt-5.6-sol
|
||||
service: opencode
|
||||
timestamp: 2026-08-25T02:13:19Z
|
||||
git_ref: ce430fca
|
||||
diff_cmd: git diff HEAD~1..HEAD
|
||||
---
|
||||
|
||||
Implement the approved PR #481 review cleanup for Python 3.14 partial
|
||||
placeholder detection.
|
||||
|
||||
> `git diff HEAD~1..HEAD -- tractor/to_actor/_api.py`
|
||||
|
||||
Inline the guarded `functools.Placeholder` lookup into the existing
|
||||
condition with a walrus assignment, preserving fallback behavior when
|
||||
the attribute is unavailable.
|
||||
|
||||
Run partial/placeholder normalization tests and the full `to_actor`
|
||||
suite.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
NOTE: you MUST pause this work at 12:50PM EST (BEFORE your weekly
|
||||
limit reset) for review by a human!
|
||||
|
||||
---
|
||||
|
||||
attempt to resolve https://github.com/goodboy/tractor/issues/477
|
||||
do it with /open-wkt.
|
||||
|
|
@ -37,7 +37,6 @@ Spawning actors
|
|||
|
||||
.. autoclass:: ActorNursery
|
||||
:members: start_actor,
|
||||
run_in_actor,
|
||||
cancel,
|
||||
cancel_called,
|
||||
cancelled_caught
|
||||
|
|
@ -46,11 +45,25 @@ Spawning actors
|
|||
|
||||
:meth:`ActorNursery.start_actor` (daemon actor + portal) is the
|
||||
blessed spawning primitive; pair it with
|
||||
``Portal.open_context()`` for SC-linked remote tasks.
|
||||
:meth:`ActorNursery.run_in_actor` is a *convenience* one-shot —
|
||||
spawn, run a single task, auto-cancel after the result — slated
|
||||
to be rebuilt as a high-level wrapper, so don't design around
|
||||
it as the core model.
|
||||
:meth:`Portal.open_context` for SC-linked remote tasks.
|
||||
|
||||
One-shot task actors
|
||||
--------------------
|
||||
|
||||
.. autofunction:: tractor.to_actor.run
|
||||
|
||||
.. note::
|
||||
|
||||
Without ``portal=``, :func:`tractor.to_actor.run` (parlance of
|
||||
``trio.to_thread.run_sync()`` and friends) is the convenience
|
||||
one-shot: spawn, run one task, block on its result and reap. It
|
||||
combines :meth:`ActorNursery.start_actor`, a linked
|
||||
:meth:`Portal.open_context` call and per-child reaping. With
|
||||
``portal=`` it owns only the linked task and leaves the existing
|
||||
actor's lifetime to the portal owner; that actor must expose both
|
||||
the target module and ``tractor.to_actor.MODULE``. It supersedes
|
||||
the legacy, non-blocking ``ActorNursery.run_in_actor()`` retained
|
||||
only for compatibility until its removal in PR #484.
|
||||
|
||||
.. deprecated:: 0.1.0a6
|
||||
|
||||
|
|
@ -71,14 +84,12 @@ flowing back `exactly like trio`_.
|
|||
:members: run,
|
||||
run_from_ns,
|
||||
open_stream_from,
|
||||
wait_for_result,
|
||||
cancel_actor,
|
||||
chan
|
||||
|
||||
.. deprecated:: 0.1.0a6
|
||||
|
||||
``Portal.result()`` warns; use :meth:`Portal.wait_for_result`.
|
||||
The str-form ``Portal.run('mod.path', 'fn_name')`` also warns;
|
||||
The str-form ``Portal.run('mod.path', 'fn_name')`` warns;
|
||||
pass a function *object* whose module is listed in the target's
|
||||
``enable_modules``. ``Portal.channel`` is the legacy spelling
|
||||
of :attr:`Portal.chan`.
|
||||
|
|
|
|||
|
|
@ -5,8 +5,9 @@ This is the curated reference for ``tractor``'s public surface: the
|
|||
names you can import and lean on without reading runtime internals.
|
||||
Everything below is re-exported at the top level (``import
|
||||
tractor``) unless a page says otherwise; subsystems like
|
||||
``tractor.msg``, ``tractor.trionics``, ``tractor.to_asyncio``,
|
||||
``tractor.devx`` and ``tractor.log`` are importable as submodules.
|
||||
``tractor.msg``, ``tractor.trionics``, ``tractor.to_actor``,
|
||||
``tractor.to_asyncio``, ``tractor.devx`` and ``tractor.log`` are
|
||||
importable as submodules.
|
||||
|
||||
``tractor`` is "just trio_" extended across processes: every API
|
||||
here is designed to keep the structured concurrency (SC) rules you
|
||||
|
|
@ -23,6 +24,7 @@ Most-used names at a glance:
|
|||
|
||||
open_root_actor
|
||||
open_nursery
|
||||
to_actor.run
|
||||
run_daemon
|
||||
ActorNursery
|
||||
Portal
|
||||
|
|
|
|||
|
|
@ -30,11 +30,12 @@ Starting asyncio tasks from trio
|
|||
.. note::
|
||||
|
||||
:func:`open_channel_from` mirrors the
|
||||
``Portal.open_context()`` handshake: the asyncio side calls
|
||||
:meth:`tractor.Portal.open_context` handshake: the asyncio side calls
|
||||
``chan.started_nowait(value)`` and that value pops out as
|
||||
``first`` on the trio side. :func:`run_task` is the one-shot
|
||||
form — run a single asyncio-compatible coroutine fn and return
|
||||
its result to trio.
|
||||
its result to trio; :func:`tractor.to_actor.run` is its
|
||||
cross-process sibling.
|
||||
|
||||
The inter-loop channel
|
||||
----------------------
|
||||
|
|
|
|||
|
|
@ -40,6 +40,9 @@ Broadcast fan-out
|
|||
.. autoexception:: Lagged
|
||||
:show-inheritance:
|
||||
|
||||
.. autoexception:: BroadcastReceiveError
|
||||
:show-inheritance:
|
||||
|
||||
A single-producer, many-consumer broadcast layer over any
|
||||
``trio``-style receive channel: non-lossy for the *fastest*
|
||||
consumer while slower consumers raise :class:`Lagged` (a
|
||||
|
|
@ -48,6 +51,13 @@ internal ring. This is exactly the machinery behind
|
|||
:meth:`tractor.MsgStream.subscribe` — see
|
||||
``examples/streaming_broadcast_fanout.py``.
|
||||
|
||||
If the shared underlying receiver raises an ordinary exception, the
|
||||
subscriber which owned that receive gets the original failure.
|
||||
Waiting peers drain their retained values and then raise
|
||||
:class:`BroadcastReceiveError`, with the original failure available
|
||||
as ``__cause__``. Later subscribers observe the same terminal state
|
||||
without retrying the failed underlying receiver.
|
||||
|
||||
ExceptionGroup helpers
|
||||
----------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -130,9 +130,10 @@ UDS: same-host, creds included
|
|||
|
||||
Pass ``enable_transports=['uds']`` and actors instead talk over
|
||||
unix-domain sockets, with socket files placed in the per-user
|
||||
runtime dir (``$XDG_RUNTIME_DIR/tractor/`` on linux, the
|
||||
``platformdirs`` equivalent elsewhere). Two perks over tcp on a
|
||||
single host:
|
||||
runtime dir: ``$XDG_RUNTIME_DIR/tractor/`` on linux, a short
|
||||
owner-only ``/tmp/tractor-<uid>`` dir on Darwin, and the
|
||||
``platformdirs`` equivalent elsewhere. Two perks over tcp on a single
|
||||
host:
|
||||
|
||||
- no ports to fight over; addrs are just file paths,
|
||||
- the kernel snitches on your peer for free: the listening side
|
||||
|
|
|
|||
|
|
@ -76,8 +76,8 @@ Just flip the flag on :meth:`tractor.ActorNursery.start_actor`:
|
|||
infect_asyncio=True,
|
||||
)
|
||||
|
||||
The one-shot convenience ``ActorNursery.run_in_actor()`` accepts
|
||||
the same flag. The ``to_asyncio`` APIs may **only** be called from
|
||||
The one-shot convenience ``tractor.to_actor.run()`` accepts the
|
||||
same flag. The ``to_asyncio`` APIs may **only** be called from
|
||||
tasks inside an infected actor; calling them anywhere else raises
|
||||
a loud ``RuntimeError``. You can introspect at runtime with
|
||||
``tractor.current_actor().is_infected_aio()``.
|
||||
|
|
@ -209,6 +209,11 @@ The underlying broadcast machinery is lazily allocated on first
|
|||
use and is *not* reversible for the channel's remaining lifetime,
|
||||
so only reach for it when you actually want the fan-out.
|
||||
|
||||
As with ``MsgStream``, pass ``raise_on_lag=False`` for a consumer
|
||||
which may warn, drop old values and resume from the retained window.
|
||||
Each child chooses independently; the first subscription also fixes
|
||||
the linked channel's root receive policy.
|
||||
|
||||
One-shot calls with ``run_task()``
|
||||
----------------------------------
|
||||
When you just want a single ``asyncio`` result and no streaming
|
||||
|
|
@ -229,7 +234,7 @@ dialog, skip the channel ceremony and use
|
|||
|
||||
It schedules the fn as an ``asyncio.Task``, waits for completion
|
||||
and hands the return value back to ``trio``; think of it as the
|
||||
cross-loop sibling of ``ActorNursery.run_in_actor()``. Errors and
|
||||
cross-loop sibling of ``tractor.to_actor.run()``. Errors and
|
||||
cancellation are translated exactly as for channels.
|
||||
|
||||
Cross-loop errors and cancellation
|
||||
|
|
|
|||
|
|
@ -64,11 +64,13 @@ What's going on here?
|
|||
- three healthy actors are spawned as daemons via
|
||||
:meth:`tractor.ActorNursery.start_actor`; left alone they'd
|
||||
happily idle forever,
|
||||
- a fourth actor runs ``assert_err()`` via ``.run_in_actor()`` and
|
||||
promptly trips its ``assert 0``,
|
||||
- a fourth actor runs ``assert_err()`` via a blocking
|
||||
``tractor.to_actor.run()`` one-shot and promptly trips its
|
||||
``assert 0``,
|
||||
- the resulting ``AssertionError`` ships back over IPC as a
|
||||
serialized error msg and re-raises *boxed* inside the nursery
|
||||
block as a :class:`tractor.RemoteActorError`,
|
||||
serialized error msg and re-raises *boxed* right at the call
|
||||
inside the nursery block as a
|
||||
:class:`tractor.RemoteActorError`,
|
||||
- the nursery reacts like any ``trio`` nursery would: it cancels
|
||||
the three healthy siblings (graceful runtime-cancel requests,
|
||||
acks awaited), reaps all four processes, then re-raises,
|
||||
|
|
@ -228,22 +230,23 @@ Graceful first, hard as a last resort
|
|||
|
||||
The hard-kill path is *skipped* whenever an actor in the tree
|
||||
holds the debug-REPL lock (``debug_mode=True`` flavors):
|
||||
SIGTERM raining down on a tree mid-``pdb`` session would
|
||||
Process signals raining down on a tree mid-``pdb`` session would
|
||||
clobber your prompt. See :doc:`/guide/debugging`.
|
||||
|
||||
Every process teardown in ``tractor`` walks the same escalation
|
||||
ladder, top rung first,
|
||||
Owned-child teardown in ``tractor`` begins with the same graceful
|
||||
steps, then selects the escalation path used by its supervisor,
|
||||
|
||||
1. **graceful cancel request**: a runtime-cancel msg over IPC; the
|
||||
target actor cancels its tasks, closes its channels and exits
|
||||
its :func:`trio.run` cleanly,
|
||||
2. **soft wait**: the parent waits (bounded) for the child process
|
||||
to exit on its own,
|
||||
3. **SIGTERM**: no ack within the bounded wait (internally an
|
||||
``ActorTooSlowError``) escalates to ``proc.terminate()``,
|
||||
4. **SIGKILL ultimatum**: still alive after the hard-kill timeout
|
||||
(~1.6s)? The runtime logs that the "T-800" has been deployed to
|
||||
collect the zombie and issues ``proc.kill()``. No survivors.
|
||||
3. **actor-nursery hard reap**: no cancel ack within the bounded wait
|
||||
(internally an ``ActorTooSlowError``) escalates directly to
|
||||
``proc.kill()`` before the child monitor joins the process,
|
||||
4. **legacy soft-kill path**: older teardown callers may first issue
|
||||
``proc.terminate()`` and then deploy the "T-800" ``proc.kill()``
|
||||
ultimatum if the process survives that additional bounded wait.
|
||||
|
||||
The result is the **no-zombies guarantee**: ``tractor`` tries to
|
||||
protect you from zombies, no matter what. Quoting the project
|
||||
|
|
|
|||
|
|
@ -62,7 +62,10 @@ one kwarg away,
|
|||
.. code:: python
|
||||
|
||||
async with tractor.open_actor_cluster(
|
||||
modules=['mylib.workers'],
|
||||
modules=[
|
||||
'mylib.workers',
|
||||
tractor.to_actor.MODULE,
|
||||
],
|
||||
count=4,
|
||||
names=['scout', 'miner', 'smelter', 'smith'],
|
||||
debug_mode=True, # whole-fleet crash-to-REPL
|
||||
|
|
@ -70,9 +73,12 @@ one kwarg away,
|
|||
...
|
||||
|
||||
From here the composition patterns are the usual ``tractor`` fare:
|
||||
``portal.run()`` for one-shot calls (as in the demo), or — for a
|
||||
persistent bidirectional dialog per worker — concurrently enter N
|
||||
``portal.open_context()`` blocks with
|
||||
``portal.run()`` for bare one-shot RPCs (as in the demo),
|
||||
``tractor.to_actor.run(..., portal=portal)`` for cancellation-linked
|
||||
one-shot tasks in an existing worker (include
|
||||
``tractor.to_actor.MODULE`` in ``modules``; the cluster still owns
|
||||
the worker's lifetime), or — for a persistent bidirectional dialog
|
||||
per worker — concurrently enter N ``portal.open_context()`` blocks with
|
||||
``tractor.trionics.gather_contexts()``; see :doc:`/guide/context`
|
||||
for that whole layer.
|
||||
|
||||
|
|
@ -87,8 +93,8 @@ Clusters vs. nurseries
|
|||
|
||||
``open_actor_cluster()`` is sugar, not a new primitive: under the
|
||||
hood it's just :func:`tractor.open_nursery` plus N concurrent
|
||||
``start_actor()`` calls plus a ``.cancel()`` on the way out. Reach
|
||||
for it when,
|
||||
:meth:`~tractor.ActorNursery.start_actor` calls plus a ``.cancel()``
|
||||
on the way out. Reach for it when,
|
||||
|
||||
- you want a *flat*, homogeneous fleet (classic worker-pool or
|
||||
map-style fan-out shapes),
|
||||
|
|
|
|||
|
|
@ -15,12 +15,12 @@ a single `structured concurrency`_ (SC) scope over IPC.
|
|||
:alt: sequence diagram of the context handshake msg flow
|
||||
|
||||
Pretty much everything else is (or is slated to be) built on this
|
||||
one primitive: ``ActorNursery.run_in_actor()`` is a convenience
|
||||
for "spawn, open a context, await the result, tear down"; plain
|
||||
``Portal.run()`` RPC is planned to be re-implemented on top of it;
|
||||
the multi-process debugger's tree-wide REPL lock rides one. Grok
|
||||
this page and the rest of the library reads as convenience
|
||||
wrappers B)
|
||||
one primitive: ``tractor.to_actor.run()`` uses it for a linked
|
||||
one-shot task, spawning and reaping an actor only when no ``portal=``
|
||||
is supplied; plain ``Portal.run()`` RPC is planned to be
|
||||
re-implemented on top of it; the multi-process debugger's tree-wide
|
||||
REPL lock rides one. Grok this page and the rest of the library reads
|
||||
as convenience wrappers B)
|
||||
|
||||
The endpoint contract
|
||||
---------------------
|
||||
|
|
|
|||
|
|
@ -44,8 +44,9 @@ clan shares one registry with zero config on your part.
|
|||
The bootstrap rule inside ``open_root_actor()`` is delightfully
|
||||
simple:
|
||||
|
||||
- on boot, ping every socket addr in ``registry_addrs``; when none
|
||||
are passed the per-transport defaults are used: for TCP the
|
||||
- on boot, probe every addr in ``registry_addrs`` with a bounded
|
||||
Tractor ``Aid`` handshake; when none are passed the per-transport
|
||||
defaults are used: for TCP the
|
||||
loopback ``('127.0.0.1', 1616)``, for UDS a
|
||||
``registry@1616.sock`` file,
|
||||
|
||||
|
|
@ -53,9 +54,11 @@ simple:
|
|||
actor and register with the *existing* registry; your own IPC
|
||||
server binds random same-transport addrs instead,
|
||||
|
||||
- if **nothing answers, congratulations: you just became the
|
||||
registrar**. Your transport server binds the registry addrs
|
||||
themselves and you start serving lookups for everyone else.
|
||||
- if every address is absent, congratulations: you just became the
|
||||
registrar. Your transport server binds the registry addrs
|
||||
themselves and you start serving lookups for everyone else,
|
||||
- if no registrar answers but an address is occupied by a foreign or
|
||||
non-responsive endpoint, startup fails instead of binding over it.
|
||||
|
||||
Pass ``ensure_registry=True`` when your program *requires* being
|
||||
the one-and-only registrar; boot then fails loudly with a
|
||||
|
|
@ -196,9 +199,10 @@ the existing registrar:
|
|||
|
||||
trio.run(main)
|
||||
|
||||
Per the bootstrap rules above, if the registrar at those addrs is
|
||||
*not* reachable this process simply becomes its own (registrar)
|
||||
root — so the same code works standalone and as a tree-joiner.
|
||||
Per the bootstrap rules above, if those addrs are absent this process
|
||||
becomes its own registrar root, so the same code works standalone and
|
||||
as a tree-joiner. An occupied address that does not complete a Tractor
|
||||
registrar handshake fails startup instead of being rebound.
|
||||
|
||||
"Arbiter"? A legacy naming note
|
||||
-------------------------------
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@ docs; what you read is what CI runs).
|
|||
Roughly in "first date to long term relationship"
|
||||
order,
|
||||
|
||||
- :doc:`spawning` — actor nurseries, daemons +
|
||||
one-shot workers, process lifetimes.
|
||||
- :doc:`spawning` — actor nurseries, daemons,
|
||||
``to_actor.run()`` one-shots and process lifetimes.
|
||||
- :doc:`rpc` — portals: calling into another
|
||||
process like it's a local ``await``.
|
||||
- :doc:`context` — the cross-actor task-pair
|
||||
|
|
|
|||
|
|
@ -119,15 +119,16 @@ Run a func in a process
|
|||
|
||||
Even a pool can be overkill; "run this one async func in a
|
||||
subprocess and give me the result" is a one-liner via
|
||||
:meth:`tractor.ActorNursery.run_in_actor`,
|
||||
:func:`tractor.to_actor.run`,
|
||||
|
||||
.. literalinclude:: ../../examples/parallelism/single_func.py
|
||||
:caption: examples/parallelism/single_func.py
|
||||
:language: python
|
||||
|
||||
``run_in_actor()`` is a *convenience wrapper* — spawn an actor, run
|
||||
exactly one task in it, reap on result — not the core spawning
|
||||
model (that's :meth:`tractor.ActorNursery.start_actor` plus
|
||||
``to_actor.run()`` is a *convenience wrapper* — spawn an actor,
|
||||
run exactly one task in it, block on and return its result, reap
|
||||
— not the core spawning model (that's
|
||||
:meth:`tractor.ActorNursery.start_actor` plus
|
||||
:meth:`tractor.Portal.open_context`; see :doc:`/guide/context`).
|
||||
But for this fire-and-collect shape it's exactly the right amount
|
||||
of typing.
|
||||
|
|
|
|||
|
|
@ -80,28 +80,56 @@ One special namespace exists: ``'self'`` resolves to the remote
|
|||
how internal machinery (cancel requests, registry ops) travels;
|
||||
don't build your app on it.
|
||||
|
||||
One-shot results: ``wait_for_result()``
|
||||
---------------------------------------
|
||||
A portal returned from
|
||||
:meth:`~tractor.ActorNursery.run_in_actor` has exactly one
|
||||
"main" task running remotely; that task's ``return`` value is
|
||||
delivered as the portal's *final result*:
|
||||
One-shot subactors: ``to_actor.run()``
|
||||
--------------------------------------
|
||||
When the call should own a fresh subactor whose entire job is one
|
||||
function call, :func:`tractor.to_actor.run` spawns it, runs the task,
|
||||
returns its result and reaps the process — all in one blocking call:
|
||||
|
||||
.. code:: python
|
||||
|
||||
portal = await an.run_in_actor(fib, n=10)
|
||||
final = await portal.wait_for_result()
|
||||
from functools import partial
|
||||
|
||||
final = await tractor.to_actor.run(
|
||||
partial(fib, n=10),
|
||||
an=an,
|
||||
)
|
||||
|
||||
Semantics worth knowing:
|
||||
|
||||
- it blocks until the remote task returns, re-raising any
|
||||
remote error in the usual boxed form.
|
||||
- once resolved it's idempotent: later calls return the same
|
||||
cached value.
|
||||
- a *daemon* portal (from ``start_actor()``) has no main task,
|
||||
so there's no final result to wait for: you'll get a warning
|
||||
plus a ``NoResult`` sentinel. Results of individual daemon
|
||||
calls come straight back from each ``await portal.run()``.
|
||||
remote error in the usual boxed form right in the calling
|
||||
task.
|
||||
- lifetime mode also determines process ownership: ``an=`` spawns and
|
||||
reaps a fresh child in an existing actor nursery, while passing
|
||||
neither does the same in a private call-scoped nursery (booting
|
||||
the runtime if needed). ``portal=`` instead runs one linked task
|
||||
in an existing actor; it neither spawns nor reaps that actor, so
|
||||
the portal's owner remains responsible for its lifetime.
|
||||
- concurrency composes the plain ``trio`` way: schedule
|
||||
multiple ``run()`` calls into a local task nursery (see
|
||||
``examples/parallelism/concurrent_toactor_primes.py``).
|
||||
|
||||
A reused actor must expose both the target module and the
|
||||
``to_actor`` context trampoline:
|
||||
|
||||
.. code:: python
|
||||
|
||||
async with tractor.open_nursery() as an:
|
||||
portal = await an.start_actor(
|
||||
'worker',
|
||||
enable_modules=[
|
||||
__name__,
|
||||
tractor.to_actor.MODULE,
|
||||
],
|
||||
)
|
||||
try:
|
||||
final = await tractor.to_actor.run(
|
||||
partial(fib, n=10),
|
||||
portal=portal,
|
||||
)
|
||||
finally:
|
||||
await portal.cancel_actor()
|
||||
|
||||
Pure RPC daemons: ``run_daemon()``
|
||||
----------------------------------
|
||||
|
|
@ -147,7 +175,8 @@ call tears down the entire sub-tree — SC, transitively.
|
|||
|
||||
When to graduate to ``Context``
|
||||
-------------------------------
|
||||
``portal.run()`` is great for one-shot, request-response calls.
|
||||
The :meth:`~tractor.Portal.run` method is great for one-shot,
|
||||
request-response calls.
|
||||
Reach for :meth:`~tractor.Portal.open_context` with an
|
||||
``@tractor.context`` endpoint as soon as you want:
|
||||
|
||||
|
|
@ -160,10 +189,15 @@ Reach for :meth:`~tractor.Portal.open_context` with an
|
|||
:meth:`~tractor.Portal.cancel_actor` nukes the **entire**
|
||||
remote runtime and its process.
|
||||
|
||||
In fact the source plans for ``Portal.run()`` itself to be
|
||||
rebuilt on top of ``open_context()`` — contexts *are* the core
|
||||
inter-actor protocol. Take the full tour in
|
||||
:doc:`/guide/context`.
|
||||
:func:`tractor.to_actor.run` already enters the full
|
||||
:meth:`~tractor.Portal.open_context` lifecycle. The older
|
||||
:meth:`~tractor.Portal.run` path instead uses the ``Context`` returned
|
||||
by the lower-level ``Actor.start_remote_task()`` directly, avoiding a
|
||||
``Started`` handshake but owning less lifecycle machinery. A follow-up
|
||||
should factor their shared linked-task lifecycle without requiring
|
||||
``Portal.run()`` to delegate through the public context API or add
|
||||
another wire message. Take the full tour in
|
||||
:doc:`the context guide </guide/context>`.
|
||||
|
||||
.. seealso::
|
||||
|
||||
|
|
|
|||
|
|
@ -91,31 +91,34 @@ somebody-ing:
|
|||
|
||||
What's going on here?
|
||||
|
||||
- ``start_actor('frank', enable_modules=[__name__])`` forks off
|
||||
- :meth:`~tractor.ActorNursery.start_actor` forks off
|
||||
a new process, boots a ``tractor`` runtime inside it, and
|
||||
allows it to serve functions from the current module (see the
|
||||
allowlist section below).
|
||||
- each ``await portal.run(...)`` schedules a *new* task in
|
||||
- each :meth:`~tractor.Portal.run` call schedules a *new* task in
|
||||
frank's task tree and waits on its result — the full RPC story
|
||||
lives in :doc:`/guide/rpc`.
|
||||
- frank has no main task to complete, so without the final
|
||||
``await portal.cancel_actor()`` the nursery block would wait
|
||||
on him **forever**. Daemon lifetimes are *yours* to end; that
|
||||
explicitness is the point.
|
||||
:meth:`~tractor.Portal.cancel_actor` call the nursery block would
|
||||
wait on him **forever**. Daemon lifetimes are *yours* to end;
|
||||
that explicitness is the point.
|
||||
|
||||
``run_in_actor()``: quick one-shot parallelism
|
||||
``to_actor.run()``: quick one-shot parallelism
|
||||
----------------------------------------------
|
||||
:meth:`~tractor.ActorNursery.run_in_actor` is the convenience
|
||||
wrapper: spawn an actor, run exactly one async function in it,
|
||||
then reap the process as soon as the result arrives.
|
||||
Without ``portal=``, :func:`tractor.to_actor.run` is the convenience
|
||||
wrapper: spawn an actor, run exactly one async function in it, block
|
||||
on the result, then reap the process — the distributed sibling of
|
||||
``trio.to_thread.run_sync()``.
|
||||
|
||||
.. code:: python
|
||||
|
||||
async with tractor.open_nursery() as an:
|
||||
portal = await an.run_in_actor(burn_cpu)
|
||||
async with (
|
||||
tractor.open_nursery() as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
# burn rubber in the parent too...
|
||||
await burn_cpu()
|
||||
total = await portal.wait_for_result()
|
||||
tn.start_soon(burn_cpu)
|
||||
total = await tractor.to_actor.run(burn_cpu, an=an)
|
||||
|
||||
A few details worth knowing:
|
||||
|
||||
|
|
@ -123,43 +126,61 @@ A few details worth knowing:
|
|||
``name='something_cuter'``.
|
||||
- the function's module is auto-added to the child's
|
||||
``enable_modules`` allowlist.
|
||||
- extra ``**kwargs`` are forwarded to the function itself.
|
||||
- the child is *auto-cancelled* once its "main" result lands;
|
||||
at nursery exit these run-once children are always reaped
|
||||
first (causality_ is paramount!).
|
||||
- targets cross IPC as ``module:name`` references, so portable calls
|
||||
use module-global async functions or ``functools.partial`` objects
|
||||
wrapping them. Nested functions, methods and callable objects do not
|
||||
provide that stable address.
|
||||
- target arguments are positional; use ``functools.partial()``
|
||||
to bind target keyword arguments. Keywords passed directly to
|
||||
``run()`` configure actor placement and spawning.
|
||||
- the call blocks until the result (or error) lands and the
|
||||
child is *auto-cancelled* (reaped) right after — so remote
|
||||
errors raise directly in your calling task (causality_ is
|
||||
paramount!).
|
||||
- "placement" composes: ``an=`` spawns a call-owned child from an
|
||||
existing actor nursery, while passing neither opens a private
|
||||
call-scoped nursery. ``portal=`` instead reuses an existing actor:
|
||||
the call scopes only its linked remote task, neither spawns nor
|
||||
reaps the actor, and leaves its lifetime with the portal's owner.
|
||||
That actor must expose both the target module and
|
||||
``tractor.to_actor.MODULE``.
|
||||
|
||||
.. note::
|
||||
|
||||
``run_in_actor()`` is a convenience, **not** the core model.
|
||||
The source literally marks it for an eventual rebuild as
|
||||
a thin "hilevel" wrapper on top of
|
||||
:meth:`~tractor.Portal.open_context` (the modern inter-actor
|
||||
task API). Teach your fingers to use it for quick
|
||||
fire-and-collect parallelism — think a per-function
|
||||
trio-parallel_ style one-shot — and reach for
|
||||
``start_actor()`` + ``open_context()`` for anything
|
||||
long-lived, stateful or streaming
|
||||
(:doc:`/guide/context`).
|
||||
:func:`tractor.to_actor.run` is a convenience, **not** the core
|
||||
model. For actor-owning placements it combines
|
||||
:meth:`~tractor.ActorNursery.start_actor`, a linked
|
||||
:meth:`~tractor.Portal.open_context` call, and per-child
|
||||
cancellation/reaping. With ``portal=`` it uses only the linked
|
||||
context call and leaves the existing actor's lifetime untouched.
|
||||
Teach your fingers to use it for quick
|
||||
fire-and-collect parallelism — think a per-function trio-parallel_
|
||||
style one-shot — and reach for
|
||||
:meth:`~tractor.ActorNursery.start_actor` plus
|
||||
:meth:`~tractor.Portal.open_context` for anything long-lived,
|
||||
stateful or streaming; see :doc:`/guide/context`.
|
||||
|
||||
Actor lifetimes and teardown order
|
||||
----------------------------------
|
||||
So we have two lifetime flavors:
|
||||
There are two actor-lifetime flavors:
|
||||
|
||||
- **run-once** (``run_in_actor()``): lives exactly as long as
|
||||
its single task; reaped the moment its result (or error)
|
||||
arrives.
|
||||
- **daemon** (``start_actor()``): lives until *someone* cancels
|
||||
it — an explicit ``await portal.cancel_actor()``, a bulk
|
||||
``await an.cancel()``, or the one-cancels-all strategy kicking
|
||||
in on error.
|
||||
- **call-owned one-shot** (``to_actor.run()`` without ``portal=``):
|
||||
spawned for one task, then cancelled and joined before ``run()``
|
||||
returns its result or raises its error.
|
||||
- **caller-owned daemon** (:meth:`~tractor.ActorNursery.start_actor`),
|
||||
including an actor later reused through
|
||||
``to_actor.run(..., portal=portal)``: lives until *someone*
|
||||
cancels it via an explicit
|
||||
:meth:`~tractor.Portal.cancel_actor`, a bulk
|
||||
:meth:`~tractor.ActorNursery.cancel`, or the one-cancels-all
|
||||
strategy kicking in on error.
|
||||
|
||||
On a clean exit of the nursery block the teardown order is:
|
||||
|
||||
1. the nursery waits on every run-once actor's final result;
|
||||
any errors from these are raised immediately so your code
|
||||
(acting as supervisor) gets first crack at handling them.
|
||||
2. then it waits on daemon actors — **indefinitely**. If you
|
||||
spawned a daemon, you own its lifetime.
|
||||
1. call-owned actors do not survive their own ``to_actor.run()``
|
||||
calls; each is reaped before its call returns.
|
||||
2. the nursery waits on caller-owned daemon actors
|
||||
**indefinitely**. If you spawned one, you own its lifetime.
|
||||
|
||||
When a child *is* cancelled, teardown is graceful-first per SC
|
||||
discipline: the runtime sends an IPC cancel request and gives
|
||||
|
|
|
|||
|
|
@ -171,6 +171,12 @@ keeps pace with the *fastest* subscriber; a task falling more
|
|||
than the buffered window behind has its next receive raise
|
||||
``tractor.trionics.Lagged`` to say it lost data.
|
||||
|
||||
Pass ``raise_on_lag=False`` when a consumer may drop old values and
|
||||
resume from the oldest retained item instead. The receiver logs the
|
||||
overrun rather than raising. Each child subscription chooses its own
|
||||
policy; the first call also fixes the policy of the stream's root
|
||||
receive handle because broadcaster allocation is irreversible.
|
||||
|
||||
The broadcast handle stays duplex btw: it proxies ``send()``
|
||||
through to the underlying stream, so each subscriber task can
|
||||
keep talking upstream while consuming its fan-out copy.
|
||||
|
|
|
|||
|
|
@ -185,8 +185,10 @@ first with a bounded grace window — so actor runtimes can run
|
|||
their ``trio`` teardown paths — escalating to ``SIGKILL`` only as
|
||||
a last resort. The ``--shm`` sweep unlinks ``/dev/shm/`` segments
|
||||
that no live process has open (it leans on psutil_, already in
|
||||
your dev venv, to check live mappings and fds) and ``--uds``
|
||||
clears socket files whose binder pid is dead.
|
||||
your dev venv, to check live mappings and fds) and ``--uds`` clears
|
||||
dead-binder sockets from Tractor's platform-specific runtime dir. It
|
||||
also unconditionally removes ``registry@1616.sock``; do not run the UDS
|
||||
sweep while a live registrar is serving from that default address.
|
||||
|
||||
Testing your own ``tractor`` app
|
||||
--------------------------------
|
||||
|
|
|
|||
|
|
@ -43,24 +43,21 @@ Run it::
|
|||
What's going on here?
|
||||
|
||||
- ``trio.run(main)`` starts the **root actor**; the ``tractor``
|
||||
runtime boots *implicitly* inside ``tractor.open_nursery()``
|
||||
whenever it isn't already up. No special entrypoint, no
|
||||
framework takeover - it's just a ``trio`` app,
|
||||
runtime boots *implicitly* inside this ``tractor.to_actor.run()``
|
||||
call because neither ``an=`` nor ``portal=`` was supplied. No
|
||||
special entrypoint, no framework takeover - it's just a ``trio``
|
||||
app,
|
||||
- inside ``main()`` a *subactor* is spawned via
|
||||
``ActorNursery.run_in_actor()`` and told to run exactly one
|
||||
``tractor.to_actor.run()`` and told to run exactly one
|
||||
function: ``cellar_door()``,
|
||||
- you get back a ``Portal``: your handle for invoking tasks in
|
||||
the new process's (separate!) memory domain. We lean on it
|
||||
much harder in the next section,
|
||||
- the subactor, *some_linguist*, boots a fresh ``trio.run()`` in
|
||||
a **new process** and executes ``cellar_door()`` as its *main
|
||||
task* (note the child proving it is *not* the root with
|
||||
a **new process** and executes ``cellar_door()`` as its linked
|
||||
one-shot task (note the child proving it is *not* the root with
|
||||
``tractor.is_root_process()``), then ships the return value
|
||||
back over IPC,
|
||||
- the parent grabs that *final result* with
|
||||
``await portal.wait_for_result()``, much like you'd expect
|
||||
from a "future" - except causality is preserved: the nursery
|
||||
block only exits once the child is *done*, dead, and reaped.
|
||||
- the call *blocks* until that final result arrives, then
|
||||
returns it - causality is preserved: your task only proceeds
|
||||
once the child is *done*, dead, and reaped.
|
||||
|
||||
.. margin:: Just need a worker pool?
|
||||
|
||||
|
|
@ -71,17 +68,20 @@ What's going on here?
|
|||
|
||||
.. note::
|
||||
|
||||
``run_in_actor()`` is the *convenience* wrapper: one-shot
|
||||
spawn-run-reap semantics for when a subactor's entire job is
|
||||
a single function call. The core primitives are
|
||||
``ActorNursery.start_actor()`` (next up) paired with
|
||||
``Portal.open_context()`` for full, SC-linked cross-actor
|
||||
dialogs - see :doc:`/guide/context`.
|
||||
Without ``portal=``, ``to_actor.run()`` (parlance of
|
||||
``trio.to_thread`` and friends) is the *convenience* wrapper:
|
||||
one-shot spawn-run-reap semantics for when a subactor's entire
|
||||
job is a single function call. The core primitives are
|
||||
:meth:`~tractor.ActorNursery.start_actor` (next up) — which
|
||||
hands you a ``Portal``, your handle for invoking tasks in the
|
||||
new process's (separate!) memory domain — paired with
|
||||
:meth:`~tractor.Portal.open_context` for full, SC-linked
|
||||
cross-actor dialogs; see :doc:`/guide/context`.
|
||||
|
||||
Daemon actors and RPC
|
||||
---------------------
|
||||
A ``run_in_actor()``-spawned actor terminates when its main task
|
||||
returns. But often you want long-lived *daemon* actors instead:
|
||||
A subactor spawned by ``to_actor.run()`` terminates after its lone
|
||||
task returns. But often you want long-lived *daemon* actors instead:
|
||||
spawned once, then serving (allowlisted) RPC requests until told
|
||||
otherwise. That's ``start_actor()``:
|
||||
|
||||
|
|
@ -91,14 +91,17 @@ otherwise. That's ``start_actor()``:
|
|||
|
||||
Two lifetime rules to internalize:
|
||||
|
||||
- a ``run_in_actor()`` actor lives exactly as long as its main
|
||||
task; the nursery waits for that function (and thus the
|
||||
process) to complete before unblocking,
|
||||
- a subactor spawned and owned by ``to_actor.run()`` is cancelled
|
||||
and reaped before the call returns its result or raises its error,
|
||||
- a ``start_actor()`` actor *lives forever* - an RPC daemon the
|
||||
nursery will happily wait on **indefinitely** - until some
|
||||
task explicitly cancels it via ``Portal.cancel_actor()`` (as
|
||||
above), or its parent nursery is cancelled wholesale.
|
||||
|
||||
Passing ``portal=`` is different: the call owns only the linked
|
||||
remote task. It neither spawns nor reaps the existing actor; the
|
||||
portal's owner must end that actor's lifetime.
|
||||
|
||||
.. tip::
|
||||
|
||||
Want your *entire program* to just be a long-lived RPC
|
||||
|
|
@ -208,16 +211,20 @@ The script of the scene (runtime ``INFO`` log lines trimmed)::
|
|||
|
||||
The new tricks in play:
|
||||
|
||||
- two subactors, *donny* and *gretchen*, are each told to run
|
||||
``say_hello()`` targeting the *other* by name,
|
||||
- *donny* and *gretchen* start as daemon actors so each remains alive
|
||||
while the other discovers it and completes its line,
|
||||
- a local ``trio`` nursery runs both ``Portal.run(say_hello)`` calls
|
||||
concurrently; starting both actors first avoids either reciprocal
|
||||
dialog racing one-shot process reaping,
|
||||
- ``tractor.wait_for_actor()`` blocks until the named peer has
|
||||
registered with the tree's *registrar* (every actor announces
|
||||
itself at boot), then yields a ``Portal`` connected
|
||||
**directly** to that peer,
|
||||
- each actor invokes its partner's ``hi()`` over that portal:
|
||||
actor-to-actor RPC with the root merely *directing* - and both
|
||||
final lines flow back to ``main()`` via
|
||||
``await portal.wait_for_result()``,
|
||||
actor-to-actor RPC with the root merely *directing* - and each
|
||||
``Portal.run()`` returns its final line directly to ``main()``,
|
||||
- the actor nursery explicitly cancels both daemons only after both
|
||||
dialogs complete,
|
||||
- ``tractor.log.get_console_log("INFO")`` cranks up runtime
|
||||
logging so you can watch the spawn/register/cancel machinery
|
||||
narrate itself; remove it for a quiet set.
|
||||
|
|
|
|||
|
|
@ -21,22 +21,38 @@ async def main():
|
|||
"""Main tractor entry point, the "master" process (for now
|
||||
acts as the "director").
|
||||
"""
|
||||
async with tractor.open_nursery() as n:
|
||||
async with tractor.open_nursery() as an:
|
||||
print("Alright... Action!")
|
||||
|
||||
donny = await n.run_in_actor(
|
||||
say_hello,
|
||||
name='donny',
|
||||
# arguments are always named
|
||||
other_actor='gretchen',
|
||||
# both actors wait on (then dial!) the *other*, so each
|
||||
# must outlive both hellos: spawn as daemons, run the
|
||||
# hellos concurrently, reap only once both complete.
|
||||
portals: dict[str, tractor.Portal] = {
|
||||
name: await an.start_actor(
|
||||
name,
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
gretchen = await n.run_in_actor(
|
||||
for name in ('donny', 'gretchen')
|
||||
}
|
||||
|
||||
async def run_and_print(
|
||||
name: str,
|
||||
other_actor: str,
|
||||
) -> None:
|
||||
print(
|
||||
# RPC through an existing actor's `Portal`.
|
||||
await portals[name].run(
|
||||
say_hello,
|
||||
name='gretchen',
|
||||
other_actor='donny',
|
||||
other_actor=other_actor,
|
||||
)
|
||||
print(await gretchen.wait_for_result())
|
||||
print(await donny.wait_for_result())
|
||||
)
|
||||
|
||||
async with trio.open_nursery() as tn:
|
||||
tn.start_soon(run_and_print, 'donny', 'gretchen')
|
||||
tn.start_soon(run_and_print, 'gretchen', 'donny')
|
||||
|
||||
await an.cancel()
|
||||
|
||||
print("CUTTTT CUUTT CUT!!! Donny!! You're supposed to say...")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,17 +10,14 @@ async def cellar_door():
|
|||
async def main():
|
||||
"""The main ``tractor`` routine.
|
||||
"""
|
||||
async with tractor.open_nursery() as n:
|
||||
|
||||
portal = await n.run_in_actor(
|
||||
# spawn a subactor, run ``cellar_door()`` as its lone task,
|
||||
# block until its result arrives and the subactor is reaped.
|
||||
print(
|
||||
await tractor.to_actor.run(
|
||||
cellar_door,
|
||||
name='some_linguist',
|
||||
)
|
||||
|
||||
# The ``async with`` will unblock here since the 'some_linguist'
|
||||
# actor has completed its main task ``cellar_door``.
|
||||
|
||||
print(await portal.wait_for_result())
|
||||
)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
from functools import partial
|
||||
|
||||
import trio
|
||||
import tractor
|
||||
|
||||
|
|
@ -21,26 +23,41 @@ async def breakpoint_forever():
|
|||
async def spawn_until(depth=0):
|
||||
""""A nested nursery that triggers another ``NameError``.
|
||||
"""
|
||||
async with tractor.open_nursery() as n:
|
||||
async with (
|
||||
tractor.open_nursery() as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
if depth < 1:
|
||||
|
||||
await n.run_in_actor(breakpoint_forever)
|
||||
|
||||
p = await n.run_in_actor(
|
||||
name_error,
|
||||
name='name_error'
|
||||
tn.start_soon(
|
||||
partial(
|
||||
tractor.to_actor.run,
|
||||
breakpoint_forever,
|
||||
an=an,
|
||||
)
|
||||
)
|
||||
|
||||
# Let the background one-shot enter `breakpoint_forever()`
|
||||
# before its sibling raises and cancellation propagates.
|
||||
await trio.sleep(0.5)
|
||||
# rx and propagate error from child
|
||||
await p.result()
|
||||
await tractor.to_actor.run(
|
||||
name_error,
|
||||
an=an,
|
||||
name='name_error',
|
||||
)
|
||||
|
||||
else:
|
||||
# recusrive call to spawn another process branching layer of
|
||||
# the tree
|
||||
# the tree; blocks (up) each level until the leaf's
|
||||
# `name_error` relays through.
|
||||
depth -= 1
|
||||
await n.run_in_actor(
|
||||
await tractor.to_actor.run(
|
||||
partial(
|
||||
spawn_until,
|
||||
depth=depth,
|
||||
),
|
||||
an=an,
|
||||
name=f'spawn_until_{depth}',
|
||||
)
|
||||
|
||||
|
|
@ -65,34 +82,37 @@ async def main():
|
|||
└─ python -m tractor._child --uid ('spawn_until_0', 'de918e6d ...)
|
||||
|
||||
"""
|
||||
async with tractor.open_nursery(
|
||||
async with (
|
||||
tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
loglevel='pdb',
|
||||
) as n:
|
||||
|
||||
# spawn both actors
|
||||
portal = await n.run_in_actor(
|
||||
) as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
# spawn both spawner trees as concurrent one-shots; the
|
||||
# first tree's (relayed) error cancels the other.
|
||||
tn.start_soon(
|
||||
partial(
|
||||
tractor.to_actor.run,
|
||||
partial(
|
||||
spawn_until,
|
||||
depth=3,
|
||||
),
|
||||
an=an,
|
||||
name='spawner0',
|
||||
)
|
||||
portal1 = await n.run_in_actor(
|
||||
)
|
||||
tn.start_soon(
|
||||
partial(
|
||||
tractor.to_actor.run,
|
||||
partial(
|
||||
spawn_until,
|
||||
depth=4,
|
||||
),
|
||||
an=an,
|
||||
name='spawner1',
|
||||
)
|
||||
|
||||
# TODO: test this case as well where the parent don't see
|
||||
# the sub-actor errors by default and instead expect a user
|
||||
# ctrl-c to kill the root.
|
||||
with trio.move_on_after(3):
|
||||
await trio.sleep_forever()
|
||||
|
||||
# gah still an issue here.
|
||||
await portal.result()
|
||||
|
||||
# should never get here
|
||||
await portal1.result()
|
||||
)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
|
|
@ -15,12 +15,12 @@ async def name_error():
|
|||
async def spawn_error():
|
||||
""""A nested nursery that triggers another ``NameError``.
|
||||
"""
|
||||
async with tractor.open_nursery() as n:
|
||||
portal = await n.run_in_actor(
|
||||
async with tractor.open_nursery() as an:
|
||||
return await tractor.to_actor.run(
|
||||
name_error,
|
||||
an=an,
|
||||
name='name_error_1',
|
||||
)
|
||||
return await portal.result()
|
||||
|
||||
|
||||
async def main():
|
||||
|
|
@ -38,29 +38,36 @@ async def main():
|
|||
- root actor should then fail on assert
|
||||
- program termination
|
||||
"""
|
||||
async with tractor.open_nursery(
|
||||
async with (
|
||||
tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
loglevel='devx',
|
||||
) as n:
|
||||
) as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
# spawn both actors..
|
||||
portal = await an.start_actor(
|
||||
'name_error',
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
portal1 = await an.start_actor(
|
||||
'spawn_error',
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
|
||||
# spawn both actors
|
||||
portal = await n.run_in_actor(
|
||||
name_error,
|
||||
name='name_error',
|
||||
)
|
||||
portal1 = await n.run_in_actor(
|
||||
spawn_error,
|
||||
name='spawn_error',
|
||||
)
|
||||
# ..and bg-schedule their erroring tasks.
|
||||
tn.start_soon(portal.run, name_error)
|
||||
tn.start_soon(portal1.run, spawn_error)
|
||||
|
||||
# yield to the bg tasks so both RPC requests are
|
||||
# submitted (and start crashing) before the root's own
|
||||
# error below (the legacy `run_in_actor()` submitted
|
||||
# in-line with each spawn).
|
||||
await trio.sleep(0.5)
|
||||
|
||||
# trigger a root actor error
|
||||
assert 0
|
||||
|
||||
# attempt to collect results (which raises error in parent)
|
||||
# still has some issues where the parent seems to get stuck
|
||||
await portal.result()
|
||||
await portal1.result()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
trio.run(main)
|
||||
|
|
|
|||
|
|
@ -17,12 +17,12 @@ async def name_error():
|
|||
async def spawn_error():
|
||||
""""A nested nursery that triggers another ``NameError``.
|
||||
"""
|
||||
async with tractor.open_nursery() as n:
|
||||
portal = await n.run_in_actor(
|
||||
async with tractor.open_nursery() as an:
|
||||
return await tractor.to_actor.run(
|
||||
name_error,
|
||||
an=an,
|
||||
name='name_error_1',
|
||||
)
|
||||
return await portal.result()
|
||||
|
||||
|
||||
async def main():
|
||||
|
|
@ -36,17 +36,39 @@ async def main():
|
|||
`-python -m tractor._child --uid ('spawn_error', '52ee14a5 ...)
|
||||
`-python -m tractor._child --uid ('name_error', '3391222c ...)
|
||||
"""
|
||||
errors: list[BaseException] = []
|
||||
|
||||
async with tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
# loglevel='runtime',
|
||||
) as n:
|
||||
) as an:
|
||||
|
||||
# Spawn both actors, don't bother with collecting results
|
||||
# (would result in a different debugger outcome due to parent's
|
||||
# cancellation).
|
||||
await n.run_in_actor(breakpoint_forever)
|
||||
await n.run_in_actor(name_error)
|
||||
await n.run_in_actor(spawn_error)
|
||||
async def run_and_collect(fn):
|
||||
'''
|
||||
One-shot whose (boxed) error is stashed instead of
|
||||
raised so a sibling's crash never cancels the others
|
||||
before they've had their own debugger sessions (the
|
||||
"collect all errors" the legacy `run_in_actor()` API
|
||||
did implicitly at nursery teardown).
|
||||
|
||||
'''
|
||||
try:
|
||||
await tractor.to_actor.run(fn, an=an)
|
||||
except tractor.RemoteActorError as rae:
|
||||
errors.append(rae)
|
||||
|
||||
# Spawn all one-shot task actors, collecting (vs.
|
||||
# raising) their errors.
|
||||
async with trio.open_nursery() as tn:
|
||||
tn.start_soon(run_and_collect, breakpoint_forever)
|
||||
tn.start_soon(run_and_collect, name_error)
|
||||
tn.start_soon(run_and_collect, spawn_error)
|
||||
|
||||
if errors:
|
||||
raise BaseExceptionGroup(
|
||||
'multi_subactors errored!',
|
||||
errors,
|
||||
)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
from functools import partial
|
||||
|
||||
import trio
|
||||
import tractor
|
||||
|
||||
|
|
@ -10,15 +12,17 @@ async def name_error():
|
|||
async def spawn_until(depth=0):
|
||||
""""A nested nursery that triggers another ``NameError``.
|
||||
"""
|
||||
async with tractor.open_nursery() as n:
|
||||
async with tractor.open_nursery() as an:
|
||||
if depth < 1:
|
||||
# await n.run_in_actor('breakpoint_forever', breakpoint_forever)
|
||||
await n.run_in_actor(name_error)
|
||||
await tractor.to_actor.run(name_error, an=an)
|
||||
else:
|
||||
depth -= 1
|
||||
await n.run_in_actor(
|
||||
await tractor.to_actor.run(
|
||||
partial(
|
||||
spawn_until,
|
||||
depth=depth,
|
||||
),
|
||||
an=an,
|
||||
name=f'spawn_until_{depth}',
|
||||
)
|
||||
|
||||
|
|
@ -37,28 +41,37 @@ async def main():
|
|||
└─ python -m tractor._child --uid ('name_error', '6c2733b8 ...)
|
||||
|
||||
'''
|
||||
async with tractor.open_nursery(
|
||||
async with (
|
||||
tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
enable_transports=['uds'], # TODO, apss this via osenv?
|
||||
enable_transports=['uds'], # TODO, pass this via osenv?
|
||||
loglevel='devx', # XXX, required for test!
|
||||
) as n:
|
||||
|
||||
# spawn both actors
|
||||
portal = await n.run_in_actor(
|
||||
spawn_until,
|
||||
depth=0,
|
||||
name='spawner0',
|
||||
)
|
||||
portal1 = await n.run_in_actor(
|
||||
) as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
# spawn the deeper tree in the bg..
|
||||
tn.start_soon(
|
||||
partial(
|
||||
tractor.to_actor.run,
|
||||
partial(
|
||||
spawn_until,
|
||||
depth=1,
|
||||
),
|
||||
an=an,
|
||||
name='spawner1',
|
||||
)
|
||||
)
|
||||
|
||||
# nursery cancellation should be triggered due to propagated
|
||||
# error from child.
|
||||
await portal.result()
|
||||
await portal1.result()
|
||||
# ..while blocking on the shallow (faster to fail) tree
|
||||
# whose propagated error triggers nursery cancellation.
|
||||
await tractor.to_actor.run(
|
||||
partial(
|
||||
spawn_until,
|
||||
depth=0,
|
||||
),
|
||||
an=an,
|
||||
name='spawner0',
|
||||
)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
|
|
@ -13,17 +13,24 @@ async def main():
|
|||
simultaneously.
|
||||
|
||||
'''
|
||||
async with tractor.open_nursery(
|
||||
async with (
|
||||
tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
# loglevel='debug' # ?XXX required?
|
||||
) as n:
|
||||
|
||||
# spawn both actors
|
||||
portal = await n.run_in_actor(key_error)
|
||||
) as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
# spawn the actor..
|
||||
portal = await an.start_actor(
|
||||
'key_error',
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
print(
|
||||
f'Child is up @ {portal.chan.aid.reprol()}'
|
||||
)
|
||||
|
||||
# ..then schedule its erroring task in the bg while the
|
||||
# root blocks below.
|
||||
tn.start_soon(portal.run, key_error)
|
||||
|
||||
# XXX: originally a bug caused by this is where root would enter
|
||||
# the debugger and clobber the tty used by the repl even though
|
||||
|
|
|
|||
|
|
@ -74,11 +74,11 @@ async def cancelled_before_pause(
|
|||
async def main():
|
||||
async with tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
) as n:
|
||||
portal: tractor.Portal = await n.run_in_actor(
|
||||
) as an:
|
||||
await tractor.to_actor.run(
|
||||
cancelled_before_pause,
|
||||
an=an,
|
||||
)
|
||||
await portal.wait_for_result()
|
||||
|
||||
# ensure the same works in the root actor!
|
||||
await pm_on_cancelled()
|
||||
|
|
|
|||
|
|
@ -17,12 +17,14 @@ async def main():
|
|||
async with tractor.open_nursery(
|
||||
debug_mode=True,
|
||||
loglevel='cancel',
|
||||
) as n:
|
||||
) as an:
|
||||
|
||||
portal = await n.run_in_actor(
|
||||
# parks awaiting a result which only arrives once the
|
||||
# user quits (`BdbQuit`s) the child's REPL loop.
|
||||
await tractor.to_actor.run(
|
||||
breakpoint_forever,
|
||||
an=an,
|
||||
)
|
||||
await portal.wait_for_result()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
|
|
@ -12,16 +12,12 @@ async def main():
|
|||
) as an:
|
||||
|
||||
# TODO: ideally the REPL arrives at this frame in the parent,
|
||||
# ABOVE the @api_frame of `Portal.run_in_actor()` (which
|
||||
# should eventually not even be a portal method ... XD)
|
||||
# ABOVE the @api_frame of `to_actor.run()` ..
|
||||
# await tractor.pause()
|
||||
p: tractor.Portal = await an.run_in_actor(name_error)
|
||||
|
||||
# with this style, should raise on this line
|
||||
await p.wait_for_result()
|
||||
|
||||
# with this alt style should raise at `open_nusery()`
|
||||
# return await p.wait_for_result()
|
||||
# the one-shot blocks on the subactor's result so the
|
||||
# boxed `NameError` raises right here.
|
||||
await tractor.to_actor.run(name_error, an=an)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ async def main() -> None:
|
|||
|
||||
# TODO: 3 sub-actor usage cases:
|
||||
# -[x] via a `.open_context()`
|
||||
# -[ ] via a `.run_in_actor()` call
|
||||
# -[ ] via a `to_actor.run()` call
|
||||
# -[ ] via a `.run()`
|
||||
# -[ ] via a `.to_thread.run_sync()` in subactor
|
||||
async with p.open_context(
|
||||
|
|
|
|||
|
|
@ -0,0 +1,83 @@
|
|||
'''
|
||||
`tractor.to_actor.run()`: concurrent one-shot prime checks
|
||||
invocation, the SC-parallelism sibling of
|
||||
`trio.to_thread.run_sync()` (and `anyio.to_process`).
|
||||
|
||||
Each call spawns a subactor, schedules the async fn as
|
||||
its lone remote task, waits on the result and reaps the
|
||||
subactor. Concurrency composes the plain `trio` way:
|
||||
schedule multiple one-shot calls in a local task nursery
|
||||
against a shared actor-nursery; any remote error raises
|
||||
directly in the task which scheduled it.
|
||||
|
||||
'''
|
||||
import math
|
||||
|
||||
import tractor
|
||||
import trio
|
||||
|
||||
|
||||
async def is_prime(
|
||||
n: int,
|
||||
) -> bool:
|
||||
if n < 2:
|
||||
return False
|
||||
if n == 2:
|
||||
return True
|
||||
if n % 2 == 0:
|
||||
return False
|
||||
|
||||
sqrt_n = int(math.floor(math.sqrt(n)))
|
||||
for i in range(3, sqrt_n + 1, 2):
|
||||
if n % i == 0:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
async def main() -> None:
|
||||
|
||||
# fully implicit one-shot: boots the actor-runtime,
|
||||
# spawns a subactor, runs the task, reaps the
|
||||
# subactor, tears the runtime back down.
|
||||
assert await tractor.to_actor.run(
|
||||
is_prime,
|
||||
2,
|
||||
)
|
||||
|
||||
# the "worker-pool-ish" pattern from the original
|
||||
# `concurrent.futures` example: one subactor per
|
||||
# input, all concurrent, results and errors
|
||||
# collected by caller-side tasks.
|
||||
results: dict[int, bool] = {}
|
||||
|
||||
async def check(
|
||||
an: tractor.ActorNursery,
|
||||
n: int,
|
||||
i: int,
|
||||
) -> None:
|
||||
results[n] = await tractor.to_actor.run(
|
||||
is_prime,
|
||||
n,
|
||||
an=an,
|
||||
name=f'prime_checker_{i}',
|
||||
)
|
||||
|
||||
inputs: list[int] = [
|
||||
7,
|
||||
8,
|
||||
3691,
|
||||
3693,
|
||||
]
|
||||
async with (
|
||||
tractor.open_nursery() as an,
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
for i, n in enumerate(inputs):
|
||||
tn.start_soon(check, an, n, i)
|
||||
|
||||
for n, prime in sorted(results.items()):
|
||||
print(f'{n} is prime: {prime}')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
trio.run(main)
|
||||
|
|
@ -20,22 +20,20 @@ async def burn_cpu():
|
|||
for _ in range(50000):
|
||||
await trio.sleep(1/50000/50)
|
||||
|
||||
return os.getpid()
|
||||
return pid
|
||||
|
||||
|
||||
async def main():
|
||||
|
||||
async with tractor.open_nursery() as n:
|
||||
|
||||
portal = await n.run_in_actor(burn_cpu)
|
||||
async with trio.open_nursery() as tn:
|
||||
|
||||
# burn rubber in the parent too
|
||||
await burn_cpu()
|
||||
tn.start_soon(burn_cpu)
|
||||
|
||||
# wait on result from target function
|
||||
pid = await portal.wait_for_result()
|
||||
# run the same func as the lone task in a subactor,
|
||||
# block on and collect its PID as the caller-side result
|
||||
pid = await tractor.to_actor.run(burn_cpu)
|
||||
|
||||
# end of nursery block
|
||||
print(f"Collected subproc {pid}")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -23,18 +23,10 @@ async def endpoint(
|
|||
await trio.sleep_forever()
|
||||
|
||||
|
||||
async def spawn_and_open_ep(
|
||||
an: tractor.ActorNursery,
|
||||
async def open_ep(
|
||||
ptl: tractor.Portal,
|
||||
i: int,
|
||||
) -> None:
|
||||
'''
|
||||
Spawn a subactor, start a remote `endpoint()`-task in it.
|
||||
|
||||
'''
|
||||
ptl: tractor.Portal = await an.start_actor(
|
||||
name=f'worker_{i}',
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
ctx: tractor.Context
|
||||
async with ptl.open_context(endpoint) as (
|
||||
ctx,
|
||||
|
|
@ -47,7 +39,33 @@ async def spawn_and_open_ep(
|
|||
await ctx.wait_for_result()
|
||||
|
||||
|
||||
async def main():
|
||||
async def spawn_and_open_ep(
|
||||
an: tractor.ActorNursery,
|
||||
i: int,
|
||||
maybe_ptl: tractor.Portal|None = None,
|
||||
) -> None:
|
||||
'''
|
||||
Spawn a subactor, start a remote `endpoint()`-task in it.
|
||||
|
||||
'''
|
||||
if maybe_ptl is None:
|
||||
maybe_ptl: tractor.Portal = await an.start_actor(
|
||||
name=f'worker_{i}',
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
await open_ep(
|
||||
ptl=maybe_ptl,
|
||||
i=i,
|
||||
)
|
||||
|
||||
|
||||
async def main(
|
||||
# spawn subs concurrently (in bg `trio.Task`s) so each
|
||||
# actor's cold `import tractor` (~0.4s, see #470) overlaps
|
||||
# instead of stacking; once forkserver (#463) lands, spawn
|
||||
# is cheap enough to just loop sequentially.
|
||||
spawn_subs_in_bg_tasks: bool = True,
|
||||
):
|
||||
'''
|
||||
Spawn a subactor-per-CPU then self-destruct the cluster.
|
||||
|
||||
|
|
@ -60,17 +78,21 @@ async def main():
|
|||
# https://github.com/goodboy/tractor/pull/463
|
||||
# start_method='main_thread_forkserver',
|
||||
) as an,
|
||||
# spawn subs concurrently (in bg `trio.Task`s) so each
|
||||
# actor's cold `import tractor` (~0.4s, see #470) overlaps
|
||||
# instead of stacking; once forkserver (#463) lands, spawn
|
||||
# is cheap enough to just loop sequentially.
|
||||
trio.open_nursery() as tn,
|
||||
):
|
||||
for i in range(cpu_count()):
|
||||
|
||||
maybe_ptl: tractor.Portal|None = None
|
||||
if not spawn_subs_in_bg_tasks:
|
||||
maybe_ptl: tractor.Portal = await an.start_actor(
|
||||
name=f'worker_{i}',
|
||||
enable_modules=[__name__],
|
||||
)
|
||||
tn.start_soon(
|
||||
spawn_and_open_ep,
|
||||
an,
|
||||
i,
|
||||
maybe_ptl,
|
||||
)
|
||||
destruct_in: int = 2
|
||||
print(
|
||||
|
|
|
|||
|
|
@ -7,19 +7,20 @@ async def assert_err():
|
|||
|
||||
|
||||
async def main():
|
||||
async with tractor.open_nursery() as n:
|
||||
async with tractor.open_nursery() as an:
|
||||
real_actors = []
|
||||
for i in range(3):
|
||||
real_actors.append(await n.start_actor(
|
||||
real_actors.append(await an.start_actor(
|
||||
f'actor_{i}',
|
||||
enable_modules=[__name__],
|
||||
))
|
||||
|
||||
# start one actor that will fail immediately
|
||||
await n.run_in_actor(assert_err)
|
||||
# run one one-shot task actor that will fail immediately;
|
||||
# its error raises right here in the caller's task..
|
||||
await tractor.to_actor.run(assert_err, an=an)
|
||||
|
||||
# should error here with a ``RemoteActorError`` containing
|
||||
# an ``AssertionError`` and all the other actors have been cancelled
|
||||
# ..as a ``RemoteActorError`` containing an ``AssertionError``
|
||||
# and all the other actors have been cancelled
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue