Class ClusterRepartitionException

The exception indicating an operation failed because the cluster was migrating partitions between servers.

Inheritance
System.Object
SessionException
ClusterRoutingException
ClusterRepartitionException
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public class ClusterRepartitionException : ClusterRoutingException
Remarks

Partitions are migrated when servers are started, stopped or fail. During migration, it may not be possible to identify the correct server to handle an operation. The operation can be retried.

Since 6.0

Constructors

ClusterRepartitionException(String)

Creates a new ClusterRepartitionException

Declaration
public ClusterRepartitionException(string message)
Parameters
Type Name Description
System.String message

The error message.

ClusterRepartitionException(String, Exception)

Creates a new ClusterRepartitionException.

Declaration
public ClusterRepartitionException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The error message.

Exception innerException

The exception that caused the ClusterRepartitionException.

Back to top