Eclipselink Project

Total Page:16

File Type:pdf, Size:1020Kb

Eclipselink Project <Insert Picture Here> TopLink Grid: Scaling JPA applications with Coherence Shaun Smith—Principal Product Manager [email protected] Java Persistence: The Problem Space Customer <customer id=“…”> <name>…</name> id: int JAXB/SDO … name: String </contact-info> creditRating: int </customer> Java XML XR (XML- Relational) JPA CUST ID NAME C_RATING JPA: Java Persistence API Relational JAXB: Java Architecture for XML Binding SDO: Service Data Objects EclipseLink Project • JPA 2.0 Reference Implementation (JSR 317) • Provides JPA, JAXB, SDO, DBWS, and EIS persistence services • Open source Eclipse project • Founded by Oracle with the contribution of full Oracle TopLink source code and tests • Based upon product with 12+ years of commercial usage EclipseLink: Distributions • Eclipse.org • www.eclipse.org/eclipselink/downloads • Eclipse P2 & Maven repositories • Oracle • TopLink 11g • WebLogic Server 10.3 • GlassFish v3 • Replaces TopLink Essentials • JPA 2.0 Reference Implementation • Spring Source: Framework & Bundle Repo • JOnAS Application Server 5.1 • JEUS TmaxSoft EclipseLink JPA • Supports Java EE, Java SE, Web, Spring, and OSGi • Supports all leading RDMS with platform specific features • Best JPA for the Oracle Database—supporting advanced features • Extensible and pluggable • Key infrastructure: • Caching, Locking, Query Framework, Mapping, … • … plus many valuable advanced features JPA Performance • Mapping • Querying – Optimized Graph Loading: Join and Batch – Projections, Streaming, Range – Stored Procedures/Functions • Transactions – Minimal, Ordered, and Deferred Changes – Sequence pre-allocation • Caching – Cache reusable data and leverage in future operations Advanced Performance Features Minimal Writes, Updates Automatic change detection Batch Reading, Writing Caching policies and sizes SQL ordering Parameterized SQL (binding) Transformation support Pre-allocation of sequence Existence checks numbers Stored procedures Cache Coordination Statement Caching Optimistic, Pessimistic locking Scrolling cursors Joining object retrieval optimization Projection Queries In memory querying Fetch Groups Dynamic queries “Just in Time” reading AND MUCH MORE Example JPA Client Code … Mechanics of a JPA Application Step 1 Step 2 Step 3 Application Logic Application Logic Application Logic Create/ Modify Entities JPA JPA JPA Read Insert/ Entities Update Entities JPA with Cache TX n TX n+1 Application Logic Application Logic Cache hits JPA avoid object build cost ReadTX Commit Entities Scaling Java Persistence Java Scaling Application Application JPA Application Application Application Application Application JPA Application Application Application . Application Application JPA Application Application Application EclipseLink in a Cluster Application Logic Application Logic EntityManager EntityManager Persistence Persistence Context Context EntityManagerFactory EntityManagerFactory Need to keep Shared Shared Caches Shared Cache Coherent Cache Traditional Approaches to Scaling JPA • Historically there have been two strategies for scaling EclipseLink JPA applications into a cluster: • Disable Shared Caching • No shared cache • Always Refresh • Cache Coordination • Communicate changes via messaging Strategy 1: Disable Shared Cache Application Logic Application Logic EntityManager EntityManager Persistence Persistence Context Context EntityManagerFactory EntityManagerFactory Disable Shared Cache • Ensures all nodes have coherent view of data. • Database is always right • Each transaction queries all required data from database and constructs Entities • No inter-node messaging • Memory footprint of application increases as each transaction has a copy of each required Entity • Every transaction pays object construction cost for queried Entities. • Database becomes bottleneck Strategy 2: Cache Coordination Application Logic Application Logic EntityManager EntityManager Persistence Persistence Context Context EntityManagerFactory EntityManagerFactory Shared Cache Shared Cache Coordination Cache Cache Coordination • Minimize stale entity caching across loosely coupled nodes. • Database is always right • Optimistic locking prevents corruption • Fresh Entities retrieved from shared cache • Stale Entities refreshed from database on access • Creation and/or modification of Entity results in message to all other nodes • Shared cache size limited by heap of each node • Cost of coordinating depends on messaging technology and application • cost of communication and processing may eventually exceed value of caching Extending EclipseLink’s Cache • EclipseLink provides out of box support for – Object caching: Shared, Isolated, Transactional – Cache Coordination • EclipseLink’s Caching and Querying extension points – Cache Interceptors – Query Redirectors • EclipseLink can be extended to support 3rd party grid caching solutions Introducing TopLink Grid • TopLink Grid allows Java developers to transparently leverage the power of the Coherence data grid • TopLink Grid combines: • the simplicity of application development using the Java standard Java Persistence API (JPA) with • the scalability and distributed processing power of Oracle’s Coherence Data Grid. • Supports 'JPA on the Grid' Architecture • EclipseLink JPA applications using Coherence as a shared (L2) cache replacement along with configuration for more advanced usage Oracle TopLink 11gR1 • Oracle’s Enterprise Java Persistence Framework • Includes open source EclipseLink with Commercial Support • Certified on WebLogic and redistributed by Oracle as part of TopLink product and in WebLogic Server and Oracle GlassFish • TopLink Grid: JPA integration with Coherence • Tooling Support in JDeveloper and Eclipse TopLink Grid with Coherence Cache Application Logic Application Logic EntityManager EntityManager Persistence Persistence Context Context EntityManagerFactory EntityManagerFactory Coherence Oracle Coherence Data Grid Distributed in Memory Data Management • Provides a reliable data Enterprise Real Time Web tier with a single, Applications Clients Services consistent view of data Data Services • Enables dynamic data capacity including fault Oracle Coherence tolerance and load Data Grid balancing • Ensures that data capacity scales with processing capacity Databases Mainframes Web Services Coherence Topology Example Distributed Topology • Data spread and backed up across Members • Transparent to developer • Members have access to all Data • All Data locations are known – no lookup & no registry! 23 Coherence Update Example Distributed Topology • Synchronous Update • Avoids potential Data Loss & Corruption • Predictable Performance • Backup Partitions are partitioned away from Primaries for resilience • No engineering requirement to setup Primaries or Backups • Automatically and Dynamically Managed 24 Coherence Recovery Example Distributed Topology • No in-flight operations lost • Some latencies (due to higher priority of recovery) • Reliability, Availability, Scalability, Performance are the priority • Degrade performance of some requests 25 JPA with Coherence Cluster Node 1 Cluster Node N Application Logic Application Logic . JPA JPA Coherence ReadTX Commit Entities TopLink Grid—Configurations • Grid Cache—Coherence as Shared (L2) Cache • Configurable per Entity type • Entities read by one grid member are put into Coherence and are immediately available across the entire grid • Grid Read • All supported read queries executed in the Coherence data grid • All writes performed directly on the database by TopLink (synchronously) and Coherence updated • Grid Entity • All supported read queries and all writes are executed in the Coherence data grid Grid Cache ('Cache Aside') • Reading: • Primary Key queries check JPA Application Coherence first. • If found in Coherence, Entity is returned. PK • If not found the database is Query queried. • Entities queried from database Insert/ are put() into Coherence and Update/ Query returned to the application. Delete • Writing: • All inserts, updates, and deletes are directed to the database • On successful commit, Coherence is updated Grid Cache—Leveraging Cache • Cache is used when processing database results • EclipseLink extracts primary keys from results and checks cache to avoid object construction. • Even if a SQL query is executed, an object cache can still improve application throughput by eliminating object construction costs for cached Entities Grid Read • All writes performed directly JPA Application on database. • Primary key queries result in get() on Coherence • JPQL queries, e.g., Select e from Employee E Query are translated to Filters and executed in Coherence • CacheLoaders should be configured to query database with PK query on cache miss Insert/ Update/ PK Delete Query Grid Entity—Reading • Primary key queries result in JPA Application get() on Coherence • JPQL queries, e.g., Select e from Employee E are translated to Filters and executed in Coherence Query • The database is not queried by EclipseLink. CacheLoaders may be PK configured to query Query database with PK query on cache miss Grid Entity—Writing • Applications commit JPA JPA Application transactions with new, deleted, or modified Entities • EclipseLink put()s all new and updated Entities into Put/ Coherence and remove()s Remove deleted Entities. CacheStores may be configured to write cache changes to the database using TopLink Grid Insert/ Update/ Delete Grid Enabling JPA Entities • A single annotation is added to an Entity to enable Coherence usage, e.g.,
Recommended publications
  • Jboss EAP 6 ( Enterprise Application Platform)
    Red Hat JBoss EAP 6 ( Enterprise Application Platform) Cloud Computing - Disruptive Mainframe Client/Server web Cloud Shift Mainframe Scale Up Scale Out Elastic scaling 1960 1980 Disruption 2000 2010 2020 Red Hat, Inc. | 2013 | All Rights Reserved 2 Red Hat, Inc. | 2013 | All Rights Reserved 3 오픈 소스가 선도하는 IT 분야 Linux 와 Windows 만 생존 클라우드 Source: IDC #236428, August 2012 - Worldwide Client 세계최대의 읶터넷 서비스 업 and Server Operating Environments Market Analysis and 2012-2016 Forecast and 2011 Vendor Shares: 체들은 오픈소스를 홗용 14,000 12,000 10,000 44% Windows 8,000 Linux Unix 6,000 Other Mainframe 4,000 2,000 0 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 앆드로이드 점유율이 70% 오픈소스 브라우저 점유율 (국내) (젂세계 ) 33.8% 32% 23.7% 57.5% Source: IDC’s report on the 59% mobile market for 1Q 2012 Source: StatCounter2011 Red Hat, Inc. | 2013 | All Rights Reserved 4 Red Hat, Inc. | 2013 | All Rights Reserved 5 개방형 표준 vs. 독점적 표준 폐쇄적으로 '독점'하는 것을 반대하고, 개방적으로 '표준'이 되는 것을 홖영 표준이란 특정 영역에 참여하고 있는 모든 참여자로부터 동의된 것으 로서 정의 소프트웨어를 개발하고 사용하는데 있어서 표준은 매우 기본적이면서 도 중요한 역할 • 특정인에 의해 소유된 표준으로서 다른 사람은 이 표준에 대한 접귺과 통제가 제한 • 빠른 시갂에 기능만을 구축하려는 노력 때문에 독자적인 표준과 기술을 가짂 벤더의 솔 루션을 도입하는 경우 독점적 표준 • 특정 벤더의 제품 로드맵에 따라 기업의 IT 구현이나 개선을 맞추어야 함 • 특정한 독점적 표준을 다를 줄 아는 기술 인력 확보가 용이하지 않을 수 있기 때문에 이 부분에 대한 비용 부담이 증가 • 개방형 표준은 모든 사람이 자유롭게 접귺할 수 있고 무료로 사용 • 개방형 표준은 특정 작업 수행 시 공개적으로 사용할 수 있는 명세 개방형 표준 • 개방형 아키텍처는 제품 및 애플리케이션이 더 쉽고 비용 효율적으로 통합 지원 • 개방형 아키텍처는 제품 및 애플리케이션이 더 쉽게 통합 • 개방 표준은 시스템의 상호 운용성, 유연성 및 다양한 제품 선택의 폭이 넓음 출처: - 기업 IT에 있어서 개방형 표준의 중요성http://www.bloter.net/archives/3932 Red Hat, Inc.
    [Show full text]
  • JENNIFER V5 Brochure
    ® USING JENNIFER OF THE BENEFITS Integrated Performance Monitoring JENNIFER provides comprehensive and integrated performance monitoring through its many dashboard views, which include Real- user Monitoring and Real-time Topology. Service Availability Fast Problem Troubleshooting JENNIFER analyzes statistical JENNIFER’s continuous monitoring helps with data regarding system resources, rapid detection and troubleshooting of perfor- application performance and errors mance problems. That can help prevent the with a view to achieving continuous problems from affecting service availability later. and optimal service availability. Improved Customer Satisfaction Minimizing system downtime and improving overall performance at the application and system levels greatly improves customer satisfaction. APPLICATION MANAGEMENT PERFORMANCE PERFORMANCE Monitor Application Performance Intelligently with JENNIFER. JENNIFER is a performance management solution for monitoring and analyzing performance at each stage of the lifecycle: development, testing, launch, operations, and stabilization of applications. It has powerful features such as real-time monitoring of services and resources, performance and fault analysis, reporting, etc. Real-time monitoring and X-View help clients to handle application management tasks more quickly and efficiently. Application Performance Management (APM)? Application Performance Management (APM) is a system management methodology that focuses on monitoring and managing application software performance and service utilization. It includes real user monitoring, deep dive application component monitoring, transaction monitoring, and analytics. It is a critical function managed by DevOps, IT operation, application teams, develop- ers, support teams, business managers, and other application professionals. JENNIFER’s topology view is a key feature enabling visualization of Web systems across the whole enterprise. JENNIFER provides effec- tive monitoring of the Web application server (WAS) in a black box fashion.
    [Show full text]
  • Installation Guide for JEUS Windows
    Installation Guide for JEUS Windows Appeon® for PowerBuilder® 2015 Windows FOR WINDOWS DOCUMENT ID: ADC00806-01-0700-01 LAST REVISED: October 08, 2014 Copyright © 2000-2014 by Appeon Corporation. All rights reserved. This publication pertains to Appeon software and to any subsequent release until otherwise indicated in new editions or technical notes. Information in this document is subject to change without notice. The software described herein is furnished under a license agreement, and it may be used or copied only in accordance with the terms of that agreement. No part of this publication may be reproduced, transmitted, or translated in any form or by any means, electronic, mechanical, manual, optical, or otherwise, without the prior written permission of Appeon Corporation. Appeon, the Appeon logo, Appeon Developer, Appeon Enterprise Manager, AEM, Appeon Server and Appeon Server Web Component are registered trademarks of Appeon Corporation. Sybase, Adaptive Server Anywhere, Adaptive Server Enterprise, iAnywhere, PowerBuilder, Sybase Central, and Sybase jConnect for JDBC are trademarks or registered trademarks of Sybase, Inc. Java and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. All other company and product names used herein may be trademarks or registered trademarks of their respective companies. Use, duplication, or disclosure by the government is subject to the restrictions set forth in subparagraph (c)(1)(ii) of DFARS 52.227-7013 for the DOD and as set forth in FAR 52.227-19(a)-(d) for civilian agencies. Appeon Corporation, 1/F, Shell Industrial Building, 12 Lee Chung Street, Chai Wan District, Hong Kong. Contents 1 About This Book .................................................................................................... 1 1.1 Audience .....................................................................................................
    [Show full text]
  • JEUS Web Container 안내서
    JEUS Web Container 안내서 JEUS v6.0 Fix#8 Copyright © 2011 TmaxSoft Co., Ltd. All Rights Reserved. Copyright Notice Copyright © 2011 TmaxSoft Co., Ltd. All Rights Reserved. 대한민국 경기도 성남시 분당구 서현동 272-6 우) 463-824 Restricted Rights Legend All TmaxSoft Software (JEUS®) and documents are protected by copyright laws and the Protection Act of Com puter Programs, and international convention. TmaxSoft software and documents are made available under the terms of the TmaxSoft License Agreement and may only be used or copied in accordance with the terms of this agreement. No part of this document may be transmitted, copied, deployed, or reproduced in any form or by any means, electronic, mechanical, or optical, without the prior written consent of TmaxSoft Co., Ltd. 이 소프트웨어(JEUS®) 사용설명서의 내용과 프로그램은 저작권법, 컴퓨터프로그램보호법 및 국제 조약에 의해 서 보호받고 있습니다. 사용설명서의 내용과 여기에 설명된 프로그램은 TmaxSoft Co., Ltd.와의 사용권 계약 하에 서만 사용이 가능하며, 사용권 계약을 준수하는 경우에만 사용 또는 복제할 수 있습니다. 이 사용설명서의 전부 또 는 일부분을 TmaxSoft의 사전 서면 동의 없이 전자, 기계, 녹음 등의 수단을 사용하여 전송, 복제, 배포, 2차적 저 작물작성 등의 행위를 하여서는 안 됩니다. Trademarks JEUS® is registered trademark of TmaxSoft Co., Ltd. Other products, titles or services may be registered trademarks of their respective companies. JEUS®는 TmaxSoft Co., Ltd.의 등록 상표입니다. 기타 모든 제품들과 회사 이름은 각각 해당 소유주의 상표로서 참조용으로만 사용됩니다. Open Source Software Notice This product includes open source software developed and/or licensed by "OpenSSL", "RSA Data Security, Inc.", "Apache Foundation", and "Jean-loup Gailly and Mark Adler".
    [Show full text]
  • Overview of Glassfish
    Overview of GlassFish Eduardo Pelegri-Llopart, Distinguished Engineer Sun Microsystems, Inc Title Company Name SessioUn IRD L of Company or Project 1 GlassFish Overview Agenda ● JavaEE 5 ● GlassFish Community ● GlassFish v2 ● Other Projects in the Community ● Adoption ● Futures 2 GlassFish Overview For More Information ● http://blogs.sun.com/theaquarium ● http://blogs.sun.com/stories ● http://glassfish.java.net 3 GlassFish Overview A Taste of Java EE 5 4 GlassFish Overview J2EE 1.4 ● J2EE is enormously powerful ● The industry standard for robust enterprise apps ● But that power sometimes gets in the way ● Too difficult to get started ● Even simple apps need boring boilerplate ● Can we keep the power… but make typical development tasks simpler? ● YES… and that is the focus of Java EE 5! 5 GlassFish Overview Java EE 5.0 = (J2EE 1.4).next ● Java EE 5 Theme: Ease of Development ● POJO-based programming ● More freedom, fewer requirements ● Extensive use of annotations ● Reduced need for deployment descriptors ● Annotations are the law ● Resource Injection ● New APIs and frameworks 6 GlassFish Overview Specification Changes in Java EE 5 ● JAX-WS 2.0 & JSR 181 ● Java Persistence ● EJB 3.0 ● JAXB 2.0 ● JavaSever Faces 1.2 – new to Platform ● JSP 2.1 – Unification w/ JSF 1.2 ● StAX – Pull Parser – new to Platform 7 GlassFish Overview <?xml version='1.0' encoding='UTF-8' ?> <webservices xmlns='http://java.sun.com/xml/ns/j2ee' version='1.1'> Using JAX-RPC 1.1 <webservice-description> <webservice-description-name> package endpoint; HelloService</webservice-description-name>
    [Show full text]
  • The Scrabble Player's Handbook Is Available for Free Download At
    The Scrabble Player's Handbook is available for free download at www.scrabbleplayershandbook.com 1 Contents Introduction 3 Meet The Team 5 What's Different About Competitive Scrabble? 10 How To Play Good Scrabble 11 The Words 14 What Is Scrabble? 16 Scoring Well 21 Understanding Rack Leaves 32 Word Learning 35 The First Move 46 Tile Tracking 50 Time Management 54 Exchanging 58 Phoneys 64 Set-Ups 65 Open and Closed Boards 68 The Endgame 75 Playing Style 85 How To Play Amazing Scrabble 94 The Luck Element 98 The Game Behind The Game 99 Starting Out in Competitive Play 101 Quackle 103 Zyzzyva 109 Internet Scrabble Club 115 Aerolith 117 Scrabble by Phone 119 Books 121 Scrabble Variants 123 Scrabble Around The World 125 Playing Equipment 127 Glossary 128 Appendix 133 Rules Governing Word Inclusion 133 Two-letter words 137 Three-letter words 140 SCRABBLE® is a registered trademark. All intellectual property rights in and to the game are owned in the U.S.A. by Hasbro Inc., in Canada by Hasbro Canada Inc. and throughout the rest of the world by J.W. Spear & Sons Ltd. of Maidenhead SL6 4UB, England, a subsidiary of Mattel Inc. Mattel and Spear are not affiliated with Hasbro or Hasbro Canada. The Scrabble Player's Handbook is available free of charge. There is no copyright on the contents and readers are encouraged to distribute the book in PDF or printed form to all who would benefit from it. Please respect our work by retaining the footer on every page and by refraining from reproducing any part of this book for financial gain.
    [Show full text]
  • Measures Summary.Pdf
    Measurements made by eG Agents Measurements made by eG Agents Type Details Measurements • System CPU and memory statistics such as CPU utilization, run queue length, Solaris 7.0 or higher, Red Hat blocked processes, swap memory in use, and available free memory; Linux 6.0, AIX 4.3.3 or 5.x or 6.1 or 7, HP-UX 11, Free BSD • Disk statistics including percentage utilization of partitions, read and write rates 5.4, Tru64 5.1, Windows Vista, on each physical disk, percentage busy, request queue length; Windows 2008, Windows 7, • Network traffic statistics including packet rate to and from the different network Windows 8, Windows 10, interfaces, bandwidth in and out of each of the interfaces (Windows only); Windows 2012, Windows • 2016,Windows 2019 TCP statistics such as incoming and outgoing connection rate, current connections, connection drop rate, etc.; • Monitoring of devices accessible via the server, which include the current status of a device and the number of errors encountered by the device; • Monitoring of storage areas on the server, including tracking the storage area size, used space, and percentage utilization, etc.; Operating systems that • System monitoring to determine the users currently logged in to the server and support the HOST Resources the total number of processes that are running; Tracking CPU usage on the MIB server; • Process monitoring including tracking whether a specific process is running or not and its memory utilization; • TCP connection monitoring including number of currently established connections, failed
    [Show full text]
  • Web Server Configuration Guide
    Web Server Configuration Guide Appeon® PowerServer® 2017 FOR WINDOWS & UNIX & LINUX DOCUMENT ID: ADC50000-01-0700-01 LAST REVISED: October 27, 2017 Copyright © 2000-2017 by Appeon Limited. All rights reserved. This publication pertains to Appeon software and to any subsequent release until otherwise indicated in new editions or technical notes. Information in this document is subject to change without notice. The software described herein is furnished under a license agreement, and it may be used or copied only in accordance with the terms of that agreement. No part of this publication may be reproduced, transmitted, or translated in any form or by any means, electronic, mechanical, manual, optical, or otherwise, without the prior written permission of Appeon Limited. Appeon, the Appeon logo, Appeon PowerBuilder, Appeon PowerServer, PowerServer, PowerServer Toolkit, AEM, and PowerServer Web Component are trademarks of Appeon Limited. SAP, Sybase, Adaptive Server Anywhere, SQL Anywhere, Adaptive Server Enterprise, iAnywhere, Sybase Central, and Sybase jConnect for JDBC are trademarks or registered trademarks of SAP and SAP affiliate company. Java and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. All other company and product names used herein may be trademarks or registered trademarks of their respective companies. Use, duplication, or disclosure by the government is subject to the restrictions set forth in subparagraph (c)(1)(ii) of DFARS 52.227-7013 for the DOD and as set forth in FAR 52.227-19(a)-(d) for civilian agencies. Appeon Limited, 1/F, Shell Industrial Building, 12 Lee Chung Street, Chai Wan District, Hong Kong. Contents 1 About This Book ...................................................................................................
    [Show full text]
  • GF V2 Overview
    11:05-12:00 – GF v2 Overview - Karen & Eduardo 12:00-1 – Rich & Jonathan 1-1:30 – Lunch Break 1:30-2:25 - GF in Real Life - Peerflix, Wotif, Harvard U 1:30-2:25 - jMaki, Scripting - (web 2.0 track) 2:35-3:30 – GF Partners - Interface21, Caucho, Terracotta, Genuitec 4:00-4:55 – on your own... 5:05-6:00 – Gfv3 and OpenDS/OpenID 6:00-7:30 – Reception 1 CommunityOne 2007 | Session XXXX | Demo Stations Partner Stations ● OpenDS/SSO/ID ● Interface21 (Spring) ● jMaki/Phobos/GFv3 ● Genuitec (myEclipse) ● OpenESB ● RedHat (Jboss/JSF) ● OpenPortal ● Jvantage ● GFv2 Admin/Monitoring ● Webtide (Jetty) ● GFv2 Clustering ● Caucho (Quercus/PHP) 2 CommunityOne 2007 | Session XXXX | Welcome to GlassFish Day and Overview of GlassFish v2 Karen Tegan Padir Eduardo Pelegri-Llopart, Sun Microsystems, Inc Title Company Name Session ID 3 CommunityOne 2007 | Session XXXX | Agenda ● Welcome and Introductions ● JavaEE 5 ● GlassFish Community ● GlassFish v2 ● Previews of Next Sessions ● The Rich and Jonathan Show... 4 CommunityOne 2007 | Session XXXX | Karen Tegan Padir VP, Java Enterprise Software Sun Microsystems, Inc. 5 CommunityOne 2007 | Session XXXX | Eduardo Pelegri-Llopart Distinguished Engineer Sun Microsystems, Inc. 6 CommunityOne 2007 | Session XXXX | Eduardo Pelegri-Llopart Distinguished Engineer Sun Microsystems, Inc. 7 CommunityOne 2007 | Session XXXX | For More Information ● http://blogs.sun.com/theaquarium ● http://blogs.sun.com/stories ● http://glassfish.java.net 8 CommunityOne 2007 | Session XXXX | Timeline of Project GlassFish Tomcat Jasper Catalina
    [Show full text]
  • The Glassfish Community Delivering a Java EE Application Server
    The GlassFish Community: An Overview The GlassFish Community Delivering a Java EE Application Server Eduardo Pelegri-Llopart Yutaka Yoshida Alexis Moussine-Pouchkine Sun Microsystems, Inc. http://blogs.sun.com/theaquarium Last Updated September 2007 The GlassFish Community 1 At JavaOne 2005, Sun announced Project GlassFish, an initiative to open source its Application Server and the Java EE Reference Implementation (see inset: Project GlassFish). This was the first step of open sourcing all the Java platform, but it also had other effects. Project GlassFish Project GlassFish accelerated the adoption of Java EE 5, added a new enterprise-quality App Server Sun launched Project GlassFish to the options available to the Open Source in June 2005, during JavaOne, to community, and has lead to a Open Source the Reference transformation of how Sun's AppServer is Implementation for Java EE 5 and developed, tested, made available, and Sun's Application Server. evolved, in the process creating a much The first release followed less better product. than a year after, at JavaOne 2006 A year and a half after the initial launch, the (May 2006). GlassFish community has already delivered The second release was released its first final release and is on its way to its in September 2007. second. In this article we will provide an overview of all the aspects of the GlassFish The focus is now on GlassFish v3, Community and the GlassFish AppServer. the modular and lightweight application server (see HK2). What is GlassFish GlassFish is a Community and an Application Server. The community's main deliverables are a Java EE 5 compatible Application Server, the GlassFish AppServer, and the Reference Implementation for the Java Persistence API, TopLink Essentials.
    [Show full text]
  • What's New in Eg Enterprise V7
    Total Performance Visibility Release Overview Document eginnovations.com/whats-new Introducing eG Enterprise v7 User experience is top of mind for IT executives in today’s application-centric world. Monitoring just the resource usage of applications and utilization levels of infrastructure 73% of businesses elements is not enough any longer. In today’s digital era, organizations must take a report that slow application holistic perspective of user experience: performance and poor user experience cause productivity losses • Clearly, the availability of an organization’s key IT services and their response times to end users is a key measure of user experience. At the same time, these two metrics alone - Kissmetric Survey cannot guarantee great user experience. • The degree of proactiveness of an organization also contributes to user experience. The more proactive an organization is, the fewer problems that users notice and hence, better the user experience. • The reliability of IT services is another key metric. When a service goes down, how long does it take for the organization to bring it back up to normalcy? The mean time to repair and frequency of such outages also contribute to user experience. The more accurate the diagnosis and faster the resolution, the better is the user experience. • As the workload of a service changes, the IT organization must make sure that the user perceived quality of service remains good. Proactive capacity planning plays a key role in this. Therefore, organizations need to take a 360° view of user experience and make it a central component of their IT monitoring strategy. This is true irrespective of the type of applications being used by the business – whether digital workspaces (Citrix, 98% user VMware Horizon), web applications (Java, .NET, etc.), packaged enterprise applications experience problems rely (SharePoint, SAP, etc.), or SaaS applications (Office 365, Salesforce, etc.).
    [Show full text]
  • What's New in Eg Enterprise V7
    Total Performance Visibility Release Overview Document eginnovations.com/whats-new Introducing eG Enterprise v7 User experience is top of mind for IT executives in today’s application-centric world. Monitoring just the resource usage of applications and utilization levels of infrastructure 73% of businesses elements is not enough any longer. In today’s digital era, organizations must take a report that slow application holistic perspective of user experience: performance and poor user experience cause productivity losses • Clearly, the availability of an organization’s key IT services and their response times to end users is a key measure of user experience. At the same time, these two metrics alone - Kissmetric Survey cannot guarantee great user experience. • The degree of proactiveness of an organization also contributes to user experience. The more proactive an organization is, the fewer problems that users notice and hence, better the user experience. • The reliability of IT services is another key metric. When a service goes down, how long does it take for the organization to bring it back up to normalcy? The mean time to repair and frequency of such outages also contribute to user experience. The more accurate the diagnosis and faster the resolution, the better is the user experience. • As the workload of a service changes, the IT organization must make sure that the user perceived quality of service remains good. Proactive capacity planning plays a key role in this. Therefore, organizations need to take a 360° view of user experience and make it a central component of their IT monitoring strategy. This is true irrespective of the type of applications being used by the business – whether digital workspaces (Citrix, 98% user VMware Horizon), web applications (Java, .NET, etc.), packaged enterprise applications experience problems rely (SharePoint, SAP, etc.), or SaaS applications (Office 365, Salesforce, etc.).
    [Show full text]