SlideShare a Scribd company logo
Tiered Architecture
• Technique to organize functionality of a given
layer and place this functionality into
appropriate servers.
• The functional decomposition is as
- Presentation Logic : Concerned with user
handling
- Application Logic: Detailed application –
specific processing
- Data Logic: persistent storage of application
Isha Padhy, Department of CSE 1
2 tier Architecture
• Server provides processing and data management; client provides simple graphical
display (thin-client)
• At the other extreme, all application processing and some data resides at the client
(fat-client approach)
Isha Padhy, Department of CSE 2
Two- tier architecture
• Advantages:
1.Because of tight coupling the application runs
faster.
2.Low latency in terms of interaction.
• Disadvantage:
Invoking a part of process from other part
across the process boundary is difficult.
• Example- Railway reservation: User is using
railway reservation software, gives input and
then sends request to server. 3Isha Padhy, Department of CSE
3 Tier Architecture
An example of a server acting as client.
-In some applications servers may also need to be clients, leading to a three level
architecture. Ex. Web servers that interact with database servers
-Presentation logic: UI part of application, allows user to input data.
-Application Logic: All business logic is written like data insertion, validation etc
-Data Logic: Contains method to interact with database.
Isha Padhy, Department of CSE 4
De-centralized Architecture
• Vertical distribution: Logically different components are
placed on different machines.
• Horizontal Distribution/ Peer to peer: All nodes are
independent and work on its share of data set.
- Why it was developed?
Network and computing resources owned by the users of a
service could also be utilized to support that service.
- Two types depending on how to organize the processes in a
n/w.
1. Structured
2. Unstructured
5Isha Padhy, Department of CSE
Structured
• N/w constructed using a procedure where
processes are organized using distributed hash
table(DHT).
• DHT provides a look- up service where (key,
value) pairs are stored. Data are assigned a
random key from identifier space, nodes are
assigned values from the same space.
• Responsibility for mapping from keys to
values is distributed among nodes.
• Ex Chord system 6Isha Padhy, Department of CSE
What is Chord?
• Steps in chord:
1. Find a value:
- Nodes are organized in a ring s.t. data item with key ‘k’ is mapped to node
with smallest identifier id~k. This node is called successor of key ‘k’,
Succ(k).
- A function is called to lookup for ‘k’ i.e LOOKUP(k) which returns n/w
address of succ(k)
2. Node joins a system: process starts with generating a random identifier
‘id’. Node that joins get ‘id’. Node does lookup(id) and gets n/w address of
succ(id). Then it inserts itself into ring.
3. Leaving: Node informs its departure to its predecessor and successor and
transfers its data to successor of node.
7Isha Padhy, Department of CSE
8
6
1
2
6
0
4
26
5
1
3
7
2
identifier
circle
identifier
node
X key
The Chord algorithm
successor(1) = 1
successor(2) = 3successor(6) = 0
Solves problem of locating a data item in a
collection of distributed nodes,
considering frequent node arrivals and
departures
Isha Padhy, Department of CSE
9
Node Joins and Departures
6
1
2
0
4
26
5
1
3
7
successor(6) = 7
6
1
successor(1) = 3
Isha Padhy, Department of CSE
Unstructured PTP
• Pure P2P: All nodes are of equal ability i.e no nodes have any
infrastructure, ex Gnutella n/w.
• Hybrid P2P: Infrastructure nodes are allowed to exist and are a
type of servers, all clients connected to the n/w must connect
to one of the servers. ex Napster n/w.
• Centralized P2P: Super-nodes are present in n/w which
dynamically service a small subpart of the peer n/w, ex Kazaa
n/w.
Requestor
node
3
2
1
4
10Isha Padhy, Department of CSE
Placement of objects and services
• Mapping of services to multiple servers: Servers may –
1. Partition of set of objects on which service is based
2. Replicate copies of them on several hosts
• Caching- Cache can be present in client side or proxy servers
that stores the recentlt used data objects
• Mobile code- applet code is stored in web server which can be
downloaded to a browser and run.
• Mobile agents- Composition of software and data that can
migrate from one system to other.
11Isha Padhy, Department of CSE
Hybrid Architectures
• Edge –Server Systems:
- Servers are placed “at the edge” of the network.
- Purpose is to serve content after filtering and transcoding
functions to data.
12Isha Padhy, Department of CSE
Hybrid Arch.
• Collaborative DS
13Isha Padhy, Department of CSE
Fundamental Model
• The purpose is
- All relevant assumptions about the DS can be made
- With the assumptions what are the possibilities
• Aspects to be considered are:
- Interaction: Considers the delay time taken by the
message from one process to other.
- Failure: Defines and classifies fault so design a system
to tolerate fault.
- Security: Analysis of threats to a system is done so that
system resists them.
14Isha Padhy, Department of CSE
Interaction Model
• Two factors affecting interaction of processes in DS
are:
- Performance of communication channels
- -Latency
- -Bandwidth
- -Jitter : Variation of time within two set of strings
transferred.
- Computer clocks and timing events : Two processes
running on different machines have different local
time and timestamps. So a global time standard is
used.
Time taken by first string of bits to reach
destination.
Congestion in network
Time taken by OS services in sending and
receiving side.
15Isha Padhy, Department of CSE
Interaction Model
• Two variants of IM
- Synchronous DS
--Strong assumption of time
--Bounds are defined for
1. Time to execute each step of a process which has known
lower and upper bounds
2. Each message transmitted over a channel is received within
a known bounded time
3. Each process has a local clock whose drift rate from real
time has a known bound.
- Asynchronous DS:
--Makes no assumption of time
16Isha Padhy, Department of CSE
Failure Model
• Defines the way in which failures may occur and
the effects of failures
• Types of failures
- Failures of processes
- Failures of communication channel
• Categories of failures
- Omission Failures
- Arbitrary Failures:
- Timing Failures
Process OF
Channel OF
17Isha Padhy, Department of CSE
Process has crashed i.e halted and will not
execute further.
Services execute properly if:
1.Processes either execute correctly or stop.
2.Follow time- outs i.e. a process allows a fixed
period of time for something to occur.
Process Omission Failures
18Isha Padhy, Department of CSE
Communication OF
Process p Process q
Communication channel
send
Outgoing message buffer Incoming message buffer
receivem
Failure occurs when a message is not transported from process ‘p’ outgoing
buffer to process ‘q’ incoming buffer due to lack of buffer space or n/w
transmission error.
19Isha Padhy, Department of CSE
Arbitrary Failures
• Arbitrarily omits intended processing steps or
takes unintended steps.
• Ex , A process may set wrong values in its data
items or may return a wrong value in
response.
• AF are uncommon in channels.
20Isha Padhy, Department of CSE
Timing Failures
• Synchronous DS:
- Failure of clock on process : Process local
clock exceeds the bound on its rate of drift
from real time.
- Failure of performance on process: Process
exceeds the interval between two steps
- Failure of performance on channel: A
message’s transmission takes longer time
• Asynchronous DS: Overloaded server may
respond late. 21Isha Padhy, Department of CSE
Security model
• Security model - Secure processes and channels
and protect objects encapsulated against unauthorized
access.
– Protecting access to objects - Access rights,
authentication of clients
– Protecting processes and interactions
– Protecting communication channel.
22Isha Padhy, Department of CSE
Security model
Network
invocation
result
Client
Server
Principal (user) Principal (server)
ObjectAccess rights
Communication channel
Copy of m
Process p Process qm
The enemy
m’
Protecting objects
Protecting process
23Isha Padhy, Department of CSE
Protecting channel
• Client and server knows the identity of each
other( Authentication Process)
• Secure channel ensures privacy and integrity
of data( cryptography process)
• Each message includes a logical timestamp to
prevent messages from being reordered.
24Isha Padhy, Department of CSE

