0
1.9kviews
An architecture of Information System

Mumbai University > Computer Science > Sem 8 > Parallel And Distributed System

1 Answer
0
21views

1] Architectural models: This model describes responsibilities distributed between system components and how these components are places.

They are broadly classified as:

a) Client server model : In this model, the system is structured as a set of processes called servers, that offer services to the users, called clients. it is based on simple request/reply protocol implemented with send/receive primitives or RPC

b) Peer to peer model : In this all processes play similar resole without distinction client and servers. this is most general and flexible model. it distributes resources widely. the problem lies in its high complexity in planing objects retrieving them and maintaining replies.

2] Interaction models : This model handles process execution, message delivery, clock drifts and other time related issues. in synchronous distributed system, these a notion of global physical time only such systems can be used for handling time applications. it is possible to use time in order to detect failures. the only problem is that it is difficult and costly to implement syndromes distributed systems.

mainly distributed systems are asynchronous they have no bounds on execution time, transmission delays and drift rates between local clocks, as then is no global clock, reasoning can be only in terms of logical time.

3] Fault models : Failures can occur in both processes and communication channels, the reason can be software/hardware or both faults, fault models are needed in order to build systems with predictable behavior in case of faults. such systems will function according to the predictable only as long as the real faults behave as defined by the "fault model".

Please log in to add an answer.