HDFS-4274. BlockPoolSliceScanner does not close verification log during shutdown. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1422276 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4bc4daae66
commit
8aee71d1bc
|
@ -280,6 +280,9 @@ Trunk (Unreleased)
|
|||
HDFS-4310. fix test org.apache.hadoop.hdfs.server.datanode.
|
||||
TestStartSecureDataNode (Ivan A. Veselovsky via atm)
|
||||
|
||||
HDFS-4274. BlockPoolSliceScanner does not close verification log during
|
||||
shutdown. (Chris Nauroth via suresh)
|
||||
|
||||
Release 2.0.3-alpha - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -602,6 +602,15 @@ class BlockPoolSliceScanner {
|
|||
lastScanTime.set(Time.now());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Shuts down this BlockPoolSliceScanner and releases any internal resources.
|
||||
*/
|
||||
void shutdown() {
|
||||
if (verificationLog != null) {
|
||||
verificationLog.close();
|
||||
}
|
||||
}
|
||||
|
||||
private void scan() {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
|
@ -610,7 +619,8 @@ class BlockPoolSliceScanner {
|
|||
try {
|
||||
adjustThrottler();
|
||||
|
||||
while (datanode.shouldRun && !Thread.interrupted()
|
||||
while (datanode.shouldRun
|
||||
&& !datanode.blockScanner.blockScannerThread.isInterrupted()
|
||||
&& datanode.isBPServiceAlive(blockPoolId)) {
|
||||
long now = Time.now();
|
||||
synchronized (this) {
|
||||
|
|
|
@ -100,6 +100,11 @@ public class DataBlockScanner implements Runnable {
|
|||
}
|
||||
bpScanner.scanBlockPoolSlice();
|
||||
}
|
||||
|
||||
// Call shutdown for each allocated BlockPoolSliceScanner.
|
||||
for (BlockPoolSliceScanner bpss: blockPoolScannerMap.values()) {
|
||||
bpss.shutdown();
|
||||
}
|
||||
}
|
||||
|
||||
// Wait for at least one block pool to be up
|
||||
|
@ -232,9 +237,21 @@ public class DataBlockScanner implements Runnable {
|
|||
}
|
||||
}
|
||||
|
||||
public synchronized void shutdown() {
|
||||
public void shutdown() {
|
||||
synchronized (this) {
|
||||
if (blockScannerThread != null) {
|
||||
blockScannerThread.interrupt();
|
||||
}
|
||||
}
|
||||
|
||||
// We cannot join within the synchronized block, because it would create a
|
||||
// deadlock situation. blockScannerThread calls other synchronized methods.
|
||||
if (blockScannerThread != null) {
|
||||
blockScannerThread.interrupt();
|
||||
try {
|
||||
blockScannerThread.join();
|
||||
} catch (InterruptedException e) {
|
||||
// shutting down anyway
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue