return new TachyonWorker(master, worker, dataPort, selectorThreads, acceptQueueSizePerThreads,
workerThreads, localFolder, spaceLimitBytes);
}
private static String getMasterLocation(String[] args) {
WorkerConf wConf = WorkerConf.get();
String confFileMasterLoc = wConf.MASTER_HOSTNAME + ":" + wConf.MASTER_PORT;
String masterLocation;
if (args.length < 1) {
masterLocation = confFileMasterLoc;
} else {