Distributed Computing, M. L. Liu 1 Interprocess Communications Mei-Ling L. Liu.

Slides:



Advertisements
Similar presentations
DISTRIBUTED COMPUTING PARADIGMS
Advertisements

WECC EIDE Training Workshop Data Exchange Work Group.
1 Communication in Distributed Systems REKs adaptation of Tanenbaums Distributed Systems Chapter 2.
Web Service Ahmed Gamal Ahmed Nile University Bioinformatics Group
Unit – Paradigms and Abstraction 3.2 An Example Applications 3.3 Paradigms for Distributed Applications Distributed Computing Paradigms By Asst.
Chapter 2: Communications
Interprocess Communications
XP Browser and Basics1. XP Browser and Basics2 Learn about Web browser software and Web pages The Web is a collection of files that reside.
Socket Programming.
Inter-Process Communication i206 Fall 2010 John Chuang Some slides adapted from Coulouris, Dollimore and Kindberg; Calvert and Donahoo.
1 Software Testing and Quality Assurance Lecture 32 – SWE 205 Course Objective: Basics of Programming Languages & Software Construction Techniques.
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
Distributed systems (NET 422) Prepared by Dr. Naglaa Fathi Soliman Princess Nora Bint Abdulrahman University College of computer.
Distributed Computing, Liu1 The Client-Server Model – part 1 M. L. Liu.
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public 1 Version 4.0 Application Layer Functionality and Protocols Network Fundamentals – Chapter.
INTRODUCTION TO WEB DATABASE PROGRAMMING
Fall 2005 By: H. Veisi Computer networks course Olum-fonoon Babol Chapter 7 The Application Layer.
Tanenbaum & Van Steen, Distributed Systems: Principles and Paradigms, 2e, (c) 2007 Prentice-Hall, Inc. All rights reserved DISTRIBUTED SYSTEMS.
Chapter 9 Message Passing Copyright © Operating Systems, by Dhananjay Dhamdhere Copyright © Operating Systems, by Dhananjay Dhamdhere2 Introduction.
DATA COMMUNICATION DONE BY: ALVIN SAMPATH CARLVIN SAMPATH.
16-1 The World Wide Web The Web An infrastructure of distributed information combined with software that uses networks as a vehicle to exchange that information.
Object and component “wiring” standards This presentation reviews the features of software component wiring and the emerging world of XML-based standards.
JavaScript, Fourth Edition Chapter 12 Updating Web Pages with AJAX.
Postacademic Interuniversity Course in Information Technology – Module C1p1 Contents Data Communications Applications –File & print serving –Mail –Domain.
Web Page Design I Basic Computer Terms “How the Internet & the World Wide Web (www) Works”
© 2007 Cisco Systems, Inc. All rights reserved.Cisco Public ITE PC v4.0 Chapter 1 1 Application Layer Functionality and Protocols Network Fundamentals.
Component 9 – Networking and Health Information Exchange Unit 1-1 ISO Open Systems Interconnection (OSI) This material was developed by Duke University,
Lecture 15 Introduction to Web Services Web Service Applications.
Web Programming : Building Internet Applications Chris Bates CSE :
1 Web Development & Design Foundations with XHTML Chapter 1 Key Concepts.
The Socket API Unit – Background 4.2 The Socket Metaphor In IPC
WEB BASED DATA TRANSFORMATION USING XML, JAVA Group members: Darius Balarashti & Matt Smith.
Chapter 4: Interprocess Communication‏ Pages
Distributed Systems Concepts and Design Chapter 4.
Dr. John P. Abraham Professor University of Texas Pan American Internet Applications and Network Programming.
Internet Protocol B Bhupendra Ratha, Lecturer School of Library and Information Science Devi Ahilya University, Indore
NETWORK HARDWARE AND SOFTWARE MR ROSS UNIT 3 IT APPLICATIONS.
BASIC INTERNET PROTOCOLS: http, ftp, telnet. Mirela Walczak.
03/11/2015 Michael Chai; Behrouz Forouzan Staffordshire University School of Computing Streaming 1.
INTERNET. Objectives Explain the origin of the Internet and describe how the Internet works. Explain the difference between the World Wide Web and the.
ECEN “Internet Protocols and Modeling”, Spring 2012 Course Materials: Papers, Reference Texts: Bertsekas/Gallager, Stuber, Stallings, etc Class.
Interprocess Communications
Chapter 29 World Wide Web & Browsing World Wide Web (WWW) is a distributed hypermedia (hypertext & graphics) on-line repository of information that users.
© Chinese University, CSE Dept. Distributed Systems / Distributed Systems Topic 3: Communication Dr. Michael R. Lyu Computer Science & Engineering.
1 WWW. 2 World Wide Web Major application protocol used on the Internet Simple interface Two concepts –Point –Click.
Kemal Baykal Rasim Ismayilov
The Client-Server Model And the Socket API. Client-Server (1) The datagram service does not require cooperation between the peer applications but such.
1 Interprocess Communication CE 513 Computer Engineering, IEU.
Distributed systems (NET 422) Prepared by Dr. Naglaa Fathi Soliman Princess Nora Bint Abdulrahman University College of computer.
Web Services An Introduction Copyright © Curt Hill.
5. The Transport Layer 5.1 Role of Transport Layer It bridge the gab between applications and the network layer. Provides reliable cost-effective data.
1/30/20161 Introduction to Web Services Bina Ramamurthy
Distributed Computing Paradigms1. 2 Paradigms for Distributed Applications Paradigm means “a pattern, example, or model.” In the study of any subject.
Lesson 10—Networking BASICS1 Networking BASICS The Internet and Its Tools Unit 3 Lesson 10.
Internet addresses By Toni Grey & Rashida Swan HTTP Stands for HyperText Transfer Protocol Is the underlying stateless protocol used by the World Wide.
Ch 2. Application Layer Myungchul Kim
COMPUTER NETWORKS Hwajung Lee. Image Source:
Beginning 자바 웹 서비스 SOAP 강미란 Cyber-Infrastructure Research Lab Konkuk University.
Distributed Computing & Embedded Systems Chapter 4: Remote Method Invocation Dr. Umair Ali Khan.
The Client-Server Model
Unit – 5 JAVA Web Services
Some bits on how it works
Chapter 10: Application Layer
Web Development & Design Chapter 1, Sections 4, 5 & 6
Inter Process Communication (IPC)
CSE 451: Operating Systems Autumn 2009 Module 21 Remote Procedure Call (RPC) Ed Lazowska Allen Center
Block 2: Interprocess Communications
Chapter 7 Network Applications
CSE 451: Operating Systems Autumn 2010 Module 21 Remote Procedure Call (RPC) Ed Lazowska Allen Center
OSI Reference Model Unit II
Presentation transcript:

