Power BI Cards Flashcards
What is EC2?
EC2 is basically elastic compute cloud. It is just like a raw server on which you can install any operating system and you can use it for anything like hosting a website. It is just like Virtual machine.
What is SnowBall?
Snowball is a way of transferring your data from and to the AWS infrastructure. Snowball device is connected to the data center. It is used to back up the data.
This device is shipped back to AWS and then loaded to the AWS infrastructure. You use it when you have large amount of data.
What is IAM?
IAM is an Identification and Authentication Management tool. It is used to grant access to the users for example to create/delete instances
What is Lambda?
AWS Lambda is an advanced version of EC2. Difference between EC2 and Lambda is that Lambda cannot be used to host your application. Lambda
can only be used to execute background tasks. AWS Lambda gets triggered upon events that happens on S3 such as file compressions.
What is Elastic Beanstalk?
Elastic Beanstalk which is an advanced version of EC2. Elastic Beanstalk can be used to host application. With Elastic Beanstalk, you select the environment you want, and AWS will install all the configuration files required and will give you the environment on which you just have to upload your code and your application.
What isElastic load balancer?
Elastic load balancer is basically used to distribute your work load among a number of instances. It is a protocol to distribute the traffic equally among instances.
What is AutoScaling?
AutoScaling is a service which is used to scale up and down automatically, without manual intervention. You can set up a matrix on the CPU usage to add/remove servers. AutoScaling and Elastic load balancer work togather.
What is S3?
S3 is a object based file system. Root folder is called a bucket. Bucket can have many folders.
Object is stored and retrieved by file path.
What is CloudFront?
CloudFront is content delivery network. It is basically a system which cages a website to make the response times faster.
What is Elastic Block Storage?
Elastic Block storage is basically like a hard drive to EC2. EC2 is backed by EBS. EC2 can have multiple EBS volumes but EBS volume cannot have more than
one EC2 attached to it.
What is Amazon Glacier?
Amazon Glacier is a back up system which backs up the data from S3 or EC2 instances. They use magnetic tapes which are cheap so the data storage is very economical.
What is Storage Gateway?
Storage Gateway is a service which is used between your datacenter and your cloud. Storage Gateway will sit between your Applications and Database servers.
It will keep on taking snapshots of your database and will keep on storing on S3. Let’s suppose you have 3 or 4 database servers and you have Storage Gateway installed, one of the servers fails, so Storage Gateway will use the snapshots from other servers and rebuild the failed server.
What is RDS?
RDS is a database management service. It is not a database. It manages Relational Databases such as MySQL, Oracle, MariaDB, PostgreSQL, Microsoft
SQL Server, or Aurora. It updates the DB engine automatically and installs security patches automatically.
What is Aurora?
Amazon Aurora is a database, which has been developed by Amazon. It is about Relational database. It is based on MySQL. Amazon Aurora is 5 times
faster than MySQL.
What is DynamoDB?
DynamoDB is a database management service for non-relational databases such as NoSQL databases. It gets updated automatically. It scales itself automatically. It is used to store unstructured data such as Facebook posts.