Hello,
I've been running IPython notebook for the past few months for my users. When running IPython notebook I was able to direct all logging messages to a textfile that we used to document the logging output. This was the code we used in our script to run at server startup
"IPYTHON_OPTS='notebook --profile=pyspark' pyspark --master yarn --deploy-mode client --num-executors 18 --executor-memory 6g --executor-cores 4 --driver-memory 6g --driver-cores 4 &" 2&>> /var/log/ipython-notebook.out
We were able to have all logging messages stored in ipython-notebook.out
Once we upgraded to jupyter notebook we tried to run a similar startup script and we have been unable to get the jupyter notebook logging to be written to an output textfile, and we have not been able to get the jupyter notebook logging to not run in the console, even when we run the process in background.
Has anybody else ran into this issue? Is there a way to force jupyter notebook to write its logging messages to an output textfile?
Best,
Matt Rice