Skip to content

Commit f234dae

Browse files
authored
Merge pull request #102285 from mimig1/01242020docs
HDI: Adding work around for Jupyter notebook known issue.
2 parents 78fc4a6 + 50b4b0e commit f234dae

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

articles/hdinsight/hdinsight-release-notes.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.reviewer: jasonh
77
ms.custom: hdinsightactive
88
ms.service: hdinsight
99
ms.topic: conceptual
10-
ms.date: 01/08/2019
10+
ms.date: 01/24/2019
1111
---
1212
# Release notes
1313

@@ -60,3 +60,34 @@ HDInsight continues to make cluster reliability and performance improvements.
6060

6161
## Component version change
6262
No component version change for this release. You could find the current component versions for HDInsight 4.0 ad HDInsight 3.6 here.
63+
64+
## Known issues
65+
66+
As of January 24, 2020, there is an active issue in which you may receive an error when attempting to use a Jupyter notebook. Use the steps below to fix the issue. You can also refer to this [MSDN post](https://social.msdn.microsoft.com/Forums/en-us/8c763fb4-79a9-496f-a75c-44a125e934ac/hdinshight-create-not-create-jupyter-notebook?forum=hdinsight) or this [StackOverflow post](https://stackoverflow.com/questions/59687614/azure-hdinsight-jupyter-notebook-not-working/59831103) for up-to-date information, or to ask additional questions. This page will be updated when the issue is fixed.
67+
68+
**Errors**
69+
70+
* ValueError: Cannot convert notebook to v5 because that version doesn't exist
71+
* Error loading notebook An unknown error occurred while loading this notebook. This version can load notebook formats v4 or earlier
72+
73+
**Cause**
74+
75+
The _version.py file on the cluster was updated to 5.x.x instead of 4.4.x.##.
76+
77+
**Solution**
78+
79+
If you create a new Jupyter notebook and receive one of the errors listed above, perform the following steps to fix the issue.
80+
81+
1. Open Ambari in a web browser by going to https://CLUSTERNAME.azurehdinsight.net, where CLUSTERNAME is the name of your cluster.
82+
1. In Ambari, on the left menu, click **Jupyter**, then on **Service Actions**, click **Stop**.
83+
1. ssh into the cluster headnode where the Jupyter service is running.
84+
1. Open the following file /usr/bin/anaconda/lib/python2.7/site-packages/nbformat/_version.py in sudo mode.
85+
1. The existing entry should show something similar to the following code:
86+
87+
version_info = (5, 0, 3)
88+
89+
Modify the entry to:
90+
91+
version_info = (4, 4, 0)
92+
1. Save the file.
93+
1. Go back to Ambari, and in **Service Actions**, click **Restart All**.

0 commit comments

Comments
 (0)