Description
Functionality for creating either files or folders in task attempt folder while job is running. The functionality covers the following methods.
1. public void DaemonProtocol.createFile(String path, String fileName, boolean local) throws IOException;
It uses to create a file with full permissions.
2. public void DaemonProtocol.createFile(String path, String fileName, FsPermission permission, boolean local) throws IOException;
It uses to create a file with given permissions.
3. public void DaemonProtocol.createFolder(String path, String folderName, boolean local) throws IOException;
It uses to create a file with full permissions.
4. public void DaemonProtocol.createFolder(String path, String folderName, FsPermission permission, boolean local) throws IOException;
It uses to create a folder with given permissions.
Attachments
Attachments
Issue Links
- depends upon
-
HADOOP-6332 Large-scale Automated Test Framework
- Closed
- is required by
-
MAPREDUCE-1957 [Herriot] Test Job cache directories cleanup after job completes.
- Open