Week 2
Week 2
1
OUTLINE
2
1. DISTRIBUTED SYSTEM TYPES
Fully
Control Distributed
ta
Da
Autonomous
fully cooperative
Local data,
Autonomous local directory
transaction based Not fully replicated
master directory
Master-slave Fully replicated
Homog. Homog.
special general Processors
purpose purpose
Heterog. Heterog.
special general 3
purpose purpose
1. WHAT IS A DISTRIBUTED SYSTEM?
Concurrency of components
Lack of a global ‘clock’
Independent failures of components
4
1.1 CENTRALIZED SYSTEM
CHARACTERISTICS
One component with non-autonomous parts
Component shared by users all the time
All resources accessible
Software runs in a single process
Single point of control
Single point of failure
5
1.2 DISTRIBUTED SYSTEM CHARACTERISTICS
7
2.1 LOCAL AREA NETWORK
email server Desktop
computers
print and other servers
Local area
Web server network
email server
print
File server
other servers
the rest of
the Internet
router/firewall
8
2.2 DATABASE MANAGEMENT SYSTEM
9
2.3 AUTOMATIC TELLER MACHINE
NETWORK
10
2.4 INTERNET
intranet
ISP
backbone
satellite link
desktop computer:
server:
network link:
11
2.4.1 WORLD-WIDE-WEB
12
2.4.2 WEB SERVERS AND WEB
BROWSERS
http://www.google.comlsearch?q=lyu
www.google.com
Browsers
Web servers
www.uu.se Internet
http://www.uu.se/
www.w3c.org
Activity.html
13
2.5 MOBILE AND UBIQUITOUS
COMPUTING
Internet
Mobile
phone
Printer Laptop
Camera Host site
14
3. COMMON CHARACTERISTICS
15
3.1 HETEROGENEITY
Variety and differences in
Networks
Computer hardware
Operating systems
Programming languages
Implementations by different developers
Middleware as software layers to provide a programming
abstraction as well as masking the heterogeneity of the
underlying networks, hardware, OS, and programming
languages (e.g., CORBA).
Mobile Code to refer to code that can be sent from one
computer to another and run at the destination (e.g., Java
applets and Java virtual machine).
16
3.2 OPENNESS
Openness is concerned with extensions and
improvements of distributed systems.
Detailed interfaces of components need to be
published.
New components have to be integrated with
existing components.
Differences in data representation of interface
17
3.3 SECURITY
Importance of Security in Distributed Systems:
Protect sensitive data during client-server interactions.
Ensure privacy and integrity of communications.
Key Security Requirements: Common Security Challenges:
Confidentiality: Encrypt data to Data Breach Risks: Secure sensitive
prevent unauthorized access. data against unauthorized access or
Authentication: Verify the identity of leaks.
users and systems accessing resources. Mobile Code Security: Ensure safe
Integrity: Ensure data is not altered execution of code (e.g., scripts,
during transmission. applets) across different platforms.
Authorization: Control user access to Network Vulnerabilities: Guard
specific resources. against eavesdropping, man-in-the-
Non-Repudiation: Ensure actions or middle attacks, and other network
transactions cannot be denied by the threats.
parties involved.
3.4 SCALABILITY
Adaptation of distributed systems to
accommodate more users
respond faster (this is the hard one)
19
3.5 FAILURE HANDLING (FAULT
TOLERANCE)
20
3.6 CONCURRENCY
Components in distributed systems are executed
in concurrent processes.
Components access and update shared resources
21
3.7 TRANSPARENCY
Distributed systems should be perceived by users
and application programmers as a whole rather
than as a collection of cooperating components.
Transparency has different aspects.
These represent various properties that
distributed systems should have.
22
4.4 SYSTEM ARCHITECTURES
Client-Server
Peer-to-Peer
Network computers
31
4.4.1 CLIENTS INVOKE INDIVIDUAL
SERVERS
result result
Server
Client
Key:
Process: Computer:
32
4.4.2 PEER-TO-PEER SYSTEMS
Peer 2
Peer 1
Application
Application
Sharable Peer 3
objects
Application
Peer 4
Application
Peers 5 .... N
33
4.4.3 A SERVICE BY MULTIPLE SERVERS
Service
Server
Client
Server
Client
Server
34
4.4.4 WEB PROXY SERVER
Client Web
server
Proxy
server
Client Web
server
35
4.4.5 WEB APPLETS
a) client request results in the downloading of applet code
Client Web
Applet code server
Web
Client Applet server
36
4.4.6 THIN CLIENTS AND COMPUTE
SERVERS
Compute server
Network computer or PC
37
5. SUMMARY
Definitions of distributed systems and comparisons to
centralized systems.
The characteristics of distributed systems.
38
4. BASIC DESIGN ISSUES
General software engineering principles
include rigor and formality, separation of
concerns, modularity, abstraction,
anticipation of change, …
Specific issues for distributed systems:
Naming
Communication
Software structure
System architecture
Workload allocation
39
Consistency maintenance
4.1 NAMING
A name is resolved when translated into an
interpretable form for resource/object reference.
Communication identifier (IP address + port number)
Name resolution involves several translation steps
Design considerations
Choiceof name space for each resource type
Name service to resolve resource names to comm. id.
Name services include naming context resolution,
hierarchical structure, resource protection
40
4.2 COMMUNICATION
Separated components communicate with sending
processes and receiving processes for data transfer
and synchronization.
Message passing: send and receive primitives
synchronous or blocking
asynchronous or non-blocking
Abstractions defined: channels, sockets, ports.
Communication patterns: client-server
communication (e.g., RPC, function shipping) and
group multicast
41
4.3 SOFTWARE STRUCTURE
Layers in centralized computer systems:
Applications
Middleware
Operating system
Computer and Network Hardware
42
4.3 SOFTWARE STRUCTURE
Layers and dependencies in distributed systems:
Applications
Open
Distributed programming services
support