return -1;
}
TachyonURI path = new TachyonURI(argv[1]);
TachyonFS tachyonClient = createFS(path);
int fileId = tachyonClient.getFileId(path);
tachyonClient.reportLostFile(fileId);
System.out.println(path + " with file id " + fileId + " has reported been report lost.");
return 0;
}
public int request(String[] argv) throws IOException {