Distributed Computing, M. L. Liu 1 Interprocess Communications Mei-Ling L. Liu

Distributed Computing, M. L. Liu 2 Interprocess Communications - Operating systems provide facilities for interprocess communications (IPC), such as message queues, semaphores, and shared memory. - Distributed computing systems make use of these facilities to provide application programming interface which allows IPC to be programmed at a higher level of abstraction. - Distributed computing requires information to be exchanged among independent processes.

Distributed Computing, M. L. Liu 3 IPC – unicast and multicast In distributed computing, two or more processes engage in IPC in a protocol agreed upon by the processes. A process may be a sender at some points during a protocol, a receiver at other points. When communication is from one process to a single other process, the IPC is said to be a unicast. When communication is from one process to a group of processes, the IPC is said to be a multicast, a topic that we will explore in a later chapter.

Distributed Computing, M. L. Liu 4 Unicast vs. Multicast

Distributed Computing, M. L. Liu 5 Interprocess Communications in Distributed Computing

Distributed Computing, M. L. Liu 6 Operations provided in an archetypal Interprocess Communications API Receive ( [sender], message storage object) Connect (sender address, receiver address), for connection-oriented communication. Send ( [receiver], message) Disconnect (connection identifier), for connection- oriented communication.

Distributed Computing, M. L. Liu 7 Interprocess Communication in basic HTTP

Distributed Computing, M. L. Liu 8 Event Synchronization Interprocess communication requires that the two processes synchronize their operations: one side sends, then the other receives until all data has been sent and received. Ideally, the send operation starts before the receive operation commences. In practice, the synchronization requires system support.

Distributed Computing, M. L. Liu 9 Synchronous vs. Asynchronous Communication The IPC operations may provide the synchronization necessary using blocking. A blocking operation issued by a process will block further processing of the process until the operation is fulfilled. Alternatively, IPC operations may be asynchronous or nonblocking. An asynchronous operation issued by a process will not block further processing of the process. Instead, the process is free to proceed with its processing, and may optionally be notified by the system when the operation is fulfilled.

Distributed Computing, M. L. Liu 10 Synchronous send and receive

Distributed Computing, M. L. Liu 11 Asynchronous send and synchronous receive

Distributed Computing, M. L. Liu 12 Synchronous send and Async. Receive - 1

Distributed Computing, M. L. Liu 13 Synchronous send and Async. Receive - 2

Distributed Computing, M. L. Liu 14 Synchronous send and Async. Receive - 3

Distributed Computing, M. L. Liu 15 Asynchronous send and Asynchronous receive

