throws FileAlreadyExistException, InvalidPathException, TableColumnException,
TachyonException {
LOG.info("createRawTable" + CommonUtils.parametersToString(path, columns));
if (columns <= 0 || columns >= CommonConf.get().MAX_COLUMNS) {
throw new TableColumnException("Column " + columns + " should between 0 to "
+ CommonConf.get().MAX_COLUMNS);
}
int id;
try {