You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The %%spark magic is currently hardwired to store its configuration at Paths.get(System.getProperty("user.home") + File.separator + ".jupyter" + File.separator + "beakerx.json"))));
It should instead honor paths (if) specified in the JUPYTER_CONFIG_DIR environment variable
e.g., I have JUPYTER_CONFIG_DIR set to /mnt/mesos/sandbox/.jupyter which yields the following acceptable config locations with jupyter --paths:
Instead, the Spark Magic fails to initialize when I run the notebook as the non-privileged user nobody because it attempts to store beakerx.json under /nonexistent/.jupyter, which as the name implies, is non-existent :)
The
%%spark
magic is currently hardwired to store its configuration atPaths.get(System.getProperty("user.home") + File.separator + ".jupyter" + File.separator + "beakerx.json"))));
It should instead honor paths (if) specified in the
JUPYTER_CONFIG_DIR
environment variablee.g., I have
JUPYTER_CONFIG_DIR
set to/mnt/mesos/sandbox/.jupyter
which yields the following acceptable config locations withjupyter --paths
:Instead, the Spark Magic fails to initialize when I run the notebook as the non-privileged user
nobody
because it attempts to storebeakerx.json
under/nonexistent/.jupyter
, which as the name implies, is non-existent :)The text was updated successfully, but these errors were encountered: