Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 1.24 KB

Reading-4-16.md

File metadata and controls

25 lines (13 loc) · 1.24 KB

AWS: Cloud Servers

  1. An EC2 instance is a virtual server for Amazon's Elastic Compute Cloud.

  2. EC2 instances are useful for running cloud-native applications and machine learning applications.

  3. EC2 is much more versatile and powerful than Heroku.

  1. ?? You click the link that says EC2. It's pretty straightforward.

  2. Micro and XL denote different amounts of storage/computing power that is reserved for your app.

  3. When a computer runs code, it is split up into a series of instructions at the machine code level; A compute cycle is the computer executing a single one of those basic instructions. In cloud computing, a server allocates compute cycles depending on the needs of the applications it is hosting.

  1. Elastic Beanstalk is an easy-to-use service for deploying and scaling web applications and services

  2. EC2 deals with the server code itself, while elastic beanstalk deals with the management of the server, e.g. load balancing.

  3. It lowers costs, simplifies deployment, and eases maintenance by automatically taking care of many server management tasks for you.