3

I have developed a software concept where I need to have approximately 1500 servers respond in parallel, in order to have a user interface that is responsive enough. I tried it out on a $1/month webhotel, and it could do my calculations and return the result via internet to me in 15ms, if preloaded by a previous request. That webhotel would actually solve the problem, if I could get 1500 accounts distributed on 1500 different servers, but they don't have that many servers.

Where can I get an online service, where I can run up to 30 minutes of CPU-time native code (or .net, java or similar), distributed on 1500 servers, in a responsive way? It would be nice if it costs significantly less than $2000.

Lars D
  • 282

3 Answers3

3

An hour of an EC2 small instance costs $0.085; 1500 of those is only $127.50. Sounds like it's exactly what you want.

womble
  • 97,049
1

I've had good experience with the Rackspace Cloud. Each instance is a few cents an hour, and there is an API available.

Rackspace Cloud Servers

Edit: fixed underscores in link

Nic
  • 13,545
  • How do I get 1500 separate computers with rackspacecloud? – Lars D Nov 08 '09 at 21:37
  • @Lars Go to that link; you can either provision the VPSes manually or using their open-source cloud API. Amazon and Rackspace are the two big guys in this space at the moment; IMO Rackspace has the edge for the time being, with better API support, plus I like their portal better. – phoebus Nov 08 '09 at 21:57
1

EC2 should accommodate but you will need to speak to Amazon in advance.

Latency between instances isn't guaranteed and will vary. This article provides some useful information about what to expect.

Dan Carley
  • 25,797