Open Source Equivalent of AWS Flow Framework [closed]
Asked Answered
B

3

8

There many workflow system out there but I was wondering which one of the open source workflow management system is the closest to the AWS Flow Framework (with Amazon SWF like capability build in)?

Blackguardly answered 6/3, 2013 at 0:4 Comment(2)
The closest thing I know of is Activiti. BPM is really the closest equivalent.Hypnotize
Cannot give it is as an answer anymore. Cadence (github.com/uber/cadence) is an open source project built at Uber and closely resembles SWF API. It is at this point is already exceeding SWF in terms of features.Bermejo
B
11

AWS Flow Framework itself is open source under Apache 2.0 license. Its source code is available on github: https://github.com/aws/aws-swf-flow-library.

Update: If you need an open source solution that includes the service and is much more features rich check out Temporal.

Bermejo answered 6/3, 2013 at 2:9 Comment(1)
There is now an official version of AWS Flow Framework for Ruby. aws-flow on githubChromic
T
2

Amazon SWF is quite different from the other existing workflow systems :

  • It is not trying to implement BPMN (we could say it is lower level than most workflow systems)
  • It is focused on distributing tasks to heterogeneous systems (so you can run the activities on any platform, in any language.)

Besides the official Java Flow Framework, I only know :

Tamasha answered 6/3, 2013 at 13:30 Comment(1)
BPMN? Do you mean BPMS (business process management services)? The closest BPMN I could google was business process modelling notation.Parley
B
0

(Shameless post?) I started writing my own library (SimpleWorkflowFramework.NET) for use in C# and its available at https://github.com/sdebnath/SimpleWorkflowFramework.NET. It definitely could use some help if anyone is interested.

Bruin answered 4/5, 2013 at 16:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.