HBASE-17779 disable_table_replication returns misleading message and does not turn off replication (Janos Gub)
This commit is contained in:
parent
44b255889c
commit
777fea552e
|
@ -4228,14 +4228,16 @@ public class HBaseAdmin implements Admin {
|
|||
/**
|
||||
* Set the table's replication switch if the table's replication switch is already not set.
|
||||
* @param tableName name of the table
|
||||
* @param isRepEnabled is replication switch enable or disable
|
||||
* @param enableRep is replication switch enable or disable
|
||||
* @throws IOException if a remote or network exception occurs
|
||||
*/
|
||||
private void setTableRep(final TableName tableName, boolean isRepEnabled) throws IOException {
|
||||
private void setTableRep(final TableName tableName, boolean enableRep) throws IOException {
|
||||
HTableDescriptor htd = getTableDescriptor(tableName);
|
||||
if (isTableRepEnabled(htd) ^ isRepEnabled) {
|
||||
ReplicationState currentReplicationState = getTableReplicationState(htd);
|
||||
if (enableRep && currentReplicationState != ReplicationState.ENABLED
|
||||
|| !enableRep && currentReplicationState != ReplicationState.DISABLED) {
|
||||
for (HColumnDescriptor hcd : htd.getFamilies()) {
|
||||
hcd.setScope(isRepEnabled ? HConstants.REPLICATION_SCOPE_GLOBAL
|
||||
hcd.setScope(enableRep ? HConstants.REPLICATION_SCOPE_GLOBAL
|
||||
: HConstants.REPLICATION_SCOPE_LOCAL);
|
||||
}
|
||||
modifyTable(tableName, htd);
|
||||
|
@ -4243,17 +4245,34 @@ public class HBaseAdmin implements Admin {
|
|||
}
|
||||
|
||||
/**
|
||||
* @param htd table descriptor details for the table to check
|
||||
* @return true if table's replication switch is enabled
|
||||
* This enum indicates the current state of the replication for a given table.
|
||||
*/
|
||||
private boolean isTableRepEnabled(HTableDescriptor htd) {
|
||||
private enum ReplicationState {
|
||||
ENABLED, // all column families enabled
|
||||
MIXED, // some column families enabled, some disabled
|
||||
DISABLED // all column families disabled
|
||||
}
|
||||
|
||||
/**
|
||||
* @param htd table descriptor details for the table to check
|
||||
* @return ReplicationState the current state of the table.
|
||||
*/
|
||||
private ReplicationState getTableReplicationState(HTableDescriptor htd) {
|
||||
boolean hasEnabled = false;
|
||||
boolean hasDisabled = false;
|
||||
|
||||
for (HColumnDescriptor hcd : htd.getFamilies()) {
|
||||
if (hcd.getScope() != HConstants.REPLICATION_SCOPE_GLOBAL
|
||||
&& hcd.getScope() != HConstants.REPLICATION_SCOPE_SERIAL) {
|
||||
return false;
|
||||
hasDisabled = true;
|
||||
} else {
|
||||
hasEnabled = true;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
||||
if (hasEnabled && hasDisabled) return ReplicationState.MIXED;
|
||||
if (hasEnabled) return ReplicationState.ENABLED;
|
||||
return ReplicationState.DISABLED;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -75,6 +75,23 @@ public class TestReplicationAdminWithClusters extends TestReplicationBase {
|
|||
TestReplicationBase.tearDownAfterClass();
|
||||
}
|
||||
|
||||
@Test(timeout = 300000)
|
||||
public void disableNotFullReplication() throws Exception {
|
||||
HTableDescriptor table = admin2.getTableDescriptor(tableName);
|
||||
HColumnDescriptor f = new HColumnDescriptor("notReplicatedFamily");
|
||||
table.addFamily(f);
|
||||
admin1.disableTable(tableName);
|
||||
admin1.modifyTable(tableName, table);
|
||||
admin1.enableTable(tableName);
|
||||
|
||||
|
||||
admin1.disableTableReplication(tableName);
|
||||
table = admin1.getTableDescriptor(tableName);
|
||||
for (HColumnDescriptor fam : table.getColumnFamilies()) {
|
||||
assertEquals(fam.getScope(), HConstants.REPLICATION_SCOPE_LOCAL);
|
||||
}
|
||||
}
|
||||
|
||||
@Test(timeout = 300000)
|
||||
public void testEnableReplicationWhenSlaveClusterDoesntHaveTable() throws Exception {
|
||||
admin1.disableTableReplication(tableName);
|
||||
|
|
Loading…
Reference in New Issue