active questions tagged ec2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:00:59Z http://stackoverflow.com/feeds/tag/ec2 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809064/many-users-many-cpus-no-delays-good-for-cloud 1 Many users, many cpus, no delays. Good for cloud? Eric 2009-11-27T14:23:22Z 2009-11-27T14:39:13Z <p>I wish to set up a CPU-intensive time-important query service for users on the internet. A usage scenario is described below. Is cloud computing the right way to go for such an implementation? If so, what cloud vendor(s) cater to this type of application?</p> <p>I ask specifically, in terms of: 1) pricing 2) latency resulting from: - slow CPUs, instance creations, JIT compiles, etc.. - internal management and communication of processes inside the cloud (e.g. a queuing process and a calculation process) - communication between cloud and end user 3) ease of deployment</p> <p>A usage scenario I am expecting is: - A typical user sends a query (XML of size around 1K) once every 30 seconds on average. - Each query requires a numerical computation of average time 0.2 sec and max time 1 sec on a 1 GHz Pentium. The computation requires no data other than the query itself and is performed by the same piece of code each time. - The delay a user experiences between sending a query and receiving a response should be on average no more than 2 seconds and in general no more than 5 seconds. - A background save to a DB of the response should occur (not time critical) - There can be up to 30000 simultaneous users - i.e., on average 1000 queries a second, each requiring an average 0.2 sec calculation, so that would necessitate around 200 CPUs.</p> <p>Currently I'm look at GAE Java (for quicker deployment and less IT hassle) and EC2 (Speed and price optimization) as options. Where can I learn more about the right way to set ups such a system? past threads, different blogs, books, etc.. BTW, if my terminology is wrong or confusing, please let me know.</p> <p>I'd greatly appreciate any help.</p> http://stackoverflow.com/questions/1764988/amazon-s3-over-vpn 0 Amazon S3 over VPN Mohan Babu Vijaya Gopal 2009-11-19T17:14:47Z 2009-11-19T17:28:11Z <p>Is it possible to establish VPN connectivity to AMAZON S3 directly without utilizing Elastic cloud EC2.</p> http://stackoverflow.com/questions/1745632/ebs-with-raid0-striping-and-restoring-snapshots 0 EBS with RAID0 (striping) and restoring snapshots [closed] grourk 2009-11-16T23:46:19Z 2009-11-16T23:46:19Z <p>We have a MySQL database on EC2 and are looking at the disk IO performance there. Currently we have a single EBS volume with XFS and take snapshots for backup. It seems that a lot of people have seen significant performance gains by striping across multiple EBS volumes with software RAID. If this is done, how does one take snapshots and ensure the consistency of the file system? It seems to me that restoring the file system from multiple snapshots could be tricky.</p> http://stackoverflow.com/questions/1726990/ssl-slowness-in-ec2 2 SSL slowness in EC2 grourk 2009-11-13T03:37:45Z 2009-11-13T03:37:45Z <p>We've deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web servers. Each web server also runs nginx with a cluster of mongrels. The nginx here takes care of static content and load balancing the mongrels.</p> <p>Anyway, our traffic by-and-large is HTTPS. We have the 2 proxies taking care of SSL. I've noticed that our network throughput on those instances caps out at only 60 Mbps or so. To contrast, in testing I am able consistently to get 700+ Mbps on a small instance via regular HTTP. In fact, this is the same as what I can get on a large instance. Similar to what the Right Scale guys got in <a href="http://blog.rightscale.com/2007/10/28/network-performance-within-amazon-ec2-and-to-amazon-s3/" rel="nofollow">their testing</a>. (Amazon says a small gets "moderate" network I/O, while a large gets "high". If I had to speculate, I think this is just their way of saying that there are more small instances per physical box sharing one network card. I'm not sure if it means that a large gets a dedicated network interface, but I would doubt it.)</p> <p>In testing, I was able to get a large instance to get about 250 Mbps SSL. This says to me that the CPU or some other resource is the bottleneck. However, our monitoring graphs don't show the CPU on our proxies being particularly busy.</p> <p>My questions are:</p> <ol> <li>Is my instinct about SSL being slower due to CPU correct and our monitoring graphs are wrong? Or could some other resource be the limiting factor?</li> <li>Should we just take the extra cost and put the proxies on high-CPU instances? Or would it be better to do just add more small instances?</li> <li>Should we offload the SSL termination to the web servers? This introduces one more problem, though: how do we get the client IP address in our application? Right now our proxy sets it in the X-FORWARDED-FOR header, but obviously this wouldn't be possible if it's not decrypting SSL.</li> </ol> <p>I'd love to hear about any similar setups. We tinkered a bit with their Elastic Load Balancer, but I think that basically puts us in the same situation as #3 above. Has anyone else made the switch to ELB and found it to be worth it?</p> http://stackoverflow.com/questions/1657780/migrating-data-from-ec2-to-s3 0 MIgrating data from EC2 to S3? MIguel 2009-11-01T17:46:21Z 2009-11-01T22:17:14Z <p>I am running a Rails app using Paperclip to take care of file attachments and image resizing, etc. The app is currently hosted on EngineYard cloud, and all attachments are stored in their EBS. Thinking about using S3 to handle all Paperclip attachments.</p> <p>Does anyone know of a good and safe way for this migration? many thanks! </p> http://stackoverflow.com/questions/1648849/does-ec2-have-good-latency 0 Does ec2 have good latency? chris 2009-10-30T09:40:00Z 2009-10-30T10:09:36Z <p>For keeping a website with significant traffic, how good is the latency on Amazon EC2?</p> <p>I have heard that it is slow for websites and web apps. Is this true? </p>