(ExecType execType, String fileSpec)
| 155 | } |
| 156 | |
| 157 | static String checkDefaultPrefix(ExecType execType, String fileSpec) { |
| 158 | if (fileSpec.startsWith(LOCAL_PREFIX)) |
| 159 | return fileSpec; |
| 160 | return (execType == ExecType.LOCAL ? LOCAL_PREFIX : "") + fileSpec; |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * This function is meant to be used if the mappers/reducers want to access any HDFS file |