Search in sources :

Example 1 with ThrottlingException

use of org.apache.hadoop.hbase.quotas.ThrottlingException in project hbase by apache.

the class TestMetaCache method metaCachePreservingExceptions.

public static List<Throwable> metaCachePreservingExceptions() {
    return new ArrayList<Throwable>() {

        {
            add(new RegionOpeningException(" "));
            add(new RegionTooBusyException());
            add(new ThrottlingException(" "));
            add(new MultiActionResultTooLarge(" "));
            add(new RetryImmediatelyException(" "));
            add(new CallQueueTooBigException());
        }
    };
}
Also used : RegionOpeningException(org.apache.hadoop.hbase.exceptions.RegionOpeningException) ArrayList(java.util.ArrayList) ThrottlingException(org.apache.hadoop.hbase.quotas.ThrottlingException)

Aggregations

ArrayList (java.util.ArrayList)1 RegionOpeningException (org.apache.hadoop.hbase.exceptions.RegionOpeningException)1 ThrottlingException (org.apache.hadoop.hbase.quotas.ThrottlingException)1