ZEPPELIN-440 HiveInterpreter with multiple configuration

- Restored ParallelScheduler from FIFOScheduler
This commit is contained in:
Jongyoul Lee 2015-11-24 16:13:54 +09:00
parent 26160507ce
commit f2b61c0aa7

View file

@ -284,8 +284,8 @@ public class HiveInterpreter extends Interpreter {
@Override
public Scheduler getScheduler() {
return SchedulerFactory.singleton().createOrGetFIFOScheduler(
HiveInterpreter.class.getName() + this.hashCode());
return SchedulerFactory.singleton().createOrGetParallelScheduler(
HiveInterpreter.class.getName() + this.hashCode(), 10);
}
@Override