Cloud storage systems + FAAS Flashcards

1
Q

What are the 4 amazon storage types?

A

1.Amazon elastic block storage
2.Amazon EC2 instance storage
3.Amazon elastic file system
4.Amazon simple storage service (S3)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is CAP theorem?

A

It states that in a distributed system, Consistency, availability and partition tolerance cant be achieved together.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is more preferred to focus on in large scale distributed systems with respect to cap theorem?

A

since Partition tolerance is essential, storage solutions either focus on availability (AP) or consistency)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is FAAS?

A

Function as a service (serverless computing) provides event driven computing. Developers run and mange functions which are triggered by events or http requests. developers deploy the code without worrying about managing servers or any other underlying infrastructure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the advantages and disadvantages of FAAS?

A

Advantages:
1.no provisioning of server is needed
2.Automatic scaling
3.cost reduction since we dont pay for idle VMs

Disadvantages:
1.Limited security since the VMs are shared and we dont have control over the network
2.Not suited for heavy computation workloads.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly