Re: Precode for abstract interpreters

2021-10-19 Thread Daubignard Marion
Hi Jeff, I'd like to set up some environment variables. Le 19 oct. 2021 05:46, Jeff Zhang a écrit : What kind of pre code you'd like to execute for your shell ? Daubignard Marion mailto:marion.daubign...@ssi.gouv.fr>> 于2021年10月19日周二 上午3:22写道: OK, so it’s not that I don’t manage to do it, actu

Re: [DISCUSS] Release of Zeppelin 0.10.1

2021-10-19 Thread Jeff Zhang
Hi Philipp, Spark API is very stable now, 3.2.0 is compatible with Spark 3.1.2. Even it is incompatible, it may not affect Zeppelin. Because Zeppelin only use a few api of Spark. And there's no many code change in Zeppelin side to support Spark 3.2.0. (Only SparkVersions.java needs to be updated I

Re: Precode for abstract interpreters

2021-10-19 Thread Jeff Zhang
I don't think you need to use precode to set env. You can set env directly in shell's interpreter setting. e.g. If you set ENV_1 as value_1, you can get this in shell interpreter via echo $ENV_1 Daubignard Marion 于2021年10月19日周二 下午3:24写道: > Hi Jeff, > I'd like to set up some environment variables

RE: Precode for abstract interpreters

2021-10-19 Thread Daubignard Marion
Thanks for the answer. It works on some level, but if I set PATH using $PATH for example, it does not. Since I’m not sure which part of the interpreter code makes it work, I guess it is expected. It seems to me that the properties are set in the interpret wrapper of AbstractInterpreter, with th