You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/hdinsight/hdinsight-release-notes.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.reviewer: jasonh
7
7
ms.custom: hdinsightactive
8
8
ms.service: hdinsight
9
9
ms.topic: conceptual
10
-
ms.date: 01/08/2019
10
+
ms.date: 01/24/2019
11
11
---
12
12
# Release notes
13
13
@@ -60,3 +60,34 @@ HDInsight continues to make cluster reliability and performance improvements.
60
60
61
61
## Component version change
62
62
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, do the following:
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:
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