Hi Udit, In addition to Eran's answer, https://github.com/apache/incubator-zeppelin/blob/master/zeppelin-server/src/main/java/org/apache/zeppelin/rest/InterpreterRestApi.java is implementation of REST endpoint for interpreter setting. The code might help until we get some documentation.
Thanks, moon On Sun, Aug 16, 2015 at 10:30 PM IT CTO <[email protected]> wrote: > Thanks for the good question (god questions are one that makes us build a > better product :-)) > > The short answer is yes. BUT no documentation for it right now. > if you go to your browser to your zeppelin IP (replace localhost:8080 > with your server IP and port) > <http://localhost:8080/api/interpreter/setting/> > > (GET) http://localhost:8080/api/interpreter/ will list the interpreters > by group > (GET) http://localhost:8080/api/interpreter/setting will list interpreter > setting > (PUT) http://localhost:8080/api/interpreter/setting/{settingId} will > update setting > (DELETE) http://localhost:8080/api/interpreter/setting/{settingId} will > remove the interpreter setting > > More formal documentation to come :-) > > Eran > > On Mon, Aug 17, 2015 at 5:29 AM Udit Mehta <[email protected]> wrote: > >> Hi, >> >> I was trying to figure if its possible to update the zeppelin interpreter >> settings using a REST endpoint. Is this possible and is there any >> documentation around it? >> >> Thanks in advance, >> Udit >> >
