@param execTypeString can be 'mapreduce' or 'local'. Local mode will use Hadoop's local job runner to execute the job on the local machine. Mapreduce mode will connect to a cluster to execute the job. If execTypeString is not one of these two, Pig will deduce the ExecutionEngine if it is on the cla
(String execTypeString)
| 182 | * @throws IOException |
| 183 | */ |
| 184 | public PigServer(String execTypeString) throws ExecException, IOException { |
| 185 | this(addExecTypeProperty(PropertiesUtil.loadDefaultProperties(), execTypeString)); |
| 186 | } |
| 187 | |
| 188 | public PigServer(String execTypeString, Properties properties) throws ExecException, IOException { |
| 189 | this(addExecTypeProperty(properties, execTypeString)); |
nothing calls this directly
no test coverage detected