amazon-swf

Open Source Equivalent of AWS Flow Framework [closed]

你离开我真会死。 提交于 2019-12-04 07:20:23
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . Closed 6 years ago . 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)? 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: At

Iterate over the list of activities based on the input provided using AWS SWF

泪湿孤枕 提交于 2019-12-04 06:40:59
问题 I have two servers(EC2 instances). In one server(server 1) i have 5 Batch and on another(server 2) i have 6 Batch. I wrapped each batch into activities and the work flow implementation class is given below. I want to iterate over the activities(entire activities, including server 1 and 2) based on the give execution date. For example, if the date is lesser than the current date then, execute all the activities of both server 1 and 2 starting from the given date up to the current date. If the

How to convert Linux cron jobs to “the Amazon way”?

大城市里の小女人 提交于 2019-12-02 13:49:26
For better or worse, we have migrated our whole LAMP web application from dedicated machines to the cloud (Amazon EC2 machines). It's going great so far but the way we do crons is sub-optimal. I have a Amazon-specific question about how to best manage cron jobs in the cloud using "the Amazon way". The problem : We have multiple webservers, and need to run crons for batch jobs such as creating RSS feeds, triggering emails, many different things actually. BUT the cron jobs need to only run on one machine because they often write to the database so would duplicate the results if run on multiple

Iterate over the list of activities based on the input provided using AWS SWF

家住魔仙堡 提交于 2019-12-02 11:51:39
I have two servers(EC2 instances). In one server(server 1) i have 5 Batch and on another(server 2) i have 6 Batch. I wrapped each batch into activities and the work flow implementation class is given below. I want to iterate over the activities(entire activities, including server 1 and 2) based on the give execution date. For example, if the date is lesser than the current date then, execute all the activities of both server 1 and 2 starting from the given date up to the current date. If the execution date is equal to current date then, execute all the activities of both server 1 and 2 for

AWS - want to upload multiple files to S3 and only when all are uploaded trigger a lambda function

こ雲淡風輕ζ 提交于 2019-11-30 18:15:45
问题 I am seeking advice on what's the best way to design this - Use Case I want to put multiple files into S3. Once all files are successfully saved, I want to trigger a lambda function to do some other work. Naive Approach The way I am approaching this is by saving a record in Dynamo that contains a unique identifier and the total number of records I will be uploading along with the keys that should exist in S3. A basic implementation would be to take my existing lambda function which is invoked

How to consume Amazon SWF [closed]

自古美人都是妖i 提交于 2019-11-28 15:34:55
问题 Amazon SWF was launched today. How best to consume it with Java / PHP / etc. ? The current SDK support doesn't appear to include it. I know it's new, but does anyone have any good resources on how to consume it, or what changes I'd need to implement in the any of the following SDK's to get going right away? AWS SDK for Java AWS SDK for PHP AWS SDK for Python AWS SDK for Ruby AWS SDK for .NET Personally, my interest is on the Java & PHP SDK's... Updated releases are visible at: http://aws