More Related Content

What's hot (20)

PPTX
Case Study - SUN NFS
Ashish KC
 
PPT
Packet switching
asimnawaz54
 
PPTX
Chapter 11: Data Link Control
JeoffnaRuth
 
PPTX
source code metrics and other maintenance tools and techniques
Siva Priya
 
PPT
Ddbms1
pranjal_das
 
PDF
SOFTWARE PROJECT PLANNING on Software Engineering
work90665
 
PPT
Adhoc wireless
Ipsita Sharma
 
PDF
Location Aided Routing (LAR)
Pradeep Kumar TS
 
PPTX
Distributed shared memory ch 5
Alagappa Government Arts College, Karaikudi
 
PPT
Aspect Oriented Software Development
Jignesh Patel
 
PPT
Coda file system
Sneh Pahilwani
 
PPTX
software cost factor
Abinaya B
 
PDF
Heap management in Compiler Construction
Muhammad Haroon
 
PPTX
message communication protocols in IoT
FabMinds
 
PPTX
Wireless LAN
KannanKrishnana
 
PPTX
Loops in flow
indhu mathi
 
PPT
Operating system support in distributed system
ishapadhy
 
PPT
Dqdb
Anuj Gupta
 
PPT
Chapter 4 a interprocess communication
AbDul ThaYyal
 
PPTX
Inter Process Communication
Adeel Rasheed
 
Case Study - SUN NFS
Ashish KC
 
Packet switching
asimnawaz54
 
Chapter 11: Data Link Control
JeoffnaRuth
 
source code metrics and other maintenance tools and techniques
Siva Priya
 
Ddbms1
pranjal_das
 
SOFTWARE PROJECT PLANNING on Software Engineering
work90665
 
Adhoc wireless
Ipsita Sharma
 
Location Aided Routing (LAR)
Pradeep Kumar TS
 
Distributed shared memory ch 5
Alagappa Government Arts College, Karaikudi
 
Aspect Oriented Software Development
Jignesh Patel
 
Coda file system
Sneh Pahilwani
 
software cost factor
Abinaya B
 
Heap management in Compiler Construction
Muhammad Haroon
 
message communication protocols in IoT
FabMinds
 
Wireless LAN
KannanKrishnana
 
Loops in flow
indhu mathi
 
Operating system support in distributed system
ishapadhy
 
Chapter 4 a interprocess communication
AbDul ThaYyal
 
Inter Process Communication
Adeel Rasheed
 

Viewers also liked (7)

PDF
Cs556 section2
farshad33
 
PPT
Introduction to distributed system
ishapadhy
 
PPT
Remote invocation
ishapadhy
 
PPT
Domain name service
ishapadhy
 
PPT
System models in distributed system
ishapadhy
 
PPTX
Computer arithmetic in computer architecture
ishapadhy
 
PPTX
Computer organization
ishapadhy
 
Cs556 section2
farshad33
 
Introduction to distributed system
ishapadhy
 
Remote invocation
ishapadhy
 
Domain name service
ishapadhy
 
System models in distributed system
ishapadhy
 
Computer arithmetic in computer architecture
ishapadhy
 
Computer organization
ishapadhy
 
Ad

Similar to System models 2 in distributed system (20)

PPT
Chapter 2- Architecture os distributed system.ppt
AschalewAyele2
 
PPTX
Lecture_2_Architectures of Distributed System.pptx
ZubaerIbnaMannan
 
PPT
Communications is distributed systems
SHATHAN
 
PDF
chapter 2 architecture
Sharda University Greater Noida
 
PPTX
Chap-3- Process.pptx distributive system
Tofikmohammed5
 
PDF
CS6601 DISTRIBUTED SYSTEMS
Kathirvel Ayyaswamy
 
PPT
C-System Models Presentation files .ppt
HarshPanchal455289
 
PPTX
Distributed Systems Introduction and Importance
SHIKHA GAUTAM
 
PDF
Inter-Process Communication in distributed systems
Aya Mahmoud
 
PPTX
Chapter 2 Architecture (updated).pptx
TadeseBeyene
 
PPTX
communication in distributed systems
mohammed alrekabe
 
PDF
DISTRIBUTED SYSTEM CHAPTER THREE UP TO FIVE.pdf
BachaLamessaa
 
PPTX
CLIENT SERVER IN OS.ppt
suman yadav
 
PPTX
Synchronization
Sara shall
 
PPTX
chapter-1Introduction to DS,Issues and Architecture.pptx
ARULMURUGANRAMU1
 
PDF
Distributed systems short notes module 1
Tharani4825
 
PDF
Intro ds 1
HajuseNtandu
 
PDF
CS6551 COMPUTER NETWORKS
Kathirvel Ayyaswamy
 
PPT
Chapter 2A-Architectures.ppt
sirajmohammed35
 
PPTX
DS PPT NEW FOR DATA SCCIENCE FROM CSE DEPT CMR
timip29530
 
Chapter 2- Architecture os distributed system.ppt
AschalewAyele2
 
Lecture_2_Architectures of Distributed System.pptx
ZubaerIbnaMannan
 
Communications is distributed systems
SHATHAN
 
chapter 2 architecture
Sharda University Greater Noida
 
Chap-3- Process.pptx distributive system
Tofikmohammed5
 
CS6601 DISTRIBUTED SYSTEMS
Kathirvel Ayyaswamy
 
C-System Models Presentation files .ppt
HarshPanchal455289
 
Distributed Systems Introduction and Importance
SHIKHA GAUTAM
 
Inter-Process Communication in distributed systems
Aya Mahmoud
 
Chapter 2 Architecture (updated).pptx
TadeseBeyene
 
communication in distributed systems
mohammed alrekabe
 
DISTRIBUTED SYSTEM CHAPTER THREE UP TO FIVE.pdf
BachaLamessaa
 
CLIENT SERVER IN OS.ppt
suman yadav
 
