-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HBASE-27818 Split TestReplicationDroppedTables (#5206)
Signed-off-by: Wellington Chevreuil <[email protected]>
- Loading branch information
Showing
5 changed files
with
264 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
.../src/test/java/org/apache/hadoop/hbase/replication/TestEditsBehindDroppedTableTiming.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/* | ||
* 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.replication; | ||
|
||
import static org.apache.hadoop.hbase.replication.regionserver.HBaseInterClusterReplicationEndpoint.REPLICATION_DROP_ON_DELETED_TABLE_KEY; | ||
|
||
import org.apache.hadoop.hbase.HBaseClassTestRule; | ||
import org.apache.hadoop.hbase.HConstants; | ||
import org.apache.hadoop.hbase.TableName; | ||
import org.apache.hadoop.hbase.client.Admin; | ||
import org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder; | ||
import org.apache.hadoop.hbase.client.Connection; | ||
import org.apache.hadoop.hbase.client.ConnectionFactory; | ||
import org.apache.hadoop.hbase.client.Put; | ||
import org.apache.hadoop.hbase.client.Table; | ||
import org.apache.hadoop.hbase.client.TableDescriptor; | ||
import org.apache.hadoop.hbase.client.TableDescriptorBuilder; | ||
import org.apache.hadoop.hbase.testclassification.LargeTests; | ||
import org.apache.hadoop.hbase.testclassification.ReplicationTests; | ||
import org.apache.hadoop.hbase.util.Bytes; | ||
import org.junit.ClassRule; | ||
import org.junit.Test; | ||
import org.junit.experimental.categories.Category; | ||
|
||
@Category({ ReplicationTests.class, LargeTests.class }) | ||
public class TestEditsBehindDroppedTableTiming extends ReplicationDroppedTablesTestBase { | ||
|
||
@ClassRule | ||
public static final HBaseClassTestRule CLASS_RULE = | ||
HBaseClassTestRule.forClass(TestEditsBehindDroppedTableTiming.class); | ||
|
||
@Override | ||
public void setUpBase() throws Exception { | ||
CONF1.setBoolean(REPLICATION_DROP_ON_DELETED_TABLE_KEY, true); | ||
CONF1.setInt(HConstants.REPLICATION_SOURCE_MAXTHREADS_KEY, 1); | ||
super.setUpBase(); | ||
// make sure we have a single region server only, so that all | ||
// edits for all tables go there | ||
restartSourceCluster(1); | ||
} | ||
|
||
@Test | ||
public void testEditsBehindDroppedTableTiming() throws Exception { | ||
TableName tablename = TableName.valueOf("testdroppedtimed"); | ||
byte[] familyName = Bytes.toBytes("fam"); | ||
byte[] row = Bytes.toBytes("row"); | ||
|
||
TableDescriptor table = | ||
TableDescriptorBuilder.newBuilder(tablename).setColumnFamily(ColumnFamilyDescriptorBuilder | ||
.newBuilder(familyName).setScope(HConstants.REPLICATION_SCOPE_GLOBAL).build()).build(); | ||
|
||
Connection connection1 = ConnectionFactory.createConnection(CONF1); | ||
Connection connection2 = ConnectionFactory.createConnection(CONF2); | ||
try (Admin admin1 = connection1.getAdmin()) { | ||
admin1.createTable(table); | ||
} | ||
try (Admin admin2 = connection2.getAdmin()) { | ||
admin2.createTable(table); | ||
} | ||
UTIL1.waitUntilAllRegionsAssigned(tablename); | ||
UTIL2.waitUntilAllRegionsAssigned(tablename); | ||
|
||
// now suspend replication | ||
try (Admin admin1 = connection1.getAdmin()) { | ||
admin1.disableReplicationPeer(PEER_ID2); | ||
} | ||
|
||
// put some data (lead with 0 so the edit gets sorted before the other table's edits | ||
// in the replication batch) write a bunch of edits, making sure we fill a batch | ||
try (Table droppedTable = connection1.getTable(tablename)) { | ||
byte[] rowKey = Bytes.toBytes(0 + " put on table to be dropped"); | ||
Put put = new Put(rowKey); | ||
put.addColumn(familyName, row, row); | ||
droppedTable.put(put); | ||
} | ||
|
||
try (Table table1 = connection1.getTable(tableName)) { | ||
for (int i = 0; i < ROWS_COUNT; i++) { | ||
Put put = new Put(generateRowKey(i)).addColumn(famName, row, row); | ||
table1.put(put); | ||
} | ||
} | ||
|
||
try (Admin admin2 = connection2.getAdmin()) { | ||
admin2.disableTable(tablename); | ||
admin2.deleteTable(tablename); | ||
} | ||
|
||
// edit should still be stuck | ||
try (Admin admin1 = connection1.getAdmin()) { | ||
// enable the replication peer. | ||
admin1.enableReplicationPeer(PEER_ID2); | ||
// the source table still exists, replication should be stalled | ||
verifyReplicationStuck(); | ||
|
||
admin1.disableTable(tablename); | ||
// still stuck, source table still exists | ||
verifyReplicationStuck(); | ||
|
||
admin1.deleteTable(tablename); | ||
// now the source table is gone, replication should proceed, the | ||
// offending edits be dropped | ||
verifyReplicationProceeded(); | ||
} | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...r/src/test/java/org/apache/hadoop/hbase/replication/TestEditsDroppedWithDroppedTable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* 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.replication; | ||
|
||
import org.apache.hadoop.hbase.HBaseClassTestRule; | ||
import org.apache.hadoop.hbase.testclassification.LargeTests; | ||
import org.apache.hadoop.hbase.testclassification.ReplicationTests; | ||
import org.junit.ClassRule; | ||
import org.junit.Test; | ||
import org.junit.experimental.categories.Category; | ||
|
||
@Category({ ReplicationTests.class, LargeTests.class }) | ||
public class TestEditsDroppedWithDroppedTable extends ReplicationDroppedTablesTestBase { | ||
|
||
@ClassRule | ||
public static final HBaseClassTestRule CLASS_RULE = | ||
HBaseClassTestRule.forClass(TestEditsDroppedWithDroppedTable.class); | ||
|
||
@Test | ||
public void testEditsDroppedWithDroppedTable() throws Exception { | ||
// Make sure by default edits for dropped tables are themselves dropped when the | ||
// table(s) in question have been deleted on both ends. | ||
testEditsBehindDroppedTable(true, "test_dropped"); | ||
} | ||
|
||
} |
Oops, something went wrong.