forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] [auto-recovery] Fix pulsar ledger auditor dead lock problem. (a…
- Loading branch information
Showing
3 changed files
with
218 additions
and
4 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
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
201 changes: 201 additions & 0 deletions
201
pulsar-metadata/src/test/java/org/apache/bookkeeper/replication/AutoRecoveryMainTest.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,201 @@ | ||
/* | ||
* 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.bookkeeper.replication; | ||
|
||
import static org.testng.AssertJUnit.assertEquals; | ||
import static org.testng.AssertJUnit.assertFalse; | ||
import static org.testng.AssertJUnit.assertNotNull; | ||
import static org.testng.AssertJUnit.assertTrue; | ||
|
||
import java.io.IOException; | ||
import java.lang.reflect.Field; | ||
import java.util.concurrent.TimeUnit; | ||
import org.apache.bookkeeper.bookie.BookieImpl; | ||
import org.apache.bookkeeper.net.BookieId; | ||
import org.apache.bookkeeper.test.BookKeeperClusterTestCase; | ||
import org.apache.bookkeeper.util.TestUtils; | ||
import org.apache.pulsar.metadata.bookkeeper.PulsarLedgerManagerFactory; | ||
import org.apache.pulsar.metadata.bookkeeper.PulsarMetadataClientDriver; | ||
import org.apache.pulsar.metadata.impl.ZKMetadataStore; | ||
import org.apache.zookeeper.ZooKeeper; | ||
import org.awaitility.Awaitility; | ||
import org.testng.annotations.BeforeMethod; | ||
import org.testng.annotations.Test; | ||
|
||
/** | ||
* Test the AuditorPeer. | ||
*/ | ||
public class AutoRecoveryMainTest extends BookKeeperClusterTestCase { | ||
|
||
public AutoRecoveryMainTest() throws Exception { | ||
super(3); | ||
Class.forName("org.apache.pulsar.metadata.bookkeeper.PulsarMetadataClientDriver"); | ||
Class.forName("org.apache.pulsar.metadata.bookkeeper.PulsarMetadataBookieDriver"); | ||
} | ||
|
||
@BeforeMethod | ||
@Override | ||
public void setUp() throws Exception { | ||
super.setUp(); | ||
} | ||
|
||
/** | ||
* Test that, if an autorecovery looses its ZK connection/session it will | ||
* shutdown. | ||
*/ | ||
@Test | ||
public void testAutoRecoverySessionLoss() throws Exception { | ||
confByIndex(0).setMetadataServiceUri( | ||
zkUtil.getMetadataServiceUri().replaceAll("zk://", "metadata-store:").replaceAll("/ledgers", "")); | ||
confByIndex(1).setMetadataServiceUri( | ||
zkUtil.getMetadataServiceUri().replaceAll("zk://", "metadata-store:").replaceAll("/ledgers", "")); | ||
confByIndex(2).setMetadataServiceUri( | ||
zkUtil.getMetadataServiceUri().replaceAll("zk://", "metadata-store:").replaceAll("/ledgers", "")); | ||
/* | ||
* initialize three AutoRecovery instances. | ||
*/ | ||
AutoRecoveryMain main1 = new AutoRecoveryMain(confByIndex(0)); | ||
AutoRecoveryMain main2 = new AutoRecoveryMain(confByIndex(1)); | ||
AutoRecoveryMain main3 = new AutoRecoveryMain(confByIndex(2)); | ||
|
||
/* | ||
* start main1, make sure all the components are started and main1 is | ||
* the current Auditor | ||
*/ | ||
PulsarMetadataClientDriver pulsarMetadataClientDriver1 = startAutoRecoveryMain(main1); | ||
ZooKeeper zk1 = getZk(pulsarMetadataClientDriver1); | ||
|
||
// Wait until auditor gets elected | ||
for (int i = 0; i < 10; i++) { | ||
try { | ||
if (main1.auditorElector.getCurrentAuditor() != null) { | ||
break; | ||
} else { | ||
Thread.sleep(1000); | ||
} | ||
} catch (IOException e) { | ||
Thread.sleep(1000); | ||
} | ||
} | ||
BookieId currentAuditor = main1.auditorElector.getCurrentAuditor(); | ||
assertNotNull(currentAuditor); | ||
Auditor auditor1 = main1.auditorElector.getAuditor(); | ||
assertEquals("Current Auditor should be AR1", currentAuditor, BookieImpl.getBookieId(confByIndex(0))); | ||
Awaitility.waitAtMost(30, TimeUnit.SECONDS).untilAsserted(() -> { | ||
assertNotNull(auditor1); | ||
assertTrue("Auditor of AR1 should be running", auditor1.isRunning()); | ||
}); | ||
|
||
|
||
/* | ||
* start main2 and main3 | ||
*/ | ||
PulsarMetadataClientDriver pulsarMetadataClientDriver2 = startAutoRecoveryMain(main2); | ||
ZooKeeper zk2 = getZk(pulsarMetadataClientDriver2); | ||
|
||
PulsarMetadataClientDriver pulsarMetadataClientDriver3 = startAutoRecoveryMain(main3); | ||
ZooKeeper zk3 = getZk(pulsarMetadataClientDriver3); | ||
|
||
|
||
/* | ||
* make sure AR1 is still the current Auditor and AR2's and AR3's | ||
* auditors are not running. | ||
*/ | ||
assertEquals("Current Auditor should still be AR1", currentAuditor, BookieImpl.getBookieId(confByIndex(0))); | ||
Awaitility.await().untilAsserted(() -> { | ||
assertTrue("AR2's Auditor should not be running", (main2.auditorElector.getAuditor() == null | ||
|| !main2.auditorElector.getAuditor().isRunning())); | ||
assertTrue("AR3's Auditor should not be running", (main3.auditorElector.getAuditor() == null | ||
|| !main3.auditorElector.getAuditor().isRunning())); | ||
}); | ||
|
||
|
||
/* | ||
* expire zk2 and zk1 sessions. | ||
*/ | ||
zkUtil.expireSession(zk2); | ||
zkUtil.expireSession(zk1); | ||
|
||
/* | ||
* wait for some time for all the components of AR1 and AR2 are | ||
* shutdown. | ||
*/ | ||
for (int i = 0; i < 10; i++) { | ||
if (!main1.auditorElector.isRunning() && !main1.replicationWorker.isRunning() | ||
&& !main1.isAutoRecoveryRunning() && !main2.auditorElector.isRunning() | ||
&& !main2.replicationWorker.isRunning() && !main2.isAutoRecoveryRunning()) { | ||
break; | ||
} | ||
Thread.sleep(1000); | ||
} | ||
|
||
/* | ||
* the AR3 should be current auditor. | ||
*/ | ||
currentAuditor = main3.auditorElector.getCurrentAuditor(); | ||
assertEquals("Current Auditor should be AR3", currentAuditor, BookieImpl.getBookieId(confByIndex(2))); | ||
Awaitility.await().untilAsserted(() -> { | ||
assertNotNull(main3.auditorElector.getAuditor()); | ||
assertTrue("Auditor of AR3 should be running", main3.auditorElector.getAuditor().isRunning()); | ||
}); | ||
|
||
Awaitility.waitAtMost(100, TimeUnit.SECONDS).untilAsserted(() -> { | ||
/* | ||
* since AR3 is current auditor, AR1's auditor should not be running | ||
* anymore. | ||
*/ | ||
assertFalse("AR1's auditor should not be running", auditor1.isRunning()); | ||
|
||
/* | ||
* components of AR2 and AR3 should not be running since zk1 and zk2 | ||
* sessions are expired. | ||
*/ | ||
assertFalse("Elector1 should have shutdown", main1.auditorElector.isRunning()); | ||
assertFalse("RW1 should have shutdown", main1.replicationWorker.isRunning()); | ||
assertFalse("AR1 should have shutdown", main1.isAutoRecoveryRunning()); | ||
assertFalse("Elector2 should have shutdown", main2.auditorElector.isRunning()); | ||
assertFalse("RW2 should have shutdown", main2.replicationWorker.isRunning()); | ||
assertFalse("AR2 should have shutdown", main2.isAutoRecoveryRunning()); | ||
}); | ||
|
||
} | ||
|
||
/* | ||
* start autoRecoveryMain and make sure all its components are running and | ||
* myVote node is existing | ||
*/ | ||
PulsarMetadataClientDriver startAutoRecoveryMain(AutoRecoveryMain autoRecoveryMain) throws Exception { | ||
autoRecoveryMain.start(); | ||
PulsarMetadataClientDriver pulsarMetadataClientDriver = (PulsarMetadataClientDriver) autoRecoveryMain.bkc | ||
.getMetadataClientDriver(); | ||
TestUtils.assertEventuallyTrue("autoRecoveryMain components should be running", | ||
() -> autoRecoveryMain.auditorElector.isRunning() | ||
&& autoRecoveryMain.replicationWorker.isRunning() && autoRecoveryMain.isAutoRecoveryRunning()); | ||
return pulsarMetadataClientDriver; | ||
} | ||
|
||
private ZooKeeper getZk(PulsarMetadataClientDriver pulsarMetadataClientDriver) throws Exception { | ||
PulsarLedgerManagerFactory pulsarLedgerManagerFactory = | ||
(PulsarLedgerManagerFactory) pulsarMetadataClientDriver.getLedgerManagerFactory(); | ||
Field field = pulsarLedgerManagerFactory.getClass().getDeclaredField("store"); | ||
field.setAccessible(true); | ||
ZKMetadataStore zkMetadataStore = (ZKMetadataStore) field.get(pulsarLedgerManagerFactory); | ||
return zkMetadataStore.getZkClient(); | ||
} | ||
} |