From aba9f5a7f4067198073f678c81b4e3fbdb4f18ee Mon Sep 17 00:00:00 2001 From: Andrew Purtell Date: Fri, 1 Aug 2014 10:03:12 -0700 Subject: [PATCH] HBASE-3270 When we create the .version file, we should create it in a tmp location and then move it into place --- .../org/apache/hadoop/hbase/util/FSUtils.java | 26 ++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java index 36d95885a6c..23d3437d033 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/FSUtils.java @@ -631,11 +631,31 @@ public abstract class FSUtils { public static void setVersion(FileSystem fs, Path rootdir, String version, int wait, int retries) throws IOException { Path versionFile = new Path(rootdir, HConstants.VERSION_FILE_NAME); + Path tempVersionFile = new Path(rootdir, HConstants.HBASE_TEMP_DIRECTORY + Path.SEPARATOR + + HConstants.VERSION_FILE_NAME); while (true) { try { - FSDataOutputStream s = fs.create(versionFile); - s.write(toVersionByteArray(version)); - s.close(); + // Write the version to a temporary file + FSDataOutputStream s = fs.create(tempVersionFile); + try { + s.write(toVersionByteArray(version)); + s.close(); + s = null; + // Move the temp version file to its normal location. Returns false + // if the rename failed. Throw an IOE in that case. + if (!fs.rename(tempVersionFile, versionFile)) { + throw new IOException("Unable to move temp version file to " + versionFile); + } + } finally { + // Cleaning up the temporary if the rename failed would be trying + // too hard. We'll unconditionally create it again the next time + // through anyway, files are overwritten by default by create(). + + // Attempt to close the stream on the way out if it is still open. + try { + if (s != null) s.close(); + } catch (IOException ignore) { } + } LOG.debug("Created version file at " + rootdir.toString() + " with version=" + version); return; } catch (IOException e) {