[ENGINE] Close Translog if initial commit fails
This commit is contained in:
parent
a2a41c0115
commit
7d1eb6e900
|
@ -194,7 +194,15 @@ public class InternalEngine extends Engine {
|
||||||
final Translog translog = new Translog(translogConfig);
|
final Translog translog = new Translog(translogConfig);
|
||||||
if (generation == null) {
|
if (generation == null) {
|
||||||
logger.debug("no translog ID present in the current generation - creating one");
|
logger.debug("no translog ID present in the current generation - creating one");
|
||||||
commitIndexWriter(writer, translog);
|
boolean success = false;
|
||||||
|
try {
|
||||||
|
commitIndexWriter(writer, translog);
|
||||||
|
success = true;
|
||||||
|
} finally {
|
||||||
|
if (success == false) {
|
||||||
|
IOUtils.closeWhileHandlingException(translog);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return translog;
|
return translog;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue