Skip to content

Commit 5f6f7a5

Browse files
authored
Merge pull request #104039 from dagiro/ts_spark21
ts_spark21
2 parents 770bc2f + 98ca5a4 commit 5f6f7a5

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed

articles/hdinsight/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,8 @@
372372
href: ./spark/apache-spark-run-machine-learning-automl.md
373373
- name: Troubleshoot
374374
items:
375+
- name: Can't create Jupyter notebook
376+
href: ./spark/troubleshoot-jupyter-notebook-convert.md
375377
- name: OutOfMemoryError exception
376378
href: ./spark/apache-spark-troubleshoot-outofmemory.md
377379
- name: Apache Spark job fails - NoClassDefFoundError
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
title: Unable to create Jupyter notebook in Azure HDInsight
3+
description: Describes troubleshooting steps and possible resolutions for issues when interacting with Azure HDInsight clusters.
4+
author: hrasheed-msft
5+
ms.author: hrasheed
6+
ms.reviewer: jasonh
7+
ms.service: hdinsight
8+
ms.topic: troubleshooting
9+
ms.date: 02/11/2020
10+
---
11+
12+
# Unable to create Jupyter notebook in Azure HDInsight
13+
14+
This article describes troubleshooting steps and possible resolutions for issues when interacting with Azure HDInsight clusters.
15+
16+
## Issue
17+
18+
When starting a Jupyter notebook, you receive an error message that contains:
19+
20+
```error
21+
Cannot convert notebook to v5 because that version doesn't exist
22+
```
23+
24+
## Cause
25+
26+
A version mismatch.
27+
28+
## Resolution
29+
30+
1. Use [ssh command](../hdinsight-hadoop-linux-use-ssh-unix.md) to connect to your cluster. Edit the command below by replacing CLUSTERNAME with the name of your cluster, and then enter the command:
31+
32+
```cmd
33+
34+
```
35+
36+
1. Open `_version.py` by executing the following command:
37+
38+
```bash
39+
sudo nano /usr/bin/anaconda/lib/python2.7/site-packages/nbformat/_version.py
40+
```
41+
42+
1. Change **5** to **4** so the modified line appears as follows:
43+
44+
```python
45+
version_info = (4, 0, 3)
46+
```
47+
48+
Save changes by entering **Ctrl + X**, **Y**, **Enter**.
49+
50+
1. From a web browser, navigate to `https://CLUSTERNAME.azurehdinsight.net`, where `CLUSTERNAME` is the name of your cluster.
51+
52+
1. Select **Jupyter** and then restart the service.
53+
54+
## Next steps
55+
56+
If you didn't see your problem or are unable to solve your issue, visit one of the following channels for more support:
57+
58+
* Get answers from Azure experts through [Azure Community Support](https://azure.microsoft.com/support/community/).
59+
60+
* Connect with [@AzureSupport](https://twitter.com/azuresupport) - the official Microsoft Azure account for improving customer experience. Connecting the Azure community to the right resources: answers, support, and experts.
61+
62+
* If you need more help, you can submit a support request from the [Azure portal](https://portal.azure.com/?#blade/Microsoft_Azure_Support/HelpAndSupportBlade/). Select **Support** from the menu bar or open the **Help + support** hub. For more detailed information, review [How to create an Azure support request](https://docs.microsoft.com/azure/azure-supportability/how-to-create-azure-support-request). Access to Subscription Management and billing support is included with your Microsoft Azure subscription, and Technical Support is provided through one of the [Azure Support Plans](https://azure.microsoft.com/support/plans/).

0 commit comments

Comments
 (0)