Distributed Computing, M. L. Liu 16 Event diagram

Distributed Computing, M. L. Liu 17 Blocking, deadlock, and timeouts Blocking operations issued in the wrong sequence can cause deadlocks. Deadlocks should be avoided. Alternatively, timeout can be used to detect deadlocks.

Distributed Computing, M. L. Liu 18 Using threads for asynchronous IPC When using an IPC programming interface, it is important to note whether the operations are synchronous or asynchronous. If only blocking operation is provided for send and/or receive, then it is the programmer’s responsibility to using child processes or threads if asynchronous operations are desired.

Distributed Computing, M. L. Liu 19 Deadlocks and Timeouts Connect and receive operations can result in indefinite blocking For example, a blocking connect request can result in the requesting process to be suspended indefinitely if the connection is unfulfilled or cannot be fulfilled, perhaps as a result of a breakdown in the network. It is generally unacceptable for a requesting process to “hang” indefinitely. Indefinite blocking can be avoided by using timeout. Indefinite blocking may also be caused by a deadlock

Distributed Computing, M. L. Liu 20 Indefinite blocking due to a deadlock

Distributed Computing, M. L. Liu 21 Data Representation Data transmitted on the network is a binary stream. An interprocess communication system may provide the capability to allow data representation to be imposed on the raw data. Because different computers may have different internal storage format for the same data type, an external representation of data may be necessary. Data marshalling is the process of (I) flatterning a data structure, and (ii) converting the data to an external representation. Some well known external data representation schemes are: Sun XDR ASN.1 (Abstract Syntax Notation) XML (Extensible Markup Language)

Distributed Computing, M. L. Liu 22 Data Encoding Protocols

Distributed Computing, M. L. Liu 23 Sample XML file XML is a text-based markup language that is fast becoming the standard for data interchange on the Web. XML has syntax analogus to HTML. Unlike HTML, XML tags tell you what the data means, rather than how to display it. Example: XML Is Really Cool How many ways is XML cool? Let me count the ways...

Distributed Computing, M. L. Liu 24 Data Marshalling

Distributed Computing, M. L. Liu 25 Text-based protocols Data marshalling is at its simplest when the data exchanged is a stream of characters, or text. Exchanging data in text has the additional advantage that the data can be easily parsed in a program and displayed for human perusal. Hence it is a popular practice for protocols to exchange requests and responses in the form of character-strings. Such protocols are said to be text-based. Many popular network protocols, including FTP (File Transfer Protocol), HTTP, and SMTP (Simple Mail Transfer Protocol), are text-based.

Distributed Computing, M. L. Liu 26 Event diagram for a protocol session

Distributed Computing, M. L. Liu 27 Event Diagram for a HTTP session

Distributed Computing, M. L. Liu 28 Sequence Diagram

Distributed Computing, M. L. Liu 29 sequence diagram for a HTTP session

Distributed Computing, M. L. Liu 30 Protocol In a distributed application, two processes perform interprocess communication in a mutually agreed upon protocol. The specification of a protocol should include (i) the sequence of data exchange, which can be described using a time event diagram. (ii) the specification of the format of the data exchanged at each step.

Distributed Computing, M. L. Liu 31 HTTP: A sample protocol The Hypertext Transfer Protocol is a protocol for a process (the browser) to obtain a document from a web server process. It is a request/response protocol: a browser sends a request to a web server process, which replies with a response.

Distributed Computing, M. L. Liu 32 The Basic HTTP protocol

Distributed Computing, M. L. Liu 33 A sample HTTP session

Distributed Computing, M. L. Liu 34 IPC paradigms and implementations Paradigms of IPC of different levels of abstraction have evolved, with corresponding implementations.

Distributed Computing, M. L. Liu 35 Summary Interprocess communications (IPC) is the backbone of distributed computing. In this chapter we have looked at the principles of IPC, including the followings: What is interprocess communication? Unicast? Multicast? What is an IPC application programming interface (API) and what primitive operations does such an interface provide? Event synchronization: How do processes engaged in IPC synchronize or coordinate the send and receive operations? What role do blocking operations play in this regard?

Distributed Computing, M. L. Liu 36 Summary - 2 Data representation or encoding schemes: Why is data marshalling necessary? What are the two components involved in data marshalling? What are the different levels of abstraction in data encoding? What is meant by object serialization? What is the difference between connection- oriented and connectionless interprocess communications? Compare and contrast the two.

Distributed Computing, M. L. Liu 37 Summary - 3 What is an event diagram? How can it be used to describe the sequence of events and their synchronization in a protocol such as the HTTP? What is a sequence diagram? How can it be used to describe the sequence of events in a protocol such as the HTTP? What are the different levels of abstraction in IPC paradigms?