Synchronization
Sara shall
 
chapter-1Introduction to DS,Issues and Architecture.pptx
ARULMURUGANRAMU1
 
Distributed systems short notes module 1
Tharani4825
 
Intro ds 1
HajuseNtandu
 
CS6551 COMPUTER NETWORKS
Kathirvel Ayyaswamy
 
Chapter 2A-Architectures.ppt
sirajmohammed35
 
DS PPT NEW FOR DATA SCCIENCE FROM CSE DEPT CMR
timip29530
 
Ad

Recently uploaded (20)

PPSX
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
PPTX
Quarter1-English3-W4-Identifying Elements of the Story
FLORRACHELSANTOS
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PDF
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PDF
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PDF
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
PPTX
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
PPTX
How to Set Maximum Difference Odoo 18 POS
Celine George
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPTX
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
PPTX
THE TAME BIRD AND THE FREE BIRD.pptxxxxx
MarcChristianNicolas
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
Quarter1-English3-W4-Identifying Elements of the Story
FLORRACHELSANTOS
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
community health nursing question paper 2.pdf
Prince kumar
 
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
BANDHA (BANDAGES) PPT.pptx ayurveda shalya tantra
rakhan78619
 
How to Set Maximum Difference Odoo 18 POS
Celine George
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
Views on Education of Indian Thinkers Mahatma Gandhi.pptx
ShrutiMahanta1
 
THE TAME BIRD AND THE FREE BIRD.pptxxxxx
MarcChristianNicolas
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 

