mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 03:23:00 +00:00
Turn off ipython low-level output capture and forward
This commit is contained in:
13
pyspark-notebook/ipython_kernel_config.py
Normal file
13
pyspark-notebook/ipython_kernel_config.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# Configuration file for ipython-kernel.
|
||||
# See <https://ipython.readthedocs.io/en/stable/config/options/kernel.html>
|
||||
|
||||
# With IPython >= 6.0.0, all outputs to stdout/stderr are captured.
|
||||
# It is the case for subprocesses and output of compiled libraries like Spark.
|
||||
# Those logs now both head to notebook logs and in notebooks outputs.
|
||||
# Logs are particularly verbose with Spark, this why we turn them off through this flag.
|
||||
# <https://github.com/jupyter/docker-stacks/issues/1423>
|
||||
|
||||
# Attempt to capture and forward low-level output, e.g. produced by Extension
|
||||
# libraries.
|
||||
# Default: True
|
||||
c.IPKernelApp.capture_fd_output = False # noqa: F821
|
Reference in New Issue
Block a user