SlideShare a Scribd company logo
1 of 42
UNIT V : CASE STUDIES
Distributed Object Based System – CORBA –
Distributed File System – Sun NFS – Andrew
File System – Enterprise Java Beans – Fractals
– JINI.
DISTRIBUTED OBJECT BASED SYSTEM
*Distributed objects form an important paradigm because it
is relatively easy to hide distribution aspects behind an
object's interface.
*because an object can be virtually anything, it is also a
powerful paradigm for building systems.
Distributed Objects:
*The key feature of an object is that it encapsulates data,
called the state, and the operations on those data, called the
methods.
*Methods are made available through an interface. It is
important to understand that there is no "legal" way a
process can access or manipulate the state of an object
other than by invoking methods made available to it via an
object's interface.
*An object may implement multiple interfaces. Likewise,
given an interface definition, there may be several objects
that offer an implementation for it.
*The Client: When a client binds to a distributed object. An
implementation of the object’s interface, called a proxy, is
then loaded into the client's address space.
*A proxy is analogous to a client stub in RPC systems.
*The only thing it does is marshal method invocations into
messages and unmarshal reply messages to return the result
of the method invocation to the client.
*The actual object resides at a server machine, where it
offers the same interface as it does on the client machine.
*The Server: The server stub is also responsible for
marshaling replies and forwarding reply messages to the
client side proxy.
*The server-side stub is often referred to as a skeleton as it
provides the bare means for letting the server middleware
access the user-defined objects.
*The Common Object Request Broker Architecture (CORBA) is a
standard defined by the Object Management Group (OMG) that
enables software components written in multiple computer
languages and running on multiple computers to work together.
*CORBA is a standard for distributing objects across networks so
that operations on those objects can be called remotely.
*CORBA is not associated with a particular programming
language, and any language with a CORBA binding can be used
to call and implement CORBA objects.
*Objects are described in a syntax called Interface Definition
Language (IDL).
Architecture of COBRA:
*The object Request Broker (ORB) forms the core of any CORBA
distributed system.
*Horizontal facilities consists of general-purpose high-level services
that are independent of applications domain.
*User interface
*Information management
*System management
*Task management
*Vertical facilities consists of high-level services that are targeted to a
specific application domain such as electronic commerce, banking, and
manufacturing.
Object Model
*CORBA has a traditional remote object model in which an object
residing at an object server is remote accessible through proxies.
*All CORBA specifications are given by means of interface
descriptions, expressed in an Interface Definition Language (IDL).
*Object Request Broker (ORB): CORBA’s object broker that connects
clients, objects and services.
*Proxy/Skeleton: Precompiled code that takes care of (un) marshaling
invocations and results.
*Dynamic Invocation/Skeleton Interface (DII/DSI): To allow clients
to construct invocation requests at runtime instead of calling methods
at a proxy, and having the server side reconstruct those request into
regular method invocation.
*Object Adapter: Server side code that handles incoming invocation
requests.
*Interface Repository:
*Database containing interface definitions and which can be queried at
runtime.
*Whenever an interface definition is compiled, the IDL compiler assigns
a repository identifier to that interface.
*Implementation Repository:
*Database containing the implementation (code and possibly also state)
of objects.
*Given an object reference, an object adaptor could contact the
implementation repository to find out exactly what needs to be done.
*A Distributed File System (DFS) as the name suggests, is a file
system that is distributed on multiple file servers or multiple
locations.
*It allows programs to access or store isolated files as they do with
the local ones, allowing programmers to access files from any
network or computer.
*The main purpose of the Distributed File System (DFS) is to allow
users of physically distributed systems to share their data and
resources by using a Common File System.
DFS has two components:
*Location Transparency –
*Location Transparency achieves through the namespace component.
*Redundancy –
*Redundancy is done through a file replication component.
Features of DFS:
*Transparency
*Structure transparency
*Access transparency
*Naming transparency
*Replication transparency
*User mobility
*Performance
*Simplicity and ease of use
*High availability
*Scalability
*High reliability
*Data integrity
*Security
*Heterogeneity
Applications:
*NFS: NFS stands for Network File System. It is a client-server
architecture that allows a computer user to view, store, and update
files remotely. The protocol of NFS is one of the several distributed
file system standards for Network-Attached Storage (NAS).
*CIFS: CIFS stands for Common Internet File System. CIFS is an
accent of SMB.
*SMB: SMB stands for Server Message Block. It is a protocol for
sharing a file.
*The SMB protocol was created to allow computers to perform read
and write operations on files to a remote host over a Local Area
Network (LAN).
*Hadoop: Hadoop is a group of open-source software services. It
gives a software framework for distributed storage and operating of
big data using the MapReduce programming model.
*NetWare: Primarily used combined multitasking to run different
services on a personal computer, using the IPX network protocol.
Working of DFS:
*There are two ways in which DFS can be implemented:
*Standalone DFS namespace –
*It allows only for those DFS roots that exist on the local computer and are not
using Active Directory. Standalone DFS roots are rarely come across because of
their limited advantage.
*Domain-based DFS namespace –
*It stores the configuration of DFS in Active Directory, creating the DFS
namespace root accessible at <domainname><dfsroot> or <FQDN><dfsroot>
*NFS is a distributed file system protocol originally developed by
Sun Microsystems.
*NFSv2 was the standard protocol followed for many years, designed
with the goal of simple and fast server crash recovery.
*NFS allows a user on a client computer to access files from remote
server.
*NFS client and server communicate using Remote procedure Call.
*Stateful protocols -make things complicated when it
comes to crashes.
*Stateless protocols -protocols are designed so as to
not store any state information in the server.
*An EJB is essentially a Java object that is hosted by a special server
offering different ways for remote clients to invoke that object.
*Crucial is that this server provides the support to separate
application functionality from systems-oriented functionality.
*The important issue is that an EJB is embedded inside a container
which effectively provides interfaces to underlying services that are
implemented by the application server.
*The container can more or less automatically bind the EJB to these
services, meaning that the correct references are readily available to
a programmer.
*EJB is a server-side software element that summarizes business
logic of an application.
*Typical services include those for remote method invocation (RMI),
database access (JDBC), naming (JNDI), and messaging (JMS).
Making use of these services is more or less automated.
*To run EJB application, you need an application server (EJB
Container) such as Jboss, Glassfish, Weblogic, Websphere etc.
* It performs:
*life cycle management,
*security,
*transaction management,
*Object pooling.
When use Enterprise Java Bean?
*Application needs Remote Access. In other words, it is
distributed.
*Application needs to be scalable. EJB applications supports
load balancing, clustering and fail-over.
*Application needs encapsulated business logic. EJB
application is separated from presentation and persistent layer.
Types of EJBs
*Stateless session beans are transient objects that are invoked once,
does its work, after which it discards any information it maintains to
perform the service it offered to a client.
*Stateful session beans maintain client-related state.
*Entity beans can be considered to be a long-lived persistent object.
Such an entity bean will generally be stored in a database, and
likewise, will also be part of distributed transactions.
*Message-driven beans are used to program objects that should
react to incoming messages (and likewise, be able to send
messages). They cannot be invoked directly by a client, but rather
fit into a publish-subscribe way of communication.
RMI EJB
In RMI, middleware services such as
security, transaction management,
object pooling etc. need to be done by
the java programmer.
In EJB, middleware services are
provided by EJB Container
automatically.
RMI is not a server-side component. It
is not required to be deployed on the
server.
EJB is a server-side component, it
is required to be deployed on the
server.
RMI is built on the top of socket
programming.
EJB technology is built on the top
of RMI.
*FRACTAL (framework for distributed computing to trace large
accurate lineages) is a deep distributed computing framework that
reconstruct extremely large lineages of nucleotide sequences using a
software tool .
*From an input sequence pool, a given number of sequences
are first randomly subsampled (Step 1).
* Their sample lineage tree is reconstructed with a rooting or
provisional rooting sequence by lineage estimation software
of choice (Step 2).
*Each of the remaining input sequences is then mapped to its
most proximal branch of the sample tree by phylogenetic
placement (Step 3).
*If all of the input sequences are mapped on the downstream
branches of the sample tree to separate them into multiple
distinct clades, their upstream lineage is considered to be
resolved (Step 4),
*The sequence group in each downstream clade is recursively
subjected to the first process in a distributed computing node
(Step 5).
*If any sequences is mapped on the root branch, which does not
allow the grouping of input sequences into clades(Step 6).
*The remaining lineage is directly reconstructed using the
designated software, and the operation terminates for this
computing trajectory (Step 7).
*FRACTAL generates a hierarchy of expanding parallel
computing trajectories, where each distributed computing job
recursively generates a large set of successive jobs.
*Jini is a service-oriented architecture that defines a
programming model that both exploits and extends Java
technology.
*This programming model enables the construction of secure,
distributed systems consisting of federations of well-behaved
network services.
*Jini helps to build networks that are scalable and flexible,
which are required attributes in distributed computing
scenarios.
*Jini makes resources over a network look like local
resources.
*Jini may also be referred to as Apache River.
Jini Architecture:
The Jini architecture is divided into three main parts:
*Client: The user who accesses the resources shared over a network
*Server: The system to which the resources are attached
*Lookup Service: Services for resources such as printers, storage
devices and speakers, which are attached to the server and made
available to clients over the network.

More Related Content

Similar to UNIT V DIS.pptx

Hibernate interview questions
Hibernate interview questionsHibernate interview questions
Hibernate interview questionsvenkata52
 
OpenProdoc Overview
OpenProdoc OverviewOpenProdoc Overview
OpenProdoc Overviewjhierrot
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptxKaviya452563
 
Microx - A Unix like kernel for Embedded Systems written from scratch.
Microx - A Unix like kernel for Embedded Systems written from scratch.Microx - A Unix like kernel for Embedded Systems written from scratch.
Microx - A Unix like kernel for Embedded Systems written from scratch.Waqar Sheikh
 
Introduction To Corba
Introduction To CorbaIntroduction To Corba
Introduction To Corbarajianju
 
Distributed computing - november 2006
Distributed computing  - november 2006Distributed computing  - november 2006
Distributed computing - november 2006achraf_ing
 
Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.suranisaunak
 
Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11koolkampus
 
.net Based Component Technologies
.net Based Component Technologies.net Based Component Technologies
.net Based Component Technologiesprakashk453625
 
Ejb - september 2006
Ejb  - september 2006Ejb  - september 2006
Ejb - september 2006achraf_ing
 
Cloud foundry architecture and deep dive
Cloud foundry architecture and deep diveCloud foundry architecture and deep dive
Cloud foundry architecture and deep diveAnimesh Singh
 
