notebookutils.notebook.run {notebookutils}R Documentation

Runs a notebook and returns its exit value. The notebook will run in the current livy session context by default.

Description

Runs a notebook and returns its exit value. The notebook will run in the current livy session context by default.

Usage

notebookutils.notebook.run(path, timeoutSeconds = 90, arguments = NULL)

Arguments

path

absolute path to the notebook, e.g. /path/to/notebook.

timeoutSeconds

timeout in seconds for the called notebook.

arguments

string map of arguments to pass to the notebook.

Value

Empty string to mimic the exitVal set by mssparkutils.notebook.exit.

Examples

notebookutils.notebook.run('NB1')
notebookutils.notebook.run('NB1', 200)
notebookutils.notebook.run('NB1', 200, list("input"=30))


[Package notebookutils version 1.5.3 Index]