public class PartitionedRegionStorageException extends CacheRuntimeException
When a PartitionedRegionStorageException
message contains the string:
There are not enough data store members to create a bucket.A new data store must be added to the partitioned region for future bucket creation.
When a PartitionedRegionStorageException
message contains the string:
Too many data store members have refused the request to create a bucket.There are enough data stores, however some have refused possibly due to these conditions:
When a PartitionedRegionStorageException
message contains the string:
Creation of a bucket for partitioned region failed in N attempts.If the number of attempts is lesser than the number of available data store members, contact GemFire support providing all logs and statistics files from all members containing the partitioned region. Otherwise, shutdown and then restart one or more of the data stores, given that it is safe to do so, for example when redundantCopies is greater than 0.
PartitionAttributesFactory
,
Serialized FormConstructor and Description |
---|
PartitionedRegionStorageException()
Creates a new instance of PartitionedRegionStorageException
|
PartitionedRegionStorageException(String msg)
Creates a new
PartitionedRegionStorageException with a message. |
PartitionedRegionStorageException(String message,
Throwable cause)
Creates a new
PartitionedRegionStorageException with a message and Throwable cause. |
toString
getRootCause
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
public PartitionedRegionStorageException()
public PartitionedRegionStorageException(String msg)
PartitionedRegionStorageException
with a message.msg
- The string message for the PartitionedRegionStorageException.public PartitionedRegionStorageException(String message, Throwable cause)
PartitionedRegionStorageException
with a message and Throwable cause.message
- The string message for the PartitionedRegionStorageException.cause
- Throwable cause for this PartitionedRegionStorageException
.