System Design And Availability Flashcards
What is System Design?
The process of defining the architecture, components, modules, interfaces, and data flow of a system to satisfy specified requirements.
Crucial aspect of software engineering focusing on scalable, reliable, and maintainable systems.
List the key aspects of System Design.
- Scalability
- Reliability
- Maintainability
- Performance
- Security
Each aspect addresses specific requirements for building effective systems.
What is Latency?
The time taken to process a single request or operation.
Measured in units of time such as milliseconds or microseconds.
What is Throughput?
The number of requests or operations a system can handle in a given time period.
Measured in units like requests per second (RPS).
Fill in the blank: The goal of minimizing _______ is to achieve faster response times.
Latency
Fill in the blank: The goal of maximizing _______ is to handle more load.
Throughput
What does the CAP theorem state?
In any distributed system, it is impossible to simultaneously achieve Consistency, Availability, and Partition Tolerance.
Important for understanding trade-offs in distributed systems.
What does Consistency (C) mean in the CAP theorem?
Every read receives the most recent write or an error.
What does Availability (A) mean in the CAP theorem?
Every request receives a (non-error) response, even if some nodes are down.
What does Partition Tolerance (P) mean in the CAP theorem?
The system continues to function despite network partitions.
What are CP Systems?
Systems that prioritize consistency over availability during network partitions.
Example: Databases like HBase.
What are AP Systems?
Systems that prioritize availability over consistency during network partitions.
Example: DNS, Cassandra.
What are the three consistency patterns?
- Strong Consistency
- Eventual Consistency
- Weak Consistency
Each pattern addresses different needs for data accuracy and performance.
What is Strong Consistency?
Guarantees that all reads return the most recent write, achieved by synchronous replication.
What is Eventual Consistency?
Guarantees that all nodes will eventually converge to the same state, given no new updates.
What is Weak Consistency?
No guarantee that reads will return the most recent write; useful for performance-focused applications.
What is Failover?
Automatically transferring operations to a standby system when the primary system fails.
List the types of Failover.
- Active-Passive
- Active-Active
Each type describes different strategies for maintaining system operations.
What is Replication?
Creating multiple copies of data across different nodes to ensure availability.
List the types of Replication.
- Master-Slave
- Master-Master
Each type describes different strategies for data redundancy.
What does 99.9% Availability mean?
The system is operational 99.9% of the time and allowed to be down 0.1% of the time.
What does 99.99% Availability mean?
The system is operational 99.99% of the time, allowed to be down only 0.01% of the time.
Fill in the blank: The downtime of a system with 99.9% availability equals about _______ per year.
8 hours and 45 minutes
Fill in the blank: The downtime of a system with 99.99% availability equals about _______ per year.
52 minutes and 35 seconds
What is the impact of parallel systems on availability?
Overall availability improves significantly because the system works as long as at least one component is operational.
What is the impact of sequential systems on availability?
Overall availability decreases because a failure in any single component results in system downtime.
What is the formula for parallel availability?
A = 1 - (1 - A1)(1 - A2)…
A represents the overall availability.
What is the formula for sequential availability?
A = A1 * A2 * …
A represents the overall availability.