org.apache.zeppelin.submarine.IPySubmarineInterpreter Maven / Gradle / Ivy
/*
* Licensed 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.submarine;
import org.apache.zeppelin.interpreter.InterpreterException;
import org.apache.zeppelin.python.IPythonInterpreter;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Properties;
public class IPySubmarineInterpreter extends IPythonInterpreter {
private static final Logger LOGGER = LoggerFactory.getLogger(IPySubmarineInterpreter.class);
private PySubmarineInterpreter pySubmarineInterpreter;
public IPySubmarineInterpreter(Properties properties) {
super(properties);
}
@Override
public void open() throws InterpreterException {
PySubmarineInterpreter pySparkInterpreter =
getInterpreterInTheSameSessionByClassName(PySubmarineInterpreter.class, false);
pySubmarineInterpreter
= getInterpreterInTheSameSessionByClassName(PySubmarineInterpreter.class);
super.open();
}
}