kirill_l
kirill_l

Reputation: 645

Long running (background) workers in CloudFoundry

Recently I went through VMWare webinar dedicated to their open-source PaaS called CloudFoundry. Very impressive but I couldn't figure out one thing. Their "competitors" like Heroku and Azure support the concept of background async workers in addition to sync web services/apps. Is there an equivalent in CloudFoundry?

Upvotes: 5

Views: 1179

Answers (2)

Glenn Oppegard
Glenn Oppegard

Reputation: 1149

Cloud Foundry recently (May 2012) added support for background workers and "standalone" apps. From their blog:

Upvotes: 2

derek
derek

Reputation: 241

Currently there is not official support for workers. However, you can run a worker class application, but you do need to bind the http port that CF assigns.

CF will adopt support for non-web apps sometime in the future.

Upvotes: 3

Related Questions