-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-22013 SpaceQuotas - getNumRegions() returning wrong number of regions due to region replicas #570
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HBASE-22013 SpaceQuotas - getNumRegions() returning wrong number of regions due to region replicas #570
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,119 @@ | ||
| /** | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| package org.apache.hadoop.hbase.quotas; | ||
|
|
||
| import java.util.concurrent.atomic.AtomicLong; | ||
|
|
||
| import org.apache.hadoop.conf.Configuration; | ||
| import org.apache.hadoop.hbase.HBaseClassTestRule; | ||
| import org.apache.hadoop.hbase.HBaseTestingUtility; | ||
| import org.apache.hadoop.hbase.NamespaceDescriptor; | ||
| import org.apache.hadoop.hbase.TableName; | ||
| import org.apache.hadoop.hbase.client.Put; | ||
| import org.apache.hadoop.hbase.testclassification.MediumTests; | ||
| import org.apache.hadoop.hbase.util.Bytes; | ||
| import org.junit.AfterClass; | ||
| import org.junit.Before; | ||
| import org.junit.BeforeClass; | ||
| import org.junit.ClassRule; | ||
| import org.junit.Rule; | ||
| import org.junit.Test; | ||
| import org.junit.experimental.categories.Category; | ||
| import org.junit.rules.TestName; | ||
| import org.slf4j.Logger; | ||
| import org.slf4j.LoggerFactory; | ||
|
|
||
|
|
||
| @Category(MediumTests.class) | ||
| public class TestSpaceQuotasWithRegionReplicas { | ||
|
|
||
| @ClassRule | ||
| public static final HBaseClassTestRule CLASS_RULE = | ||
| HBaseClassTestRule.forClass(TestSpaceQuotasWithRegionReplicas.class); | ||
|
|
||
| private static final Logger LOG = | ||
| LoggerFactory.getLogger(TestSpaceQuotasWithRegionReplicas.class); | ||
| private static final HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility(); | ||
| private static final int NUM_RETRIES = 10; | ||
|
|
||
| @Rule | ||
| public TestName testName = new TestName(); | ||
| private SpaceQuotaHelperForTests helper; | ||
|
|
||
| @BeforeClass | ||
| public static void setUp() throws Exception { | ||
| Configuration conf = TEST_UTIL.getConfiguration(); | ||
| SpaceQuotaHelperForTests.updateConfigForQuotas(conf); | ||
| TEST_UTIL.startMiniCluster(1); | ||
| } | ||
|
|
||
| @AfterClass | ||
| public static void tearDown() throws Exception { | ||
| TEST_UTIL.shutdownMiniCluster(); | ||
| } | ||
|
|
||
| @Before | ||
| public void removeAllQuotas() throws Exception { | ||
| helper = new SpaceQuotaHelperForTests(TEST_UTIL, testName, new AtomicLong(0)); | ||
| helper.removeAllQuotas(); | ||
| } | ||
|
|
||
| @Test | ||
| public void testSetQuotaWithRegionReplicaSingleRegion() throws Exception { | ||
| setQuotaAndVerifyForRegionReplication(1, 2, SpaceViolationPolicy.NO_INSERTS); | ||
|
||
| setQuotaAndVerifyForRegionReplication(1, 2, SpaceViolationPolicy.NO_WRITES); | ||
| setQuotaAndVerifyForRegionReplication(1, 2, SpaceViolationPolicy.NO_WRITES_COMPACTIONS); | ||
| setQuotaAndVerifyForRegionReplication(1, 2, SpaceViolationPolicy.DISABLE); | ||
| } | ||
|
|
||
| @Test | ||
| public void testSetQuotaWithRegionReplicaMultipleRegion() throws Exception { | ||
| setQuotaAndVerifyForRegionReplication(5, 3, SpaceViolationPolicy.NO_INSERTS); | ||
|
||
| setQuotaAndVerifyForRegionReplication(6, 3, SpaceViolationPolicy.NO_WRITES); | ||
| setQuotaAndVerifyForRegionReplication(6, 3, SpaceViolationPolicy.NO_WRITES_COMPACTIONS); | ||
| setQuotaAndVerifyForRegionReplication(6, 3, SpaceViolationPolicy.DISABLE); | ||
| } | ||
|
|
||
| @Test | ||
| public void testSetQuotaWithSingleRegionZeroRegionReplica() throws Exception { | ||
| setQuotaAndVerifyForRegionReplication(1, 0, SpaceViolationPolicy.NO_INSERTS); | ||
| setQuotaAndVerifyForRegionReplication(1, 0, SpaceViolationPolicy.NO_WRITES); | ||
| setQuotaAndVerifyForRegionReplication(1, 0, SpaceViolationPolicy.NO_WRITES_COMPACTIONS); | ||
| setQuotaAndVerifyForRegionReplication(1, 0, SpaceViolationPolicy.DISABLE); | ||
| } | ||
|
|
||
| @Test | ||
| public void testSetQuotaWithMultipleRegionZeroRegionReplicas() throws Exception { | ||
| setQuotaAndVerifyForRegionReplication(5, 0, SpaceViolationPolicy.NO_INSERTS); | ||
| setQuotaAndVerifyForRegionReplication(6, 0, SpaceViolationPolicy.NO_WRITES); | ||
| setQuotaAndVerifyForRegionReplication(6, 0, SpaceViolationPolicy.NO_WRITES_COMPACTIONS); | ||
| setQuotaAndVerifyForRegionReplication(6, 0, SpaceViolationPolicy.DISABLE); | ||
| } | ||
|
|
||
| private void setQuotaAndVerifyForRegionReplication(int region, int replicatedRegion, | ||
| SpaceViolationPolicy policy) throws Exception { | ||
| TableName tn = helper.createTableWithRegions(TEST_UTIL.getAdmin(), | ||
| NamespaceDescriptor.DEFAULT_NAMESPACE_NAME_STR, region, replicatedRegion); | ||
| helper.setQuotaLimit(tn, policy, 5L); | ||
| helper.writeData(tn, 5L * SpaceQuotaHelperForTests.ONE_MEGABYTE); | ||
| Put p = new Put(Bytes.toBytes("to_reject")); | ||
| p.addColumn(Bytes.toBytes(SpaceQuotaHelperForTests.F1), Bytes.toBytes("to"), | ||
| Bytes.toBytes("reject")); | ||
| // Adding a sleep for 5 sec, so all the chores run and to void flakiness of the test. | ||
| Thread.sleep(5000); | ||
|
||
| helper.verifyViolation(policy, tn, p); | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: the
elsebranch is unnecessary. Just make thisif (regions==null) {return 0;} RegionReplicaUtil...(but properly formatted).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @joshelser , Thanks for the review. Did all the changes and pushed. :)