Repository: systemml Updated Branches: refs/heads/master 4ea1d5324 -> b9831f31a
[MINOR] Turn on the parallel flush of jvm stdout by default. Project: http://git-wip-us.apache.org/repos/asf/systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/b9831f31 Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/b9831f31 Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/b9831f31 Branch: refs/heads/master Commit: b9831f31a977d4e18c9195fd0faa579e069a8c72 Parents: 4ea1d53 Author: Niketan Pansare <[email protected]> Authored: Wed Nov 29 10:23:20 2017 -0800 Committer: Niketan Pansare <[email protected]> Committed: Wed Nov 29 10:23:20 2017 -0800 ---------------------------------------------------------------------- src/main/python/systemml/classloader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/systemml/blob/b9831f31/src/main/python/systemml/classloader.py ---------------------------------------------------------------------- diff --git a/src/main/python/systemml/classloader.py b/src/main/python/systemml/classloader.py index fb0a731..96f1494 100644 --- a/src/main/python/systemml/classloader.py +++ b/src/main/python/systemml/classloader.py @@ -57,8 +57,8 @@ def get_spark_context(): _in_jvm_stdout = False default_jvm_stdout = True -default_jvm_stdout_parallel_flush = False -def set_default_jvm_stdout(enable, parallel_flush=False): +default_jvm_stdout_parallel_flush = True +def set_default_jvm_stdout(enable, parallel_flush=True): """ This is useful utility method to get the output of the driver JVM from within a Jupyter notebook
