Class PartitionedRegionStorageException

  • All Implemented Interfaces:
    java.io.Serializable

    public class PartitionedRegionStorageException
    extends CacheRuntimeException

    Description of the conditions under which this exception is thrown

    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:
    1. The amount of storage allocated to the partitioned region on that distributed member exceeds its localMaxMemory setting.
    2. The partitioned region instance on that distributed member has been closed or destroyed.
    3. The cache on that distributed member has been closed.
    4. The distributed system on that member has been disconnected.

    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.

    Since:
    GemFire 5.0
    See Also:
    PartitionAttributesFactory, Serialized Form
    • Constructor Detail

      • PartitionedRegionStorageException

        public PartitionedRegionStorageException()
        Creates a new instance of PartitionedRegionStorageException
      • PartitionedRegionStorageException

        public PartitionedRegionStorageException​(java.lang.String msg)
        Creates a new PartitionedRegionStorageException with a message.
        Parameters:
        msg - The string message for the PartitionedRegionStorageException.
      • PartitionedRegionStorageException

        public PartitionedRegionStorageException​(java.lang.String message,
                                                 java.lang.Throwable cause)
        Creates a new PartitionedRegionStorageException with a message and Throwable cause.
        Parameters:
        message - The string message for the PartitionedRegionStorageException.
        cause - Throwable cause for this PartitionedRegionStorageException.