Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Cloud Microsoft Programming

Microsoft Azure vs. Amazon Web Services, For Programmers 64

Nerval's Lobster writes "Tech writer and programmer Jeff Cogswell does a head-to-head comparison of Microsoft Azure and Amazon Web Services from a pure programming perspective, examining the respective sides' vendor lock-in and vendor-specific APIs (among other issues). 'If you're not using any vendor-specific APIs, then it's safe to say the experience you get on either Amazon or Microsoft will be roughly the same,' he writes. 'But that means you're also not developing an app that necessarily takes advantage of all possible cloud capabilities—not just add-ons, but scalability. Your app might need to expand and grow as your user base grows.' He suggests it's ultimately a tie between the two companies. 'From a strict programming perspective, both companies have their own RESTful API, and their own libraries for using the API.'" The problem with both of these services, though, that RMS could have told you about: "The moment you start using either, you're locked in for the most part."
This discussion has been archived. No new comments can be posted.

Microsoft Azure vs. Amazon Web Services, For Programmers

Comments Filter:
  • by Hazel Bergeron ( 2015538 ) on Thursday August 16, 2012 @12:26PM (#41012537) Journal

    If you have to ask the question, you've already lost.

  • by Anonymous Coward on Thursday August 16, 2012 @12:32PM (#41012639)

    As if your ISP or colo wouldn't give you the boot "any time they have a problem with you" either. LOL

  • by medv4380 ( 1604309 ) on Thursday August 16, 2012 @12:48PM (#41012871)
    Really? You're hung-up on that little point? Your domain name could be seized by ICE and who knows what else, and you're concerned that the Amazon caved to pressure to pull Wikileaks? This kind of thing has been going on for a long time before Wikileaks and Amazon. It's apart of the risk of doing business in this world. There is no way around it.
  • by ndykman ( 659315 ) on Thursday August 16, 2012 @01:14PM (#41013243)

    The article seems to bemoan the lack of standards and APIs for relatively new technologies like blob storage, message queuing and the like.

    In short, it's the same situtation everyone deals with when choosing a platform. Take full advantage of the specific platform and lose portablity, or code to a portable subset and tradeoff ease of implementation for platform independence.

    You can minimize your dependency on a third-party API if you use an API of your own to code against. Creating a set of interfaces that provide the blob, queuing and other cloud features for your project not only isolates the cloud-specifc code to one place, but it makes it more testable (using test-doubles, fakes, etc).

    This is a problem, but it is a well understood one with a time tested solution.

  • by 0123456 ( 636235 ) on Thursday August 16, 2012 @01:27PM (#41013393)

    Which means either:

    1. You end up with a lowest-common-denominator API.
    2. You move most of the smarts into the 'abstraction layer', which then decides how to implement them on different 'cloud' providers, and then you're tied to it instead.
    3. You start using APIs wihch are only properly supported on one system so you're doubly screwed (your software only runs on the abstraction layer using features only supported by one 'cloud' provider).

FORTRAN is not a flower but a weed -- it is hardy, occasionally blooms, and grows in every computer. -- A.J. Perlis

Working...