blob: 16242be431c9bc9441b058b45371e843af6b5fb7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.zeppelin.scheduler;
import org.apache.zeppelin.conf.ZeppelinConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutorService;
/**
* Factory class for creating schedulers except RemoteScheduler as RemoteScheduler runs in
* zeppelin server process instead of interpreter process.
*
*/
public class SchedulerFactory {
private static final Logger LOGGER = LoggerFactory.getLogger(SchedulerFactory.class);
private static final String SCHEDULER_EXECUTOR_NAME = "SchedulerFactory";
protected ExecutorService executor;
protected Map<String, Scheduler> schedulers = new HashMap<>();
private static SchedulerFactory singleton;
private static Long singletonLock = new Long(0);
public static SchedulerFactory singleton() {
if (singleton == null) {
synchronized (singletonLock) {
if (singleton == null) {
try {
singleton = new SchedulerFactory();
} catch (Exception e) {
LOGGER.error(e.toString(), e);
}
}
}
}
return singleton;
}
SchedulerFactory() {
ZeppelinConfiguration zConf = ZeppelinConfiguration.create();
int threadPoolSize =
zConf.getInt(ZeppelinConfiguration.ConfVars.ZEPPELIN_INTERPRETER_SCHEDULER_POOL_SIZE);
LOGGER.info("Scheduler Thread Pool Size: " + threadPoolSize);
executor = ExecutorFactory.singleton().createOrGet(SCHEDULER_EXECUTOR_NAME, threadPoolSize);
}
public void destroy() {
LOGGER.info("Destroy all executors");
ExecutorFactory.singleton().shutdown(SCHEDULER_EXECUTOR_NAME);
this.executor.shutdownNow();
this.executor = null;
singleton = null;
}
public Scheduler createOrGetFIFOScheduler(String name) {
synchronized (schedulers) {
if (!schedulers.containsKey(name)) {
FIFOScheduler s = new FIFOScheduler(name);
schedulers.put(name, s);
executor.execute(s);
}
return schedulers.get(name);
}
}
public Scheduler createOrGetParallelScheduler(String name, int maxConcurrency) {
synchronized (schedulers) {
if (!schedulers.containsKey(name)) {
ParallelScheduler s = new ParallelScheduler(name, maxConcurrency);
schedulers.put(name, s);
executor.execute(s);
}
return schedulers.get(name);
}
}
public Scheduler createOrGetScheduler(Scheduler scheduler) {
synchronized (schedulers) {
if (!schedulers.containsKey(scheduler.getName())) {
schedulers.put(scheduler.getName(), scheduler);
executor.execute(scheduler);
}
return schedulers.get(scheduler.getName());
}
}
public void removeScheduler(String name) {
synchronized (schedulers) {
Scheduler s = schedulers.remove(name);
if (s != null) {
s.stop();
}
}
}
public ExecutorService getExecutor() {
return executor;
}
}