A distributed computer system contains software programs and data resources dispersed across independent computers connected through a communication network.
It allows users of individual, networked computers to share data and processing power, often over long distances.
Distribution can also enhance availability, reliability and performance.
A coordination model establishes logical roles and associated behaviours (for applications that assume such roles) for executing distributed interactions.
Receives a client request, performs the requested service and returns to the client any results.
It offers simplicity in closely matching the flow of data with the control flow.
It promotes modular, flexible, and extensive system designs.
Data resources and computing services can be organized, integrated and used as a service.
Widely used in distributed systems.
Servers communicate over a network.
In Unix and Windows machines the network uses: TCP/IP & UDP.
TCP is a connection-based protocol that provides a reliable flow of data between two computers.
UDP is a protocol that sends independent packets of data, called datagrams from one computer to another with no guarantees about arrival.
The TCP and UDP protocols use ports to map incoming data to a particular process running on a computer.
Computers are identified by a 32-bit IP address.
IP uses to deliver data to the right computer on the network.
Ports are identified by a 16-bit number.
TCP and UDP use to deliver the data to the right application.
Range: from 0 to 65535
Reserved: 0 - 1023 are restricted--they are reserved for use by services such as HTTP and ftp and other system services.
Are the basic components of interprocess communication.
Provide access to the network transport protocols
Are an endpoint of communication to which a name can be bound.
A stream socket provides bidirectional, reliable, sequential, and unduplicated flow of data with no record boundaries. It uses TCP/IP protocol.
A datagram socket provides bidirectional flow of data, the data is divided in packages, the receiver can receive them in a different order from the sending sequence and may receive duplicated messages. It uses UDP protocol.
Copyright © 1998-2009 Dilvan Moreira