simpleflow
simpleflow copied to clipboard
Python library for dataflow programming.
This has been discussed a little in #70 , but I open a separate issue for this. We'd like to be able to pass an object instance to Workflow.submit() directly...
Some tests can be simplified, and other parts of the code that were not really well tested could now be tested a bit more easily. SWF support for moto is...
An OOM for instance won't be caught by `try ... except`. The wrapper then returns a bogus EOFError. Testcase without OOM :innocent:: ``` python # zz.py import os from simpleflow...
While adding the decider and activity worker processes, I was thinking that anything that could help to bootstrap the execution of a workflow would be a great improvement. It led...
I created all of my activity types, workflow types, and domains manually in the AWS console before I began using simpleflow, so I have no experience trying to register these...
I thought the identity argument to swf.actors.worker.ActivityWorker's initializer and/or its poll method was optional, particularly since it has a default value of None. However, leaving it out causes an AttributeError....
## Description This feature allows to resume a workflow where it _failed_, _timed out_ or was _terminated_ or _cancelled_. That what we mean by _stopped_. Hence the tasks that were...
The local execution does not serialize and deserialize the objects it passes to the task handlers. However users expect the local execution to mimic distributed execution and use it to...
This module should provide facilities to read the history of a workflow execution and return: - The time spent in each activity or child workflow. - The activites that failed....