I have been playing around with Pyro, particularly Pyro5 and wanted to simulate some fault tolerance algorithms by creating a distributed system consisting of remote processes and RPC's using Pyro5 in Python.
Does anybody know how to delete / crash any particular pyro remote object which communicates with other pyro remote objects through RPCs? I have been looking up at the Pyro5 documentation and it just mentions pyro5-nsc remove [object_name]
, which just removes the object from the nameserver, but does not crash it.
Does anybody know how to solve this?