Run a Jupyter Notebook Command
- POST /api/v1.2/commands
Use this API to run a Jupyter notebook. You can view the command’s status, result, or cancel a command using the corresponding Command API that are used for other types of command.
Required Role
The following users can make this API call:
Users who belong to the system-user or system-admin group.
Users who belong to a group associated with a role that allows update on Jupyter Notebook and directory. See Managing Groups and Managing Roles for more information.
Parameters
Note
Parameters marked in bold below are mandatory. Others are optional and have default values.
Parameter |
Description |
---|---|
path |
Path including name of the Jupyter notebook to be run with extension ( |
label |
Label of the cluster on which the this command should be run. If this parameter is not specified then |
command_type |
Type of command to be executed. For Jupyter notebook, the command type is |
arguments |
Valid JSON to be sent to the notebook. Specify the parameters in notebooks and pass the parameter value using the JSON format. key is the parameter’s name and value is the parameter’s value. Supported types in parameters are string, integer, float and boolean. |
Request API Syntax
Here is the Request API syntax for running a Jupyter notebook.
curl -i -X POST -H "X-AUTH-TOKEN: <auth_token>" -H "Content-Type: application/json" -H "Accept: application/json" \
-d '{"path":"<Path>/<Name>", "command_type":"JupyterNotebookCommand", "label":"<ClusterLabel>", "arguments": {"key1":"value1", "key2":"value2", ..., "keyN":"valueN"}}' \
"https://api.qubole.com/api/v1.2/commands"
Note
The above syntax uses https://api.qubole.com as the endpoint. Qubole provides other endpoints to access QDS that are described in Supported Qubole Endpoints on Different Cloud Providers.
Sample API Request
curl -i -X POST -H "X-AUTH-TOKEN: $AUTH_TOKEN" -H "Content-Type: application/json" -H "Accept: application/json" \
-d '{"path":"Users/[email protected]/note1.ipynb", "command_type":"JupyterNotebookCommand", "label":"spark-cluster-1", "arguments": {"name":"xyz", "age":"20"}}' \
"https://api.qubole.com/api/v1.2/commands"
Known Limitation
If there is a warning in one of the cells when this API is run, the notebook stops executing at that cell.
As a workaround, to skip the warning and continue execution, add raises-exception
in that cell’s metadata field by performing the following steps:
Select the cell that shows the warning.
Click on the Tools icon on the left side bar.
Click Advanced Tools.
Add
raises-exception
in the Cell Metadata tags field.Re-run the API.