DS R16 - UNIT-3.pdf
DS R16 - UNIT-3.pdfDS R16 - UNIT-3.pdf
DS R16 - UNIT-3.pdfVarshaBaini
 
CORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBACORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBAPriyanka Patil
 
Distributed objects & components of corba
Distributed objects & components of corbaDistributed objects & components of corba
Distributed objects & components of corbaMayuresh Wadekar
 
final-unit-ii-cc-cloud computing-2022.pdf
final-unit-ii-cc-cloud computing-2022.pdffinal-unit-ii-cc-cloud computing-2022.pdf
final-unit-ii-cc-cloud computing-2022.pdfSamiksha880257
 

Similar to UNIT V DIS.pptx (20)

Hibernate interview questions
Hibernate interview questionsHibernate interview questions
Hibernate interview questions
 
OpenProdoc Overview
OpenProdoc OverviewOpenProdoc Overview
OpenProdoc Overview
 
6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF6. The grid-COMPUTING OGSA and WSRF
6. The grid-COMPUTING OGSA and WSRF
 
Distributing computing.pptx
Distributing computing.pptxDistributing computing.pptx
Distributing computing.pptx
 
Microx - A Unix like kernel for Embedded Systems written from scratch.
Microx - A Unix like kernel for Embedded Systems written from scratch.Microx - A Unix like kernel for Embedded Systems written from scratch.
Microx - A Unix like kernel for Embedded Systems written from scratch.
 
Introduction To Corba
Introduction To CorbaIntroduction To Corba
Introduction To Corba
 
Distributed computing - november 2006
Distributed computing  - november 2006Distributed computing  - november 2006
Distributed computing - november 2006
 
dot NET Framework
dot NET Frameworkdot NET Framework
dot NET Framework
 
Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.Introduction Java Web Framework and Web Server.
Introduction Java Web Framework and Web Server.
 
Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11Distributed Systems Architecture in Software Engineering SE11
Distributed Systems Architecture in Software Engineering SE11
 
.net Based Component Technologies
.net Based Component Technologies.net Based Component Technologies
.net Based Component Technologies
 
Ejb - september 2006
Ejb  - september 2006Ejb  - september 2006
Ejb - september 2006
 
VB IMPORTANT QUESTION
VB IMPORTANT QUESTIONVB IMPORTANT QUESTION
VB IMPORTANT QUESTION
 
Cloud foundry architecture and deep dive
Cloud foundry architecture and deep diveCloud foundry architecture and deep dive
Cloud foundry architecture and deep dive
 
DS R16 - UNIT-3.pdf
DS R16 - UNIT-3.pdfDS R16 - UNIT-3.pdf
DS R16 - UNIT-3.pdf
 
CORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBACORBA Basic and Deployment of CORBA
CORBA Basic and Deployment of CORBA
 
Distributed objects & components of corba
Distributed objects & components of corbaDistributed objects & components of corba
Distributed objects & components of corba
 
final-unit-ii-cc-cloud computing-2022.pdf
final-unit-ii-cc-cloud computing-2022.pdffinal-unit-ii-cc-cloud computing-2022.pdf
final-unit-ii-cc-cloud computing-2022.pdf
 
Bsd ppt
Bsd pptBsd ppt
Bsd ppt
 
Ead pertemuan-7
Ead pertemuan-7Ead pertemuan-7
Ead pertemuan-7
 

More from SamPrem3

20IT501_DWDM_U5.ppt
20IT501_DWDM_U5.ppt20IT501_DWDM_U5.ppt
20IT501_DWDM_U5.pptSamPrem3
 
20IT501_DWDM_PPT_Unit_IV.ppt
20IT501_DWDM_PPT_Unit_IV.ppt20IT501_DWDM_PPT_Unit_IV.ppt
20IT501_DWDM_PPT_Unit_IV.pptSamPrem3
 
20IT501_DWDM_U3.ppt
20IT501_DWDM_U3.ppt20IT501_DWDM_U3.ppt
20IT501_DWDM_U3.pptSamPrem3
 
20IT501_DWDM_PPT_Unit_II.ppt
20IT501_DWDM_PPT_Unit_II.ppt20IT501_DWDM_PPT_Unit_II.ppt
20IT501_DWDM_PPT_Unit_II.pptSamPrem3
 
20IT501_DWDM_PPT_Unit_I.ppt
20IT501_DWDM_PPT_Unit_I.ppt20IT501_DWDM_PPT_Unit_I.ppt
20IT501_DWDM_PPT_Unit_I.pptSamPrem3
 
UNIT IV DIS.pptx
UNIT IV DIS.pptxUNIT IV DIS.pptx
UNIT IV DIS.pptxSamPrem3
 
UNIT III DIS.pptx
UNIT III DIS.pptxUNIT III DIS.pptx
UNIT III DIS.pptxSamPrem3
 
UNIT II DIS.pptx
UNIT II DIS.pptxUNIT II DIS.pptx
UNIT II DIS.pptxSamPrem3
 
UNIT I DIS.pptx
UNIT I DIS.pptxUNIT I DIS.pptx
UNIT I DIS.pptxSamPrem3
 

More from SamPrem3 (9)

20IT501_DWDM_U5.ppt
20IT501_DWDM_U5.ppt20IT501_DWDM_U5.ppt
20IT501_DWDM_U5.ppt
 
20IT501_DWDM_PPT_Unit_IV.ppt
20IT501_DWDM_PPT_Unit_IV.ppt20IT501_DWDM_PPT_Unit_IV.ppt
20IT501_DWDM_PPT_Unit_IV.ppt
 
20IT501_DWDM_U3.ppt
20IT501_DWDM_U3.ppt20IT501_DWDM_U3.ppt
20IT501_DWDM_U3.ppt
 
20IT501_DWDM_PPT_Unit_II.ppt
20IT501_DWDM_PPT_Unit_II.ppt20IT501_DWDM_PPT_Unit_II.ppt
20IT501_DWDM_PPT_Unit_II.ppt
 
20IT501_DWDM_PPT_Unit_I.ppt
20IT501_DWDM_PPT_Unit_I.ppt20IT501_DWDM_PPT_Unit_I.ppt
20IT501_DWDM_PPT_Unit_I.ppt
 
UNIT IV DIS.pptx
UNIT IV DIS.pptxUNIT IV DIS.pptx
UNIT IV DIS.pptx
 
UNIT III DIS.pptx
UNIT III DIS.pptxUNIT III DIS.pptx
UNIT III DIS.pptx
 
UNIT II DIS.pptx
UNIT II DIS.pptxUNIT II DIS.pptx
UNIT II DIS.pptx
 
UNIT I DIS.pptx
UNIT I DIS.pptxUNIT I DIS.pptx
UNIT I DIS.pptx
 

Recently uploaded

Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 

Recently uploaded (20)

Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 

