amakaur
amakaur
@zjffdu in the previous versions pre-index was done at startup time so looks like in 0.9.0 pre-index ONLY happens when any kind of update happens to a note.
Thanks for the suggestion @zjffdu , i tried setting spark.app.name in SparkInterpreterLauncher#buildEnvFromProperties through env variable "SPARK_APP_NAME" and via spark property "spark.app.name", but didn't seem to work. It sets spark.app.name to...
@zjffdu here's two ways that i tried: - by either setting SPARK_APP_NAME OR by setting spark property spark.app.name ``` @Override public Map buildEnvFromProperties(InterpreterLaunchContext context) throws IOException { Map env =...
@zjffdu Thanks for trying it out. Also, let me try again w/ spark.app.name, but i had spark.app.name commented out in the code that i posted just to show two different...
Still not working for me, but will debug to see if i can find something. ```@Override public Map buildEnvFromProperties(InterpreterLaunchContext context) throws IOException { Map env = super.buildEnvFromProperties(context); Properties sparkProperties =...
After debugging i realized that the reason my changes weren't working was because spark.app.name was getting overridden by the default value set in interpreter-setting. i did checkout your branch and...
Yup will do once i figure out why user name is `spark` instead of an actual user name such as `amandeep.kaur`. I'm running Zeppelin on Mesos mode. The above is...
@zjffdu after debugging a bit this new approach might not work for me because user is set as `spark` instead of LDAP user.
Yeah LDAP is enabled. It works as expected w/ original solution.