log.info("Instance " + HdfsZooInstance.getInstance().getInstanceID());
log.info("Data Version " + Accumulo.getAccumuloPersistentVersion());
Accumulo.waitForZookeeperAndHdfs();
int dataVersion = Accumulo.getAccumuloPersistentVersion();
Version codeVersion = new Version(Constants.VERSION);
if (dataVersion != Constants.DATA_VERSION && dataVersion != Constants.PREV_DATA_VERSION) {
throw new RuntimeException("This version of accumulo (" + codeVersion + ") is not compatible with files stored using data version " + dataVersion);
}
TreeMap<String,String> sortedProps = new TreeMap<String,String>();