UNIT V DIS.pptx

  • 1. UNIT V : CASE STUDIES Distributed Object Based System – CORBA – Distributed File System – Sun NFS – Andrew File System – Enterprise Java Beans – Fractals – JINI.
  • 2. DISTRIBUTED OBJECT BASED SYSTEM *Distributed objects form an important paradigm because it is relatively easy to hide distribution aspects behind an object's interface. *because an object can be virtually anything, it is also a powerful paradigm for building systems. Distributed Objects: *The key feature of an object is that it encapsulates data, called the state, and the operations on those data, called the methods. *Methods are made available through an interface. It is important to understand that there is no "legal" way a process can access or manipulate the state of an object other than by invoking methods made available to it via an object's interface.
  • 3. *An object may implement multiple interfaces. Likewise, given an interface definition, there may be several objects that offer an implementation for it.
  • 4. *The Client: When a client binds to a distributed object. An implementation of the object’s interface, called a proxy, is then loaded into the client's address space. *A proxy is analogous to a client stub in RPC systems. *The only thing it does is marshal method invocations into messages and unmarshal reply messages to return the result of the method invocation to the client. *The actual object resides at a server machine, where it offers the same interface as it does on the client machine.
  • 5. *The Server: The server stub is also responsible for marshaling replies and forwarding reply messages to the client side proxy. *The server-side stub is often referred to as a skeleton as it provides the bare means for letting the server middleware access the user-defined objects.
  • 6. *The Common Object Request Broker Architecture (CORBA) is a standard defined by the Object Management Group (OMG) that enables software components written in multiple computer languages and running on multiple computers to work together. *CORBA is a standard for distributing objects across networks so that operations on those objects can be called remotely. *CORBA is not associated with a particular programming language, and any language with a CORBA binding can be used to call and implement CORBA objects. *Objects are described in a syntax called Interface Definition Language (IDL).
  • 7. Architecture of COBRA: *The object Request Broker (ORB) forms the core of any CORBA distributed system. *Horizontal facilities consists of general-purpose high-level services that are independent of applications domain. *User interface *Information management *System management *Task management *Vertical facilities consists of high-level services that are targeted to a specific application domain such as electronic commerce, banking, and manufacturing.
  • 8. Object Model *CORBA has a traditional remote object model in which an object residing at an object server is remote accessible through proxies. *All CORBA specifications are given by means of interface descriptions, expressed in an Interface Definition Language (IDL). *Object Request Broker (ORB): CORBA’s object broker that connects clients, objects and services. *Proxy/Skeleton: Precompiled code that takes care of (un) marshaling invocations and results. *Dynamic Invocation/Skeleton Interface (DII/DSI): To allow clients to construct invocation requests at runtime instead of calling methods at a proxy, and having the server side reconstruct those request into regular method invocation. *Object Adapter: Server side code that handles incoming invocation requests.
  • 9.
  • 10. *Interface Repository: *Database containing interface definitions and which can be queried at runtime. *Whenever an interface definition is compiled, the IDL compiler assigns a repository identifier to that interface. *Implementation Repository: *Database containing the implementation (code and possibly also state) of objects. *Given an object reference, an object adaptor could contact the implementation repository to find out exactly what needs to be done.
  • 11. *A Distributed File System (DFS) as the name suggests, is a file system that is distributed on multiple file servers or multiple locations. *It allows programs to access or store isolated files as they do with the local ones, allowing programmers to access files from any network or computer. *The main purpose of the Distributed File System (DFS) is to allow users of physically distributed systems to share their data and resources by using a Common File System.
  • 12. DFS has two components: *Location Transparency – *Location Transparency achieves through the namespace component. *Redundancy – *Redundancy is done through a file replication component.
  • 13. Features of DFS: *Transparency *Structure transparency *Access transparency *Naming transparency *Replication transparency *User mobility *Performance *Simplicity and ease of use *High availability *Scalability *High reliability *Data integrity *Security *Heterogeneity
  • 14. Applications: *NFS: NFS stands for Network File System. It is a client-server architecture that allows a computer user to view, store, and update files remotely. The protocol of NFS is one of the several distributed file system standards for Network-Attached Storage (NAS). *CIFS: CIFS stands for Common Internet File System. CIFS is an accent of SMB. *SMB: SMB stands for Server Message Block. It is a protocol for sharing a file. *The SMB protocol was created to allow computers to perform read and write operations on files to a remote host over a Local Area Network (LAN). *Hadoop: Hadoop is a group of open-source software services. It gives a software framework for distributed storage and operating of big data using the MapReduce programming model. *NetWare: Primarily used combined multitasking to run different services on a personal computer, using the IPX network protocol.
  • 15. Working of DFS: *There are two ways in which DFS can be implemented: *Standalone DFS namespace – *It allows only for those DFS roots that exist on the local computer and are not using Active Directory. Standalone DFS roots are rarely come across because of their limited advantage. *Domain-based DFS namespace – *It stores the configuration of DFS in Active Directory, creating the DFS namespace root accessible at <domainname><dfsroot> or <FQDN><dfsroot>
  • 16. *NFS is a distributed file system protocol originally developed by Sun Microsystems. *NFSv2 was the standard protocol followed for many years, designed with the goal of simple and fast server crash recovery. *NFS allows a user on a client computer to access files from remote server. *NFS client and server communicate using Remote procedure Call. *Stateful protocols -make things complicated when it comes to crashes. *Stateless protocols -protocols are designed so as to not store any state information in the server.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31. *An EJB is essentially a Java object that is hosted by a special server offering different ways for remote clients to invoke that object. *Crucial is that this server provides the support to separate application functionality from systems-oriented functionality. *The important issue is that an EJB is embedded inside a container which effectively provides interfaces to underlying services that are implemented by the application server. *The container can more or less automatically bind the EJB to these services, meaning that the correct references are readily available to a programmer. *EJB is a server-side software element that summarizes business logic of an application.
  • 32.
  • 33. *Typical services include those for remote method invocation (RMI), database access (JDBC), naming (JNDI), and messaging (JMS). Making use of these services is more or less automated. *To run EJB application, you need an application server (EJB Container) such as Jboss, Glassfish, Weblogic, Websphere etc. * It performs: *life cycle management, *security, *transaction management, *Object pooling.
  • 34. When use Enterprise Java Bean? *Application needs Remote Access. In other words, it is distributed. *Application needs to be scalable. EJB applications supports load balancing, clustering and fail-over. *Application needs encapsulated business logic. EJB application is separated from presentation and persistent layer.
  • 35. Types of EJBs *Stateless session beans are transient objects that are invoked once, does its work, after which it discards any information it maintains to perform the service it offered to a client. *Stateful session beans maintain client-related state. *Entity beans can be considered to be a long-lived persistent object. Such an entity bean will generally be stored in a database, and likewise, will also be part of distributed transactions. *Message-driven beans are used to program objects that should react to incoming messages (and likewise, be able to send messages). They cannot be invoked directly by a client, but rather fit into a publish-subscribe way of communication.
  • 36. RMI EJB In RMI, middleware services such as security, transaction management, object pooling etc. need to be done by the java programmer. In EJB, middleware services are provided by EJB Container automatically. RMI is not a server-side component. It is not required to be deployed on the server. EJB is a server-side component, it is required to be deployed on the server. RMI is built on the top of socket programming. EJB technology is built on the top of RMI.
  • 37. *FRACTAL (framework for distributed computing to trace large accurate lineages) is a deep distributed computing framework that reconstruct extremely large lineages of nucleotide sequences using a software tool . *From an input sequence pool, a given number of sequences are first randomly subsampled (Step 1). * Their sample lineage tree is reconstructed with a rooting or provisional rooting sequence by lineage estimation software of choice (Step 2). *Each of the remaining input sequences is then mapped to its most proximal branch of the sample tree by phylogenetic placement (Step 3).
  • 38. *If all of the input sequences are mapped on the downstream branches of the sample tree to separate them into multiple distinct clades, their upstream lineage is considered to be resolved (Step 4), *The sequence group in each downstream clade is recursively subjected to the first process in a distributed computing node (Step 5). *If any sequences is mapped on the root branch, which does not allow the grouping of input sequences into clades(Step 6). *The remaining lineage is directly reconstructed using the designated software, and the operation terminates for this computing trajectory (Step 7). *FRACTAL generates a hierarchy of expanding parallel computing trajectories, where each distributed computing job recursively generates a large set of successive jobs.
  • 39.
  • 40. *Jini is a service-oriented architecture that defines a programming model that both exploits and extends Java technology. *This programming model enables the construction of secure, distributed systems consisting of federations of well-behaved network services. *Jini helps to build networks that are scalable and flexible, which are required attributes in distributed computing scenarios. *Jini makes resources over a network look like local resources. *Jini may also be referred to as Apache River.
  • 42. The Jini architecture is divided into three main parts: *Client: The user who accesses the resources shared over a network *Server: The system to which the resources are attached *Lookup Service: Services for resources such as printers, storage devices and speakers, which are attached to the server and made available to clients over the network.