As an implementation of an Ice location service, IceGrid supports object adapter replication as described on
page 12. An application defines its replica groups and their participating object adapters using descriptors, and IceGrid generates the server configurations automatically.
The descriptor that defines a replica group can optionally declare well-known objects as well as configure the group to determine its behavior during locate requests. Consider this example:
The adapter’s descriptor declares itself to be a member of the replica group ReplicatedAdapter, which must have been previously created by a replica group descriptor.
The replica group ReplicatedAdapter declares a well-known object so that an indirect proxy of the form
TheObject is equivalent to the indirect proxy
TheObject@ReplicatedAdapter. Since this trivial example defines only one adapter in the replica group, the proxy
TheObject is also equivalent to
TheObject@TheAdapter.
An object adapter participates in a replica group by specifying the group’s id in the adapter’s
ReplicaGroupId configuration property. Identifying the replica group in the IceGrid descriptor for an object adapter causes the node to include the equivalent
ReplicaGroupId property in the configuration file it generates for the server.
By default, the IceGrid registry requires the membership of a replica group to be statically defined. When you create a descriptor for an object adapter that identifies a replica group, the registry adds that adapter to the group’s list of valid members. During an adapter’s activation, when it describes its endpoints to the registry, an adapter that also claims membership in a replica group is validated against the registry’s internal list.
In a properly configured IceGrid application, this activity occurs without incident, but there are situations in which validation can fail. For example, adapter activation fails if an adapter’s id is changed without notifying the registry, such as by manually modifying the server configuration file that was generated by a node.
It is also possible for activation to fail when the IceGrid registry is being used solely as a location service, in which case descriptors have not been created and therefore the registry has no advance knowledge of the replica groups or their members. In this situation, adapter activation causes the server to receive
NotRegisteredException unless the registry is configured to allow dynamic registration, which you can do by defining the following property:
The use of dynamic registration often leads to the accumulation of obsolete replica groups and adapters in the registry. The IceGrid administration tools (see
Section 38.24) allow you to inspect and clean up the registry’s state.
Replication is a perfect fit for the ripper application. The collection of encoder factory objects should be treated as a single logical object, and replication makes that possible.
The new descriptor adds the replica group called EncoderAdapters and registers a well-known object with the identity
EncoderFactory. The adapter descriptor in the server template has been changed to declare its membership in the replica group.
In comparison to the examples from Section 38.6.6 that used queries, the new version of our client has become much simpler:
The client no longer needs to use the IceGrid::Query interface, but simply creates a proxy for a well-known object and lets the Ice run time transparently interact with the location service. In response to a locate request for
EncoderFactory, the registry returns a proxy containing the endpoints of both object adapters. The Ice run time in the client selects one of the endpoints at random, meaning we have now lost some functionality compared to the prior example in which system load was considered when selecting an endpoint. We will learn how to rectify this situation in
Section 38.10.