IBM WebSphere eXtreme Scale 6

Anthony Chaves

eBook: $35.99
Formats: PDF, PacktLib, ePub and Mobi formats
$30.59 save 15%!
Print book: $59.99
$53.99 save 10%!
Print + eBook bundle: $95.98
Includes free access to the book on PacktLib
$59.39 save 38%!
Free Shipping! UK, US, Europe and selected countries in Asia.
This book can also be purchased from:
Overview
Table of Contents
The Author
Reviews
Downloads
  • Get hands-on experience with eXtreme Scale APIs, and understand the different approaches to using data grids
  • Introduction to new design patterns for both eXtreme Scale and data grids in general
  • Tutorial-style guide through the major data grid features and libraries
  • Start working with a data grid through code samples and clear walkthroughs

Book Details

Language : English
Paperback : 292 pages [ 235mm x 191mm ]
Release Date : November 2009
ISBN : 1847197442
ISBN 13 : 978-1-847197-44-3
Author(s) : Anthony Chaves
Topics and Technologies : All Books, Cloud, Enterprise, IBM

Back to BOOK PAGE

Table of Contents

Preface
Chapter 1: What is a Data Grid
Chapter 2: The ObjectMap API
Chapter 3: Entities and Queries
Chapter 4: Database Integration
Chapter 5: Handling Increased Load
Chapter 6: Keeping Data Available
Chapter 7: The DataGrid API
Chapter 8: Data Grid Patterns
Chapter 9: Spring Integration
Chapter 10: Putting It All Together
Index
  • Chapter 2: The ObjectMap API
    • Different kinds of maps
    • Get and put
    • Updating objects in the grid
      • Lock strategies
      • Lock types
    • Hash map refresher (or crash course)
    • Optimistic collisions
    • Deadlocks
    • Removing objects
    • FIFO queues
    • Unsupported methods
    • Wrapping up
    • Summary
  • Chapter 3: Entities and Queries
    • Entities
      • Defining Entities
      • Persisting Entities
      • Composition versus Inheritance
      • The Find methods
        • Entity life-cycle states
      • Merge, remove, and the detached state
    • Entity relationships
      • @OneToMany, @ManyToOne
      • schemaRoot
    • The Query API
      • Joins and aggregate functions
      • IDs and Indexes
    • Summary
  • Chapter 4: Database Integration
    • You're going where?
    • Where does an IMDG fit?
    • JPALoader and JPAEntityLoader
      • The Loader's job
      • Performance and referential integrity
    • Removal versus eviction
    • Write-through and write-behind
    • BackingMap and Loader
      • Picking battles
      • JPALoader
    • Summary
  • Chapter 5: Handling Increased Load
    • The building blocks
      • Shards and partitions
      • Client/Server ObjectGrid
    • A basic deployment
      • Starting a container
    • Connecting to a distributed grid
    • Adding more containers
    • Partition placement
    • Capacity planning
    • Hitting the wall
    • Summary
  • Chapter 6: Keeping Data Available
    • Containers, shards, partitions, and replicas
      • The foundation
      • Shards
      • Map sets
      • Partitions
      • Replication
    • Shard placement
      • Shard start-up
      • Lost shards and failover
    • Physical location
      • Controlled data separation
    • Preferred zones
    • Summary
  • Chapter 7: The DataGrid API
    • What does DataGrid do for me?
    • Borrowing from functional programming
      • GridAgent and Entity
      • GridAgent with an unknown key set
    • Aggregate results
      • Using ephemeral objects in agents
      • Updates with agents
      • Scheduling agents
    • Summary
  • Chapter 8: Data Grid Patterns
    • XTP: Extreme Transaction Processing
      • The data model
      • Schema root
    • Reference data and object duplication
      • How do we duplicate objects?
    • Time-to-live keeps us out of trouble
      • Early eviction
    • Rely on partitions, not the entire grid
      • One transaction, one node
      • Object schema denormalization
    • Summary
  • Chapter 9: Spring Integration
    • Injecting ObjectGrid instances
    • Spring-managed eXtreme Scale configuration
    • Transaction management
      • Basic configuration
      • ObjectGrid client configuration
      • Remembering our patterns
    • Summary
  • Chapter 10: Putting It All Together
    • The bookmarks app
      • The data model
      • The service layer
      • Storing data how it is used
      • Grid/ORM hybrid
      • Preloading data
      • Improving responsiveness
    • Caching more than ORM
    • Summary
