Book Image

IBM WebSphere eXtreme Scale 6

By : Anthony Chaves
Book Image

IBM WebSphere eXtreme Scale 6

By: Anthony Chaves

Overview of this book

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.
Table of Contents (15 chapters)
IBM WebSphere eXtreme Scale 6
Credits
About the Author
About the Reviewers
Preface

Entity relationships


The Payment class holds a little too much information. Namely, it holds address information and that address data should exist in its own class. Each payment has address data associated with it. This is where we discover Entity relationships.

If you're familiar with object-relational mapping, you may recall that there are at least four types of relationship between classes. In eXtreme Scale terms, the relationships are defined by annotations in the com.ibm.websphere.projector.annotations package. Those relationships are @OneToOne, @OneToMany, @ManyToOne, and @ManyToMany. At first, we'll model the Payment-Address relationship as one-to-one.

First, we'll define the Address class:

@Entity
public class Address {
@Id
private int id;
@OneToOne
private Payment payment;
private String street;
private String city;
private String state;
private String zip;
// getters and setters omitted
}

The @Entity and @Id annotations are familiar. We add the @OneToOne annotation on the Payment...