mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
support scald
This commit is contained in:
parent
55e870403b
commit
3f75bd5721
1 changed files with 9 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ import org.apache.zeppelin.interpreter.InterpreterContext;
|
|||
import org.apache.zeppelin.interpreter.InterpreterPropertyBuilder;
|
||||
import org.apache.zeppelin.interpreter.InterpreterResult;
|
||||
import org.apache.zeppelin.interpreter.InterpreterResult.Code;
|
||||
import org.apache.zeppelin.interpreter.RemoteWorksController;
|
||||
import org.apache.zeppelin.interpreter.thrift.InterpreterCompletion;
|
||||
import org.apache.zeppelin.scheduler.Scheduler;
|
||||
import org.apache.zeppelin.scheduler.SchedulerFactory;
|
||||
|
|
@ -115,6 +116,14 @@ public class ScaldingInterpreter extends Interpreter {
|
|||
interpreter.intp().close();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setRemoteZeppelinServerController(RemoteWorksController zServer) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public RemoteWorksController getRemoteZeppelinServerController() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public InterpreterResult interpret(String cmd, InterpreterContext contextInterpreter) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue