Chapter 2-Architectures
Chapter 2-Architectures
Introduction
2
2.1 Architectural Styles
refers to the logical organization of distributed systems
into software components
a component is a modular unit with well-defined, required
and provided interfaces that is replaceable within its
environment; can be replaced provided that we respect its
interfaces
a connector is a mechanism that mediates
communication, coordination, or cooperation among
components, e.g., facilities for RPC, message passing, or
streaming multimedia data
there are various architectural styles
Layered architectures
Object-based architectures
Data-centered architectures
Event-based architectures
3
Layered architectures
components are organized in a layered fashion where a
component at layer Li is allowed to call components at
the underlying layer Li-1, but not the other way around;
requests go down the hierarchy and results flow
upward
e.g., network layers
5
Data-centered architectures
processes communicate through a common repository;
e.g., a shared distributed file system
Event-based architectures
processes communicate through the propagation of events
(can also optionally carry data)
publish/subscribe systems
processes publish events and the middleware ensures that
only those processes that subscribed to those events will
receive them
processes are loosely
coupled; no need of
explicitly referring to
each other
7
2.2 System Architectures
refers to the logical organization of distributed systems
into software components or how are processes
organized in a system; where do we place software
components
deciding on software components, their interaction, and
their placement is what system architecture is all about
can be centralized, decentralized or a hybrid
8
2.2.1 Centralized Architectures
thinking in terms of clients requesting services from
servers
a server is a process implementing a specific service
a client is a process that requests a service from a server
by sending a request and waiting for a reply
we have a request-reply behaviour
9
communication between client and server can be
by a connectionless protocol if the underlying network is
fairly reliable; efficient since there is no much overhead
but assuring reliability is difficult
we don’t also know the source of error; was the request
or the reply lost, for instance
when messages are lost or corrupted let the client send
the request again; applicable only for idempotent
operations
an operation is idempotent if it can be repeated
multiple times without harm; e.g., reading a record in a
database
but, transferring an amount to a bank account is not
idempotent
see later in Chapter 8 - Fault Tolerance
by a reliable connection-oriented protocol if the underlying
network is unreliable
establishing and terminating connections is expensive
10
Application Layering
there are many controversies about the client-server
model
e.g., no clear distinction between a client and a server;
for instance a server for a distributed database may act
as a client when it forwards requests to different file
servers
three levels of distribution (following the layered
architecture)
the user-interface level: implemented by clients and
contains all that is required by a client; varying from a
character-based screen to more advanced GUI-based
interfaces (more on user interfaces in Chapter 3)
the processing level: contains the applications
the data level: contains the programs that maintain
the actual data dealt with
11
e.g., the general organization of an Internet search engine
into three different layers
12
Client-Server Architectures
how to physically distribute a client-server application
across several machines
Multitiered Architectures
14
a server may sometimes act as a client leading to a
physically three-tiered architecture; an example is the
organization of Web sites
15
2.2.2 Decentralized Architectures
vertical distribution
refers to the ones discussed so far where the different
tiers correspond directly with the logical organization of
applications
place logically different components on different
machines
horizontal distribution
physically split up the client or the server into logically
equivalent parts
an example is a peer-to-peer system where processes
are equal and hence each process acts as a client and a
server at the same time (servent)
read about the different approaches of peer-to-peer
architecture - pages 44 - 51 and about Architectures
versus Middleware - pages 54 - 66
16
another example is the horizontal distribution of a Web
service
17