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.
What is ElastiCache?
It is used to cache the results of queries. Let’s suppose user makes the query and it is similar to the other queries, so it will cache the result set. So the next time any other user tries to query the same data, results will be lot faster.
What is RedShift?
RedShift is a data warehouse service. It is petabyte scale data warehouse service. It is an analytic tool which is used to analyze data from RDS or DynamoDB.
What is VPC?
VPC is a virtual private cloud, so it is a virtual network.
It is Virtual Network where in you launch your AWS Resources. All the AWS resources can interact with each other once they are inside the VPC. It provides you security, its makes communication between
the AWS services easy and it also helps you connect your private data center to the AWS infrastructure.
What is Direct Connect?
Direct Connect is a replacement to an internet connection; it is a leased line to the AWS infrastructure, so if you feel that the bandwidth of internet is not enough for your data requirements or networking requirements you can take a leased line to AWS infrastructure in the form of Direct Connect Service.
What is Route 53?
Route 53 is a domain name system. It converts whatever URL you enter to a domain name system to the IP address of the server on which your website is
being posted.
What is Cloudwatch?
Cloudwatch is a cloud monitoring tool. It is used to monitor all your AWS resources.
It is used to set up alerts when the usage exceeds certain threshold established by the user.
What is CloudFormation?
CloudFormation is used to templatize the AWS infrastructure. It is used to launch different environments such as Test Environment, Product Environment and Debit environment.
What is CloudTrail?
CloudTrail is a logging service from AWS. It is used to log your API requests, and API responses. Logs are used for troubshooting issues. It will generate logs
on the file system S3.
What is CLI?
CLI is a command line tool which is replacement to the GUI of AWS.