blob: 096273e1f1a1d574a56ca629a405f37c3c4285e9 [file] [log] [blame]
/*
*
* 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.client;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.CyclicBarrier;
import org.apache.bookkeeper.client.BookKeeper.DigestType;
import org.apache.bookkeeper.conf.ClientConfiguration;
import org.apache.bookkeeper.net.BookieSocketAddress;
import org.apache.bookkeeper.test.BookKeeperClusterTestCase;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This unit test tests ledger fencing.
*
*/
public class TestFencing extends BookKeeperClusterTestCase {
private static final Logger LOG = LoggerFactory.getLogger(TestFencing.class);
private final DigestType digestType;
public TestFencing() {
super(10);
this.digestType = DigestType.CRC32;
}
/**
* Basic fencing test. Create ledger, write to it,
* open ledger, write again (should fail).
*/
@Test
public void testBasicFencing() throws Exception {
/*
* Create ledger.
*/
LedgerHandle writelh = null;
writelh = bkc.createLedger(digestType, "password".getBytes());
String tmp = "BookKeeper is cool!";
for (int i = 0; i < 10; i++) {
writelh.addEntry(tmp.getBytes());
}
/*
* Try to open ledger.
*/
LedgerHandle readlh = bkc.openLedger(writelh.getId(), digestType, "password".getBytes());
// should have triggered recovery and fencing
try {
writelh.addEntry(tmp.getBytes());
LOG.error("Should have thrown an exception");
fail("Should have thrown an exception when trying to write");
} catch (BKException.BKLedgerFencedException e) {
// correct behaviour
}
/*
* Check if has recovered properly.
*/
assertTrue("Has not recovered correctly: " + readlh.getLastAddConfirmed()
+ " original " + writelh.getLastAddConfirmed(),
readlh.getLastAddConfirmed() == writelh.getLastAddConfirmed());
}
private static int threadCount = 0;
class LedgerOpenThread extends Thread {
private final long ledgerId;
private long lastConfirmedEntry = 0;
private final int tid;
private final DigestType digestType;
private final CyclicBarrier barrier;
LedgerOpenThread (int tid, DigestType digestType, long ledgerId, CyclicBarrier barrier)
throws Exception {
super("TestFencing-LedgerOpenThread-" + threadCount++);
this.tid = tid;
this.ledgerId = ledgerId;
this.digestType = digestType;
this.barrier = barrier;
}
@Override
public void run() {
LOG.info("Thread {} started.", tid);
LedgerHandle lh = null;
BookKeeper bk = null;
try {
barrier.await();
while (true) {
try {
bk = new BookKeeper(new ClientConfiguration(baseClientConf), bkc.getZkHandle());
lh = bk.openLedger(ledgerId,
digestType, "".getBytes());
lastConfirmedEntry = lh.getLastAddConfirmed();
lh.close();
break;
} catch (BKException.BKMetadataVersionException zke) {
LOG.info("Contention with someone else recovering");
} catch (BKException.BKLedgerRecoveryException bkre) {
LOG.info("Contention with someone else recovering");
} finally {
if (lh != null) {
lh.close();
}
if (bk != null) {
bk.close();
bk = null;
}
}
}
} catch (Exception e) {
// just exit, test should spot bad last add confirmed
LOG.error("Exception occurred ", e);
}
LOG.info("Thread {} exiting, lastConfirmedEntry = {}", tid, lastConfirmedEntry);
}
long getLastConfirmedEntry() {
return lastConfirmedEntry;
}
}
/**
* Try to open a ledger many times in parallel.
* All opens should result in a ledger with an equals number of
* entries.
*/
@Test
public void testManyOpenParallel() throws Exception {
/*
* Create ledger.
*/
final LedgerHandle writelh = bkc.createLedger(digestType, "".getBytes());
final int numRecovery = 10;
final String tmp = "BookKeeper is cool!";
final CountDownLatch latch = new CountDownLatch(numRecovery);
Thread writethread = new Thread() {
public void run() {
try {
while (true) {
writelh.addEntry(tmp.getBytes());
latch.countDown();
}
} catch (Exception e) {
LOG.info("Exception adding entry", e);
}
}
};
writethread.start();
CyclicBarrier barrier = new CyclicBarrier(numRecovery + 1);
LedgerOpenThread[] threads = new LedgerOpenThread[numRecovery];
for (int i = 0; i < numRecovery; i++) {
threads[i] = new LedgerOpenThread(i, digestType, writelh.getId(), barrier);
threads[i].start();
}
latch.await();
barrier.await(); // should trigger threads to go
writethread.join();
long lastConfirmed = writelh.getLastAddConfirmed();
for (int i = 0; i < numRecovery; i++) {
threads[i].join();
assertTrue("Added confirmed is incorrect",
lastConfirmed <= threads[i].getLastConfirmedEntry());
}
}
/**
* Test that opening a ledger in norecovery mode
* doesn't fence off a ledger.
*/
@Test
public void testNoRecoveryOpen() throws Exception {
/*
* Create ledger.
*/
LedgerHandle writelh = null;
writelh = bkc.createLedger(digestType, "".getBytes());
String tmp = "BookKeeper is cool!";
final int numEntries = 10;
for (int i = 0; i < numEntries; i++) {
writelh.addEntry(tmp.getBytes());
}
/*
* Try to open ledger.
*/
LedgerHandle readlh = bkc.openLedgerNoRecovery(writelh.getId(),
digestType, "".getBytes());
long numReadable = readlh.getLastAddConfirmed();
LOG.error("numRead " + numReadable);
readlh.readEntries(1, numReadable);
// should not have triggered recovery and fencing
writelh.addEntry(tmp.getBytes());
try {
readlh.readEntries(numReadable + 1, numReadable + 1);
fail("Shouldn't have been able to read this far");
} catch (BKException.BKReadException e) {
// all is good
}
writelh.addEntry(tmp.getBytes());
long numReadable2 = readlh.getLastAddConfirmed();
assertEquals("Number of readable entries hasn't changed", numReadable2, numReadable);
readlh.close();
writelh.addEntry(tmp.getBytes());
writelh.close();
}
/**
* create a ledger and write entries.
* kill a bookie in the ensemble. Recover.
* Fence the ledger. Kill another bookie. Recover.
*/
@Test
public void testFencingInteractionWithBookieRecovery() throws Exception {
System.setProperty("digestType", digestType.toString());
System.setProperty("passwd", "testPasswd");
BookKeeperAdmin admin = new BookKeeperAdmin(zkUtil.getZooKeeperConnectString());
LedgerHandle writelh = bkc.createLedger(digestType, "testPasswd".getBytes());
String tmp = "Foobar";
final int numEntries = 10;
for (int i = 0; i < numEntries; i++) {
writelh.addEntry(tmp.getBytes());
}
BookieSocketAddress bookieToKill = writelh.getLedgerMetadata().getEnsembleAt(numEntries).get(0);
killBookie(bookieToKill);
// write entries to change ensemble
for (int i = 0; i < numEntries; i++) {
writelh.addEntry(tmp.getBytes());
}
admin.recoverBookieData(bookieToKill);
for (int i = 0; i < numEntries; i++) {
writelh.addEntry(tmp.getBytes());
}
LedgerHandle readlh = bkc.openLedger(writelh.getId(),
digestType, "testPasswd".getBytes());
try {
writelh.addEntry(tmp.getBytes());
LOG.error("Should have thrown an exception");
fail("Should have thrown an exception when trying to write");
} catch (BKException.BKLedgerFencedException e) {
// correct behaviour
}
readlh.close();
writelh.close();
}
/**
* create a ledger and write entries.
* Fence the ledger. Kill a bookie. Recover.
* Ensure that recover doesn't reallow adding
*/
@Test
public void testFencingInteractionWithBookieRecovery2() throws Exception {
System.setProperty("digestType", digestType.toString());
System.setProperty("passwd", "testPasswd");
BookKeeperAdmin admin = new BookKeeperAdmin(zkUtil.getZooKeeperConnectString());
LedgerHandle writelh = bkc.createLedger(digestType, "testPasswd".getBytes());
String tmp = "Foobar";
final int numEntries = 10;
for (int i = 0; i < numEntries; i++) {
writelh.addEntry(tmp.getBytes());
}
LedgerHandle readlh = bkc.openLedger(writelh.getId(),
digestType, "testPasswd".getBytes());
// should be fenced by now
BookieSocketAddress bookieToKill = writelh.getLedgerMetadata().getEnsembleAt(numEntries).get(0);
killBookie(bookieToKill);
admin.recoverBookieData(bookieToKill);
try {
writelh.addEntry(tmp.getBytes());
LOG.error("Should have thrown an exception");
fail("Should have thrown an exception when trying to write");
} catch (BKException.BKLedgerFencedException e) {
// correct behaviour
}
readlh.close();
writelh.close();
}
/**
* create a ledger and write entries.
* sleep a bookie
* Ensure that fencing proceeds even with the bookie sleeping
*/
@Test
public void testFencingWithHungBookie() throws Exception {
LedgerHandle writelh = bkc.createLedger(digestType, "testPasswd".getBytes());
String tmp = "Foobar";
final int numEntries = 10;
for (int i = 0; i < numEntries; i++) {
writelh.addEntry(tmp.getBytes());
}
CountDownLatch sleepLatch = new CountDownLatch(1);
sleepBookie(writelh.getLedgerMetadata().getAllEnsembles().get(0L).get(1), sleepLatch);
LedgerHandle readlh = bkc.openLedger(writelh.getId(),
digestType, "testPasswd".getBytes());
try {
writelh.addEntry(tmp.getBytes());
LOG.error("Should have thrown an exception");
fail("Should have thrown an exception when trying to write");
} catch (BKException.BKLedgerFencedException e) {
// correct behaviour
}
sleepLatch.countDown();
readlh.close();
writelh.close();
}
/**
* Test that fencing doesn't work with a bad password.
*/
@Test
public void testFencingBadPassword() throws Exception {
/*
* Create ledger.
*/
LedgerHandle writelh = null;
writelh = bkc.createLedger(digestType, "password1".getBytes());
String tmp = "BookKeeper is cool!";
for (int i = 0; i < 10; i++) {
writelh.addEntry(tmp.getBytes());
}
/*
* Try to open ledger.
*/
try {
bkc.openLedger(writelh.getId(), digestType, "badPassword".getBytes());
fail("Should not have been able to open with a bad password");
} catch (BKException.BKUnauthorizedAccessException uue) {
// correct behaviour
}
// should have triggered recovery and fencing
writelh.addEntry(tmp.getBytes());
}
@Test
public void testFencingAndRestartBookies() throws Exception {
LedgerHandle writelh = null;
writelh = bkc.createLedger(digestType, "password".getBytes());
String tmp = "BookKeeper is cool!";
for (int i = 0; i < 10; i++) {
writelh.addEntry(tmp.getBytes());
}
/*
* Try to open ledger.
*/
LedgerHandle readlh = bkc.openLedger(writelh.getId(), digestType,
"password".getBytes());
restartBookies();
try {
writelh.addEntry(tmp.getBytes());
LOG.error("Should have thrown an exception");
fail("Should have thrown an exception when trying to write");
} catch (BKException.BKLedgerFencedException e) {
// correct behaviour
}
readlh.close();
}
}