HDFS-3789. JournalManager#format() should be able to throw IOException. Contributed by Ivan Kelly.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1372566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bbe0e823db
commit
7aacfd5a08
|
@ -114,6 +114,9 @@ Trunk (unreleased changes)
|
|||
|
||||
HDFS-3695. Genericize format() to non-file JournalManagers. (todd)
|
||||
|
||||
HDFS-3789. JournalManager#format() should be able to throw IOException
|
||||
(Ivan Kelly via todd)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -272,7 +272,7 @@ public class BookKeeperJournalManager implements JournalManager {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void format(NamespaceInfo ns) {
|
||||
public void format(NamespaceInfo ns) throws IOException {
|
||||
// Currently, BKJM automatically formats itself when first accessed.
|
||||
// TODO: change over to explicit formatting so that the admin can
|
||||
// clear out the BK storage when reformatting a cluster.
|
||||
|
|
|
@ -79,7 +79,7 @@ class FileJournalManager implements JournalManager {
|
|||
public void close() throws IOException {}
|
||||
|
||||
@Override
|
||||
public void format(NamespaceInfo ns) {
|
||||
public void format(NamespaceInfo ns) throws IOException {
|
||||
// Formatting file journals is done by the StorageDirectory
|
||||
// format code, since they may share their directory with
|
||||
// checkpoints, etc.
|
||||
|
|
|
@ -41,7 +41,7 @@ public interface JournalManager extends Closeable, FormatConfirmable {
|
|||
* Format the underlying storage, removing any previously
|
||||
* stored data.
|
||||
*/
|
||||
void format(NamespaceInfo ns);
|
||||
void format(NamespaceInfo ns) throws IOException;
|
||||
|
||||
/**
|
||||
* Begin writing to a new segment of the log stream, which starts at
|
||||
|
|
|
@ -174,7 +174,7 @@ public class JournalSet implements JournalManager {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void format(NamespaceInfo nsInfo) {
|
||||
public void format(NamespaceInfo nsInfo) throws IOException {
|
||||
// The iteration is done by FSEditLog itself
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@ public class TestGenericJournalConf {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void format(NamespaceInfo nsInfo) {
|
||||
public void format(NamespaceInfo nsInfo) throws IOException {
|
||||
formatCalled = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue