1 / 22

JINI Network Technology

JINI Network Technology. Palki Chakrabarti. JINI. Computer has been redefined The Traditional Expectation The New Paradigm Memory Memory Processor Processor

liza
Download Presentation

JINI Network Technology

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. JINI Network Technology Palki Chakrabarti

  2. JINI Computer has been redefined The Traditional Expectation The New Paradigm Memory Memory Processor Processor Disk(s) NO DISKS!! • Sun’s Technology, Jini is an attempt to rethink computer architecture with more emphasis on network and computer with no disk • These devices will need to interact over a dynamic network and devices and services will be added and removed regularly • Jini has grown from early work in Java to make distributed computing easier

  3. JINI • Provides mechanisms to enable smooth adding, removal, and finding of devices and services on the network • Provides a programming model for reliable, secure distributed services and makes it easier for programmers to get their devices talking to each other • The Java programming language is the key to making Jini technology work. Built on top of Java, object serialization, and Java Remote Method Invocation (RMI), it enables objects to move around the network from virtual machine to virtual machine. Jini attempts to extend the benefits of object-oriented programming to the network • Jini is written in pure Java but the clients and the services are not constrained to be in Java

  4. What is JINI? • Jini is a distributed computing network environment that offers, “Network plug and play” • Jini also supplies a middleware layer to link services and clients from a variety of sources • Jini is a set of APIs and network protocols that can help you build and deploy distributed systems that are organized as federations of services • Enable spontaneous networking • Simplify delivery of network services • Simplify access to network services

  5. Who Developed JINI? • Jim Waldo (CORBA, RMI, JavaSpaces) • Bill Joy (BSD Unix, SunOS) • Ken Arnold (JavaSpaces) • Ann Wollrath (Java RMI) • Bob Sheifler (X Window System)

  6. Benefits of JINI • Jini technology provides the possibility to composesystems to meet specific requirements rather than relying on a general-purpose system • Integration of any device to a more dynamic, less fixed and statically organized network and makes using a network more like using a phone • Lesser Network administration. -The total cost of ownership of a computer system declines as fewer system administrators are needed • Any Device or a Software could announce its presence and clients are able to locate them on the network and therefore allowing software and hardware components to more easily provide network services • Jini technology begins to bring together the realms of computing and home networks

  7. Limitations of JINI • Intended for workgroups of 2 -1000 nodes / services – intended for smaller LANs rather than the Internet • Within the Jini federation, there must be some agreement on notions of trust, identity, policy • Depends on Java/RMI or external mechanisms for security • Requires Java, 48KB of memory, although one can use similar methods to extend to other languages (Perl, Python etc) • Licensing • Evolving technology. API changes between 1.0 and 1.1 • Performance Sensitive • ……

  8. Key Concepts • Services • Lookup Services • Discovery and Join • Extended RMI • Leasing • Transactions • JavaSpaces • Distributed Security • Distributed Events

  9. Requirements of JINI • An infrastructure which operates as a dynamically distributed system • A common language and implementation that enables low-overhead communication between distributed objects • A lookup servicewhich identifies objects that supply those services • An add-in protocol which is implemented on each device—this is called the discovery/joinprotocol • A subtract-out mechanism—providing resilience when a device is unplugged which is called leasing

  10. Services • A service can be anything that sits on the network and is ready to perform a useful function. Hardware devices, software, communications channels – even human users themselves -- can be services • Services may be added or withdrawn from a Jini federation at any time • Jini provides mechanisms for service registration, lookup and use • Services communicate by using a service protocol = set of Java interfaces • Set of services is open-ended

  11. Lookup Services • Lookup Services are the central organizing mechanism for Jini-based systems and provide mapping of interfaces to objects. Lookup enables a client to query a lookup service for services that can help the client accomplish its goals • Hierarchical Lookup: Lookup service may include entry for other lookup services. When new services become available on the network, they register themselves with a lookup service • When clients wish to locate a service to assist with some task, they consult a lookup service • The runtime infrastructure uses one network-level protocol, called discovery, and two object-level protocols, called joinand lookup

  12. Discovery and Join • Discovery is the protocol by which Jini services register themselves with a lookup service • Discovery or Lookup is performed by doing a multicast (to find all lookup services) or unicast (when you know the machine on which the lookup service is running) lookup. Jini™ enabled Object (representing a hardware and/or software service) multicasts a packet with a reference to itself • The service receives RMI reference to Lookup service (one or more) • The service joins a federation by placing an object representing capabilities into the Lookup service for other clients and services to use for a period of time • Discovery enables clients and services to locate lookup services • Join enables a service to register itself in a lookup service

  13. Extended RMI • Communication among services uses Java RMI • Extended with leases • RMI provides • Activation • Distributed Garbage Collection • Multicast • Replication

  14. Leasing • A lease is a grant of guaranteed access over a time period. Each lease is negotiated between the user of the service and the provider of the service as part of the service protocol • A service is requested for some period; access is granted for some period, presumably taking the request period into account. Leases in term of duration (relative time) – lookup service needs to use resource to maintain registration – device failure can cause error in the available service log • If lease expires without renewal, user and provider can free associated resource • Leases handle client and network failures, removal of services… • Leases in Jini is self-healing. Exclusive lease says service cannot be shared

  15. Transactions • Partial failure in distributed systems is a nightmare • A series of operations, either within a single service or spanning multiple services, can be wrapped in a transaction • The Jini Transaction interfaces supply a service protocol needed to coordinate a two-phase commit – all results save in temporary storage – move from temporary to permanent storage • Insures changes made atomically- all or none • The very semantics of the notion of a transaction is left up to the service using the interfaces

  16. JavaSpaces The JavaSpaces technology is written in the Java languageand is a simple, fast and unified mechanism for dynamic communication, co-ordination and sharing of objects • In a distributed application, JavaSpaces technology acts as a virtual space between providers and requestors of network resources or objects • participants in a distributed solution can exchange tasks, requests information in the form of Java technology-based objects • JavaSpaces technology provides developers with the ability to create and store objects with persistence

  17. Distributed Security • The design of the security model for Jini technology is built on the twin notions of a principal and an access control list. • Jini services are accessed on behalf of some entity—the principal, which generally traces back to a particular user of the system. • Services themselves may request access to other services based on the identity of the object that implements the service. Whether access to a service is allowed depends on the contents of an access control list that is associated with the object. • Security plays an important role in distributed systems. The Jini security model is based on the JDK 1.2 security system.

  18. Distributed Events • Jini supports distributed events • An object may allow other objects to register interest in events in the object and receive a notification of the occurrence of such an event • Uses the Observer pattern and sensitive to network issues – delays, disruptions etc • Serializable and can be moved across a network • Most useful in observing service changes – lookup services going up or down etc • Enables distributed event-based programs to be written with a variety of reliability and scalability guarantees

  19. Jini Values • Consumers Plugging in networked devices and application software is as simple as plugging in a phone today • Service providers Simplifies management of application service delivery • Product manufacturers Opens entirely new markets (diagnostics, post-purchase upgrades and software enhancements, customer care) • Programmers Simplifies the task of writing distributed applications by freeing them from network topology

  20. Jini Example • A client program might upload pictures from the image storage service in a digital camera • Download the pictures to a persistent storage service offered by a disk drive • Send a page of thumbnail-sized versions of the images to the printing service of a color printer A Jini-enabled disk drive, for example, could offer a "storage" service. A Jini-enabled printer could offer a "printing" service. A federation ofservices, then, is a set of services, currently available on the network, that a client (meaning a program, service, or user) can bring together to help it accomplish some goal • In the example, the client program builds a distributed system consisting of itself, the image storage service, the persistent storage service, and the color-printing service

  21. Applications • Jini and Bluetooth Bluetooth is a wireless point to point networking specification intended for use in a Personal Area Network (PAN) such as cell-phones when they are within a short range. Jini could be used to help these devices locate and communicate with each other • Jini and Jiro Jiro is a middle layer of components and services which facilitate connectivity between managed resources and management applications. It runs on top of Jini

  22. Conclusion • Sun’s Jini technology provides open, end-to-end solutions for creating dynamically networked products, services, and applications that scale from devices to the enterprise. • Because Jini technology addresses problems that only some companies are experiencing, the requirement for this technology is not always readily apparent. For the increasing number of companies that are already hitting the problems of scale, component integration, and ad-hoc networking, especially in the financial, automotive, and telecommunications industries, Jini technology is the premier solution available today.

More Related