vote up 9 vote down star
5

What are the challenges in porting your existing applications to Azure?

Here are few points I'm already aware about.

1) No Support for Session Affinity (Azure is Stateless) - I'm aware that Azure load balancing doesn't support Session Affinity - hence if the existing web application should be changed if it has session affinity.

2) Interfacing with COM - Presently I think there is no support for deploying COM components to the cloud to interface with them - if my current applications need to access some legacy components.

3) Interfacing with other systems from the cloud using non-http protocols

Other than the above mentioned points, what are other significant limitations/considerations that you are aware off?

Also, how these pain points are addressed in the latest release?

flag

57% accept rate

5 Answers

vote up 3 vote down check

our biggest challenge is the stateless nature of the cloud. though we've tried really really hard, some bits of state have crept through to the core and this is what is being addressed.

the next challenge is the support of stale data and caching as data can be offline for weeks at a time. this is hard regardless.

link|flag
vote up 1 vote down

One important challenge is the learning curve, lack of experienced developers, the time it takes to become productive .

This happens with all technologies, but with the cloud there is a fundamental change in how somethings are done.

link|flag
vote up 1 vote down

If your application needs a database, I'm not sure that Windows Azure has a relational database (right now)

Also, there are other cloud computing providers that can offer you more options in configuring your virtual machine for example, it really depends on what you actually need and want.

link|flag
vote up 0 vote down

My biggest problem is/was just signing up and creating a project. And that's how far it got over the last month.

Either I am doing something very wrong, or that site is broken most of the time.

link|flag
The site is an absolute mess. I had to hassle customer support for invitation codes and thats not even the half of it! – Goober Oct 8 at 15:32
vote up 0 vote down

Be prepared for a lengthy deployment process. At this time (pre-PDC 2009), uploading a deployment package and spinning up host services sometimes has taken me more than 30 minutes (depends on time of day, size of package, # of roles, etc).

One side effect of this is that making configuration changes in web.config files is expensive because it requires the entire app package to be re-packaged and re-deployed. Utilize the Azure configuration files instead for config settings - as they do not require a host suspend/restart.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.