iCode
iCode

Reputation: 4338

Open Source Equivalent of AWS Flow Framework

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)?

Upvotes: 8

Views: 6289

Answers (3)

Maxim Fateev
Maxim Fateev

Reputation: 6890

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.

Upvotes: 11

Shawn
Shawn

Reputation: 353

(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.

Upvotes: 0

Eric Abouaf
Eric Abouaf

Reputation: 203

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 :

Upvotes: 2

Related Questions