System models 2 in distributed system

  • 1. Tiered Architecture • Technique to organize functionality of a given layer and place this functionality into appropriate servers. • The functional decomposition is as - Presentation Logic : Concerned with user handling - Application Logic: Detailed application – specific processing - Data Logic: persistent storage of application Isha Padhy, Department of CSE 1
  • 2. 2 tier Architecture • Server provides processing and data management; client provides simple graphical display (thin-client) • At the other extreme, all application processing and some data resides at the client (fat-client approach) Isha Padhy, Department of CSE 2
  • 3. Two- tier architecture • Advantages: 1.Because of tight coupling the application runs faster. 2.Low latency in terms of interaction. • Disadvantage: Invoking a part of process from other part across the process boundary is difficult. • Example- Railway reservation: User is using railway reservation software, gives input and then sends request to server. 3Isha Padhy, Department of CSE
  • 4. 3 Tier Architecture An example of a server acting as client. -In some applications servers may also need to be clients, leading to a three level architecture. Ex. Web servers that interact with database servers -Presentation logic: UI part of application, allows user to input data. -Application Logic: All business logic is written like data insertion, validation etc -Data Logic: Contains method to interact with database. Isha Padhy, Department of CSE 4
  • 5. De-centralized Architecture • Vertical distribution: Logically different components are placed on different machines. • Horizontal Distribution/ Peer to peer: All nodes are independent and work on its share of data set. - Why it was developed? Network and computing resources owned by the users of a service could also be utilized to support that service. - Two types depending on how to organize the processes in a n/w. 1. Structured 2. Unstructured 5Isha Padhy, Department of CSE
  • 6. Structured • N/w constructed using a procedure where processes are organized using distributed hash table(DHT). • DHT provides a look- up service where (key, value) pairs are stored. Data are assigned a random key from identifier space, nodes are assigned values from the same space. • Responsibility for mapping from keys to values is distributed among nodes. • Ex Chord system 6Isha Padhy, Department of CSE
  • 7. What is Chord? • Steps in chord: 1. Find a value: - Nodes are organized in a ring s.t. data item with key ‘k’ is mapped to node with smallest identifier id~k. This node is called successor of key ‘k’, Succ(k). - A function is called to lookup for ‘k’ i.e LOOKUP(k) which returns n/w address of succ(k) 2. Node joins a system: process starts with generating a random identifier ‘id’. Node that joins get ‘id’. Node does lookup(id) and gets n/w address of succ(id). Then it inserts itself into ring. 3. Leaving: Node informs its departure to its predecessor and successor and transfers its data to successor of node. 7Isha Padhy, Department of CSE
  • 8. 8 6 1 2 6 0 4 26 5 1 3 7 2 identifier circle identifier node X key The Chord algorithm successor(1) = 1 successor(2) = 3successor(6) = 0 Solves problem of locating a data item in a collection of distributed nodes, considering frequent node arrivals and departures Isha Padhy, Department of CSE
  • 9. 9 Node Joins and Departures 6 1 2 0 4 26 5 1 3 7 successor(6) = 7 6 1 successor(1) = 3 Isha Padhy, Department of CSE
  • 10. Unstructured PTP • Pure P2P: All nodes are of equal ability i.e no nodes have any infrastructure, ex Gnutella n/w. • Hybrid P2P: Infrastructure nodes are allowed to exist and are a type of servers, all clients connected to the n/w must connect to one of the servers. ex Napster n/w. • Centralized P2P: Super-nodes are present in n/w which dynamically service a small subpart of the peer n/w, ex Kazaa n/w. Requestor node 3 2 1 4 10Isha Padhy, Department of CSE
  • 11. Placement of objects and services • Mapping of services to multiple servers: Servers may – 1. Partition of set of objects on which service is based 2. Replicate copies of them on several hosts • Caching- Cache can be present in client side or proxy servers that stores the recentlt used data objects • Mobile code- applet code is stored in web server which can be downloaded to a browser and run. • Mobile agents- Composition of software and data that can migrate from one system to other. 11Isha Padhy, Department of CSE
  • 12. Hybrid Architectures • Edge –Server Systems: - Servers are placed “at the edge” of the network. - Purpose is to serve content after filtering and transcoding functions to data. 12Isha Padhy, Department of CSE
  • 13. Hybrid Arch. • Collaborative DS 13Isha Padhy, Department of CSE
  • 14. Fundamental Model • The purpose is - All relevant assumptions about the DS can be made - With the assumptions what are the possibilities • Aspects to be considered are: - Interaction: Considers the delay time taken by the message from one process to other. - Failure: Defines and classifies fault so design a system to tolerate fault. - Security: Analysis of threats to a system is done so that system resists them. 14Isha Padhy, Department of CSE
  • 15. Interaction Model • Two factors affecting interaction of processes in DS are: - Performance of communication channels - -Latency - -Bandwidth - -Jitter : Variation of time within two set of strings transferred. - Computer clocks and timing events : Two processes running on different machines have different local time and timestamps. So a global time standard is used. Time taken by first string of bits to reach destination. Congestion in network Time taken by OS services in sending and receiving side. 15Isha Padhy, Department of CSE
  • 16. Interaction Model • Two variants of IM - Synchronous DS --Strong assumption of time --Bounds are defined for 1. Time to execute each step of a process which has known lower and upper bounds 2. Each message transmitted over a channel is received within a known bounded time 3. Each process has a local clock whose drift rate from real time has a known bound. - Asynchronous DS: --Makes no assumption of time 16Isha Padhy, Department of CSE
  • 17. Failure Model • Defines the way in which failures may occur and the effects of failures • Types of failures - Failures of processes - Failures of communication channel • Categories of failures - Omission Failures - Arbitrary Failures: - Timing Failures Process OF Channel OF 17Isha Padhy, Department of CSE
  • 18. Process has crashed i.e halted and will not execute further. Services execute properly if: 1.Processes either execute correctly or stop. 2.Follow time- outs i.e. a process allows a fixed period of time for something to occur. Process Omission Failures 18Isha Padhy, Department of CSE
  • 19. Communication OF Process p Process q Communication channel send Outgoing message buffer Incoming message buffer receivem Failure occurs when a message is not transported from process ‘p’ outgoing buffer to process ‘q’ incoming buffer due to lack of buffer space or n/w transmission error. 19Isha Padhy, Department of CSE
  • 20. Arbitrary Failures • Arbitrarily omits intended processing steps or takes unintended steps. • Ex , A process may set wrong values in its data items or may return a wrong value in response. • AF are uncommon in channels. 20Isha Padhy, Department of CSE
  • 21. Timing Failures • Synchronous DS: - Failure of clock on process : Process local clock exceeds the bound on its rate of drift from real time. - Failure of performance on process: Process exceeds the interval between two steps - Failure of performance on channel: A message’s transmission takes longer time • Asynchronous DS: Overloaded server may respond late. 21Isha Padhy, Department of CSE
  • 22. Security model • Security model - Secure processes and channels and protect objects encapsulated against unauthorized access. – Protecting access to objects - Access rights, authentication of clients – Protecting processes and interactions – Protecting communication channel. 22Isha Padhy, Department of CSE
  • 23. Security model Network invocation result Client Server Principal (user) Principal (server) ObjectAccess rights Communication channel Copy of m Process p Process qm The enemy m’ Protecting objects Protecting process 23Isha Padhy, Department of CSE
  • 24. Protecting channel • Client and server knows the identity of each other( Authentication Process) • Secure channel ensures privacy and integrity of data( cryptography process) • Each message includes a logical timestamp to prevent messages from being reordered. 24Isha Padhy, Department of CSE