Jongyoul Lee created ZEPPELIN-995:
-------------------------------------

             Summary: Change scheduler for JDBC interpreter to use concurrent 
execution
                 Key: ZEPPELIN-995
                 URL: https://issues.apache.org/jira/browse/ZEPPELIN-995
             Project: Zeppelin
          Issue Type: Improvement
          Components: zeppelin-interpreter
    Affects Versions: 0.5.6
            Reporter: Jongyoul Lee
            Assignee: Jongyoul Lee


{noformat}
JDBCInterpreter:
  @Override
  public Scheduler getScheduler() {
    return SchedulerFactory.singleton().createOrGetFIFOScheduler(
        JDBCInterpreter.class.getName() + this.hashCode());
  }

HiveInterpreter:
  @Override
  public Scheduler getScheduler() {
    return SchedulerFactory.singleton().createOrGetParallelScheduler(
        HiveInterpreter.class.getName() + this.hashCode(), 10);
  }
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to