HDFS-4426. Secondary namenode shuts down immediately after startup. Contributed by Arpit Agarwal.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1437627 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
345bcee066
commit
a1e6df6bc4
@ -2244,6 +2244,9 @@ Release 0.23.6 - UNRELEASED
|
||||
|
||||
HDFS-4385. Maven RAT plugin is not checking all source files (tgraves)
|
||||
|
||||
HDFS-4426. Secondary namenode shuts down immediately after startup.
|
||||
(Arpit Agarwal via suresh)
|
||||
|
||||
Release 0.23.5 - 2012-11-28
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -281,6 +281,17 @@ private void initialize(final Configuration conf,
|
||||
LOG.info("Log Size Trigger :" + checkpointConf.getTxnCount() + " txns");
|
||||
}
|
||||
|
||||
/**
|
||||
* Wait for the service to finish.
|
||||
* (Normally, it runs forever.)
|
||||
*/
|
||||
private void join() {
|
||||
try {
|
||||
infoServer.join();
|
||||
} catch (InterruptedException ie) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Shut down this instance of the datanode.
|
||||
* Returns only after shutdown is complete.
|
||||
@ -607,6 +618,7 @@ public static void main(String[] argv) throws Exception {
|
||||
|
||||
if (secondary != null) {
|
||||
secondary.startCheckpointThread();
|
||||
secondary.join();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user