Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions spark/src/main/java/org/apache/zeppelin/spark/ZeppelinR.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ public void open() throws IOException {
cmd.addArgument(Integer.toString(port));
cmd.addArgument(libPath);
cmd.addArgument(Integer.toString(sparkVersion.toNumber()));

// dump out the R command to facilitate manually running it, e.g. for fault diagnosis purposes
logger.debug(cmd.toString());

executor = new DefaultExecutor();
outputStream = new SparkOutputStream(logger);
Expand Down