Systems and Layers Flashcards
What is system design?
Computer systems have computation, storage and transmission resources. System design is putting these together into a harmonious whole.
What is the goal of system design?
Maximizing a set of performance metrics given a set of resource constraints.
Time constraints
Deadline for task completion, time to market and mean time between failures.
Response time
Mean time to complete a task
Throughput
Number of tasks completed per unit time
Degree of Parallelism
Response time * throughput
Space Constraints
Limit to available memory and limits to bandwidth.
Computation Constraints
Amount of processing that can be done in unit time.
Money Constraints
What components can be used, what prices users are willing to pay for a service and the number of engineers available to complete a task.
Labour Constraints
Labour is the human efffor required to design and build a system nd constrains what can be done and how fast.
Social Constraints - Standards
Forces designs to conform to sometimes non-sensical requirements. Underspecified standard can lead to faulty and non-interopable implementations.
Social Constraints - Market Requirements
Backwards compatibility and the need to use a particular operating system.
Scaling
A design constraint - centralised elements prevent the design from easily scaling
Bottleneck
The most constrained element in the system.
Balanced system
A system in which all resources are simultaneously bottlenecked.
Multiplexing
Essentially sharing, trades time and space for money as user sees an increased response time and takes up space while waiting but the system costs less.
Statistical Multiplexing
We can use statistical knowledge of how frequently users are active and for how long to minimise cost of link. Temporal - expect a task to be active only part of the time. Spatial - we expect only a fraction of tasks to be simultaneously active.
Pipelining
Break tasks down into serially dependent subtasks so that each subtask only depends on previous one in execution chain. This allows stages of the process to be executed simultaneously.
Batching
Groups tasks together to amortize overhead. This only works when overhead is nonlinear. Trading off reduced overhead for longer worst case response time and increased throughput.
Hierachy
Recursive decomposition of a system into smaller pieces that depend only on parent for proper execution.
Binding
Translation from an abstraction to an instance.
Indirection
Automatic binding where translation table is stored in a well known place.
Virtualization
Combination of indirection and multiplexing by referring to a virtual resource that hets matched to an instance at run time.
Soft State
State that is deleted on a timer. If it is desierd to be kept then refresh. This allows for automatic clean up after failure but increases bandwidth requirements.
Hysteresis
System may change state depending on whether a variable is above or below a threshold. If variable fluctuates near threshold this can lead to rapid fluctuations in system state. This can be fixed by using a state-dependent threshold or hysteresis.
Separating Data and Control
Divide actions that happen once per dta transfer from actions that happen once per packet. This can increase throughput by minimising actions in data path but keeping control info in data element allows for per-packet QoS.
Steps in Performance analysing and tuning
Measure, characterise workload, build a system model, analyse and implement.
Protocol
A set of rules and formats that govern the communication between communicating peers including the set of valid messages and the meaning of each message.
What does a protocol tell us?
The syntax of a message - what fields, what format.
Semantics - what does a message mean
Actions to take on receipt of a message.
Protocol Layering
A protocol using another as a step in its execution e.g. packet transfer is one step in execution of a reliable file transfer protocol.
Service Access Point
Interface between an upper layer and a lower layer
Protocol Data Units
Packets exchanged between peer entities.
Service Data Units
Packets handed to a layer by an upper layer.
Protocol Stack
A set of protocol layers with each layer using the layer belwo and providing a service to the layer above. Allows for information hiding and change decoupiling.
Importance of being layered
Breaks up a comlex problem into smaller manageable pieces. Allows for abstraction of implementation details allowing for the sepearation of implementation and specification. It also allows functionality to be reused.
Problems with layering
Hidden information can be used to improve performance but layering hides information.
Open Protocol
Details are publicly available and cahnges are managed by an organisation whose membership and transactions are open to the public.
ISO OSI - Outline
Open System Interconnect
Reference Model - Architecture
It formally defines what is meant by a layer, a service etc.
Service architecture - Design
Describes the services provided by each layer and the service access point.
Protocol architecture - Implementation
Set of protocols that implement the service architecture.
ISO OSI - Seven Layers
Physical - Coding Scheme, shapes and sizes of connectors, bit-level synchronization
Datalink layer - Defines frames (sets of bits that belong together), Idle tells us link not carrying a fram, Begin and End delimit a frame. In broadcast links also need MAC to ensure end-system only receives bits meant for it.
Network Layer - Logically concatenates a set of links to form the abstraction of an end-to-end link.
Transport Layer - Creates abstraction of error-controlled, flow-controlled and multiplexed end-to-end link.
Session-Layer - Provides full-duplex service, expedited data delivery (allows some messages to skip ahead in end system queues), synchronization allows users to place marks and roll back.
Presentation Layer - Hides data representation differences between applications. It can also encrypt data.
Application Layer - The set of applications that use the network.
Why seven layers?
Need a top and bottom so 2. Need physical link so 3. Need end-to-end and hop-to-hop so need at least network and transport so 5 layers at least needed but 7 is excessive.