rebulanyum
rebulanyum

Reputation: 527

how to use Amazon SWF internal?

I would like to try Amazon SWF development on my pc. But, It seems to me that I must register to Amazon AWS cloud in order to use Amazon Simple Workflow. What I need is to run all Amazon stuff in a single machine without the need of Amazon hosted services (or authentication).

The documentation for Amazon Simple Workflow Service is here.

Can you please help?

Upvotes: 0

Views: 555

Answers (2)

Rohit
Rohit

Reputation: 927

You could run the workflow locally using the aws test framework. In this case everything (activites and decision workers) will run locally on the instance that you will be running the test framework, only that no swf api will be invoked. So you can test the orchestration logic of the decision worker without needing a aws account.

Upvotes: 1

Michal Klouda
Michal Klouda

Reputation: 14521

Using cloud services offline doesn't make much sense. You will definitely need to sign up for an AWS account to be able to play with SWF. There is a free tier which should be sufficient for your development.

Upvotes: 0

Related Questions