See the WebSphere eXtreme Scale Wiki for links to eXtreme Scale Version 7.0 documentation.
If you log in
with your developerWorks ID, you can leave comments and feedback for the development team.
ObjectGrid is inherently scalable through the use of partitioned data.
ObjectGrid can scale to thousands of containers. This scalability is possible because each container is independent from the other containers. Two exceptions are when containers communicate between themselves. One exception is the availability management, or core grouping, protocol. This is an O(N 2) heart beating and view maintenance algorithm, but is mitigated by keeping the core group membership around 20. The other exception is replication, which is only peer to peer between shards.
Partitioning
Partitioning is the mechanism that ObjectGrid uses to scale out an application. Partitioning is the separation of the application state into parts where each part contains some set of complete instance data. It is not like Redundant Array of Independent Disks (RAID) striping, which slices each instance across all stripes. Each partition hosts the complete data for individual entries. This is a very effective means for scaling, but is not applicable to all applications. Applications that require transactional guarantees across large sets of data do not scale and cannot be partitioned effectively. ObjectGrid does not currently support two-phase commit across partitions.
 | Choose your number of partitions carefully
The number of partitions that are defined in the deployment policy directly affects the number of containers to which an ObjectGrid application can scale. Each partition is made up of a primary shard and the configured number of replica shards. So the (Number_Partitions*(1 + Number_Replicas)) formula is the number of containers that can be used to scale out a single application. |
Distributed clients
The ObjectGrid client protocol supports very large numbers of clients. The partitioning strategy helps in this situation by assuming that all clients are not always interested in all partitions because connections can then be spread across multiple containers. Clients connect directly to the partitions so latency is limited to one hop.
For more details on ObjectGrid partitioning, refer to the following pages:
© Copyright IBM Corporation 2007,2009. All Rights Reserved.