'structured concurrent `trio`-"actors"' https://github.com/goodboy/tractor
Go to file
Tyler Goodlet 8477d21499 Restructure actor runtime nursery scoping
In an effort acquire more deterministic actor cancellation,
this adds a clearer and more resilient (whilst possibly a bit
slower) internal nursery structure with explicit semantics for
clarifying the task-scope shutdown sequence.

Namely, on cancellation, the explicit steps are now:
- cancel all currently running rpc tasks and wait
  for them to complete
- cancel the channel server and wait for it to complete
- cancel the msg loop for the channel with the immediate parent
- de-register with arbiter if possible
- wait on remaining connections to release
- exit process

To accomplish this add a new nursery called the "service nursery" which
spawns all rpc tasks **instead of using** the "root nursery". The root
is now used solely for async launching the msg loop for the primary
channel with the parent such that it is (nearly) the last thing torn
down on cancellation.

In the future it should also be possible to have `self.cancel()` return
a result to the parent once the runtime is sure that the rest of the
shutdown is atomic; this would allow for a true unbounded shield in
`Portal.cancel_actor()`. This will likely require that the error
handling blocks in `Actor._async_main()` are moved "inside" the root
nursery block such that the msg loop with the parent truly is the last
thing to terminate.
2020-08-08 14:55:41 -04:00
docs Set correct master doc name 2020-02-10 12:26:19 -05:00
examples Move two more examples out of docs for testing 2020-02-10 12:14:16 -05:00
tests Cancel root nursery to trigger failure 2020-08-07 11:34:17 -04:00
tractor Restructure actor runtime nursery scoping 2020-08-08 14:55:41 -04:00
.gitignore Initial commit 2018-07-05 16:01:15 -04:00
.travis.yml Finally tame the super flaky tests 2020-07-26 22:53:40 -04:00
LICENSE Initial commit 2018-07-05 16:01:15 -04:00
README.rst Drop sphinx toctree from readme 2020-02-10 12:14:16 -05:00
mypy.ini Add mypy.ini lel 2020-01-21 15:28:12 -05:00
requirements-test.txt More mypy apeasement on 3.7 2020-01-15 21:06:13 -05:00
setup.py Actually dropping the cloudpickle dependency from setup.py 2020-07-27 21:10:04 -03:00

README.rst

tractor

A structured concurrent, async-native "actor model" built on trio and multiprocessing.

travis Documentation Status

tractor is an attempt to bring trionic structured concurrency to distributed multi-core Python; it aims to be the Python multi-processing framework you always wanted.

tractor lets you spawn trio "actors": processes which each run a trio scheduled task tree (also known as an async sandwich). Actors communicate by exchanging asynchronous messages and avoid sharing any state. This model allows for highly distributed software architecture which works just as well on multiple cores as it does over many hosts.

The first step to grok tractor is to get the basics of trio down. A great place to start is the trio docs and this blog post.

Install

No PyPi release yet!

pip install git+git://github.com/goodboy/tractor.git

Feel like saying hi?

This project is very much coupled to the ongoing development of trio (i.e. tractor gets all its ideas from that brilliant community). If you want to help, have suggestions or just want to say hi, please feel free to ping me on the trio gitter channel!