Back to BOOK PAGE

Anthony Chaves

Anthony writes software for customers of all sizes. He likes building scalable, robust software. Customers have thrown all kinds of different development environments at him: Java, C, Rails, mobile device platforms – but no .NET (yet).

Anthony particularly likes user/device authentication problems and applied scalability practices. Cloud-computing buzzword bingo  doesn't fly with him. He started the Boston Scalability User Group in 2007.

Sample chapters

You can view our sample chapters and prefaces of this title on PacktLib or download sample chapters in PDF format.

Find your book in our support section to find errata and to download code samples.

What you will learn from this book

  • Explore different ways of interacting with data in the grid
  • Configure eXtreme Scale instances programmatically and via XML configuration files
  • Achieve extreme performance by using grid agents
  • Explore practical data grid usage patterns
  • Integrate a data grid and a database
  • Configure eXtreme Scale for long-term deployments through educated capacity planning
  • Configure an eXtreme Scale client application using Spring
  • Give your database a shock-absorber by putting a data grid in front of it
  • Support thousands of concurrent clients by adding capacity to the grid and scale out linearly
  • Protect your data by keeping it on multiple server racks and in multiple data centers
  • Explore the features of WebSphere eXtreme Scale by expanding the Entity and Query repertoire

Special Offers

PacktLib gives you access to this and 600+ other titles with an annual or monthly subscription.

Annual subscription:

$220.00 per annum

Monthly subscription:

$21.99 per month

Buy 2 eBooks
and Get 50% Off
+
Buy IBM WebSphere eXtreme Scale 6 with IBM WebSphere Application Server v7.0 Security and get 50% off both the eBooks.
Just add both the eBooks to your shopping cart and enter dibmeeb in the 'Enter Promotion Code' field. Click 'Add Promotion Code' and the discount will be applied.
View Best Selling eBook offers

In Detail

A data grid is a means of combining computing resources. Data grids provide a way to distribute object storage and add capacity on demand in the form of CPU, memory, and network resources from additional servers. All three resource types play an important role in how fast data can be processed, and how much data can be processed at once. WebSphere eXtreme Scale provides a solution to scalability issues through caching and grid technology. Working with a data grid requires new approaches to writing highly scalable software; this book covers both the practical eXtreme Scale libraries and design patterns that will help you build scalable software.

Starting with a blank slate, this book assumes you don't have experience with IBM WebSphere eXtreme Scale. It is a tutorial-style guide detailing the installation of WebSphere eXtreme Scale right through to using the developer libraries. It covers installation and configuration, and discusses the reasons why a data grid is a viable middleware layer. It also covers many different ways of interacting with objects in eXtreme Scale. It will also show you how to use eXtreme Scale in new projects, and integrate it with relational databases and existing applications.

This book covers the ObjectMap, Entity, and Query APIs for interacting with objects in the grid. It shows client/server configurations and interactions, as well as the powerful DataGrid API. DataGrid allows us to send code into the grid, which can be run where the data lives. Equally important are the design patterns that go alongside using a data grid. This book covers the major concepts you need to know that prevent your client application from becoming a performance bottleneck. By the end of the book, you'll be able to write software using the eXtreme Scale APIs, and take advantage of a linearly scalable middleware layer.

Web developers and Enterprise developers alike have a new tool for building high scalability into their software projects: the data grid.

Approach

This book is a real-world practical tutorial with lots of examples. The data grid concepts are clearly explained and code samples are provided. The concepts are applicable to all IMDGs, and the examples represent the eXtreme Scale approach to the problem.

Who this book is for

This book is aimed at intermediate-level JavaEE Developers who want to build applications that handle larger data sets with massive scalability requirements. No previous experience of WebSphere eXtreme Scale is required.

Are there no books available that are right for you at the moment? How about signing up to our newsletter to keep up to date?
Awards Voting Nominations Previous Winners
Judges Open Source CMS Hall Of Fame CMS Most Promising Open Source Project Open Source E-Commerce Applications Open Source JavaScript Library Open Source Graphics Software
Resources
Open Source CMS Hall Of Fame CMS Most Promising Open Source Project Open Source E-Commerce Applications Open Source JavaScript Library Open Source Graphics Software
Sort A-Z