Thespian
Thespian copied to clipboard
Python Actor concurrency library
Hi! I've been playing with `multiProcTCPBase` the entire evening for a project but I have the weirdest issue with it. It seems to be tracking state accross runs somehow. I...
opensearch-benchmark 0.0.2 thespian 3.10.1 While running opensearch-benchmark (based on thespian) I'm sporadically getting following errors in logs: > 2022-03-27 00:35:36.463023 p374 ERR xmit UNcaught exception dictionary changed size during iteration;...
Hi Kevin, Thanks for this beautiful library.:+1: You've brought the elegance of the actor model to the Python workhorse. I've been trying to get it going under windows 10 Pro....
I got a problem with reaching certain actors after a while. The Actor-system sends the message, but the receive function is never called. No dead letter either (Dead letter handling...
Environment: Linux ikeh2 5.13.0-27-generic #29~20.04.1-Ubuntu SMP Fri Jan 14 00:32:30 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux Python 3.8.10 thespian==3.10.6 Calling `self.createActor(..., globalName='some_named_actor')` from within an `ActorTypeDispatcher` correctly returns the address...
Hi, I'm looking for infrastructure for my project and I ran into this project that looks very interesting for my needs. but from the documentation I didn't see a way...
Hello, thanks for this lib, it's great, right now I've a small system with some actors, everything works as expected when I use simpleSystemBase but now I want to run...
I did some research (docs + google + lib reverse engineering) but I can’t find an answer for my question: is there any way for the child actor to get...
I using Thespian to develop an application to consume low latency data via sockets. I had created initially two actors: one consumer (socket client connection) and the handler. Testing, I...
`select.select()` is significantly slower on linux than `select.epoll()`, so, especially in the case of network services, there's a huge performance gain in using `epoll`. I see a few ways forward:...