Skip to content

Commit deaf4f9

Browse files
committed
edit more broken links - deploy-notebooks
1 parent aca77e1 commit deaf4f9

10 files changed

Lines changed: 61 additions & 104 deletions

.openpublishing.redirection.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16588,7 +16588,7 @@
1658816588
{
1658916589
"source_path": "docs/big-data-clusters/notebooks-guidance.md",
1659016590
"redirect_url": "/sql/azure-data-studio/notebooks-guidance.md",
16591-
"redirect_document_id": false
16591+
"redirect_document_id": true
1659216592
},
1659316593
{
1659416594
"source_path": "docs/azure-data-studio/sql-notebooks.md.md",
@@ -16598,17 +16598,27 @@
1659816598
{
1659916599
"source_path": "docs/big-data-clusters/tutorial-notebook-spark.md",
1660016600
"redirect_url": "/sql/big-data-clusters/notebooks-tutorial-spark.md",
16601-
"redirect_document_id": false
16601+
"redirect_document_id": true
1660216602
},
1660316603
{
1660416604
"source_path": "docs/big-data-clusters/deploy-notebooks.md",
1660516605
"redirect_url": "/sql/big-data-clusters/notebooks-deploy.md",
16606-
"redirect_document_id": false
16606+
"redirect_document_id": true
1660716607
},
1660816608
{
1660916609
"source_path": "docs/big-data-clusters/manage-notebooks.md",
1661016610
"redirect_url": "/sql/big-data-clusters/notebooks-manage.md",
16611-
"redirect_document_id": false
16611+
"redirect_document_id": true
16612+
},
16613+
{
16614+
"source_path": "docs/big-data-clusters/manage-notebooks.md",
16615+
"redirect_url": "/sql/big-data-clusters/notebooks-manage-bdc.md",
16616+
"redirect_document_id": true
16617+
},
16618+
{
16619+
"source_path": "docs/big-data-clusters/notebooks-how-to-manage.md",
16620+
"redirect_url": "/sql/big-data-clusters/notebooks-manage-bdc.md",
16621+
"redirect_document_id": true
1661216622
}
1661316623
]
1661416624
}

docs/azure-data-studio/notebooks-how-to-manage-sql-server.md renamed to docs/azure-data-studio/notebooks-manage-sql-server.md

File renamed without changes.

docs/big-data-cluster/cluster-troubleshooting-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.technology: big-data-cluster
1818
This article describes several useful Kubernetes commands that you can use to monitor and troubleshoot a [!INCLUDE[big-data-clusters-2019](../includes/ssbigdataclusters-ver15.md)]. It shows how to view in-depth details of a pod or other Kubernetes artifacts that are located in the big data cluster. This article also covers common tasks, such as copying files to or from a container running one of the SQL Server big data cluster services.
1919

2020
> [!TIP]
21-
> For monitoring status of big data clusters components you can use [**azdata bdc status**](deployment-guidance.md#status) commands or the built-in [troubleshooting notebooks](manage-notebooks.md) in provided with Azure Data Studio.
21+
> For monitoring status of big data clusters components you can use [**azdata bdc status**](deployment-guidance.md#status) commands or the built-in [troubleshooting notebooks](notebooks-manage.md) in provided with Azure Data Studio.
2222
2323
> [!TIP]
2424
> Run the following **kubectl** commands on either a Windows (cmd or PS) or Linux (bash) client machine. They require previous authentication in the cluster and a cluster context to run against. For example, for a previously created AKS cluster you can run `az aks get-credentials --name <aks_cluster_name> --resource-group <azure_resource_group_name>` to download the Kubernetes cluster configuration file and set the cluster context.

docs/big-data-cluster/deploy-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Other tools are required for different scenarios. Each article should explain th
5050

5151
Big data clusters are deployed as a series of interrelated containers that are managed in [Kubernetes](https://kubernetes.io/docs/home). You can host Kubernetes in a variety of ways. Even if you already have an existing Kubernetes environment, you should review the related requirements for big data clusters.
5252

53-
- **Azure Kubernetes Service (AKS)**: AKS allows you to deploy a managed Kubernetes cluster in Azure. You only manage and maintain the agent nodes. With AKS, you don't have to provision your own hardware for the cluster. It is also easy to use a [python script](quickstart-big-data-cluster-deploy.md) or a [deployment notebook](deploy-notebooks.md) to create the AKS cluster and deploy the big data cluster in one step. For more information about configuring AKS for a big data cluster deployment, see [Configure Azure Kubernetes Service for [!INCLUDE[big-data-clusters-2019](../includes/ssbigdataclusters-ver15.md)] deployments](deploy-on-aks.md).
53+
- **Azure Kubernetes Service (AKS)**: AKS allows you to deploy a managed Kubernetes cluster in Azure. You only manage and maintain the agent nodes. With AKS, you don't have to provision your own hardware for the cluster. It is also easy to use a [python script](quickstart-big-data-cluster-deploy.md) or a [deployment notebook](notebooks-deploy.md) to create the AKS cluster and deploy the big data cluster in one step. For more information about configuring AKS for a big data cluster deployment, see [Configure Azure Kubernetes Service for [!INCLUDE[big-data-clusters-2019](../includes/ssbigdataclusters-ver15.md)] deployments](deploy-on-aks.md).
5454

5555
- **Multiple machines**: You can also deploy Kubernetes to multiple Linux machines, which could be physical servers or virtual machines. The [kubeadm](https://kubernetes.io/docs/setup/independent/create-cluster-kubeadm/) tool can be used to create the Kubernetes cluster. You can use a [bash script](deployment-script-single-node-kubeadm.md) to automate this type of deployment. This method works well if you already have existing infrastructure that you want to use for your big data cluster. For more information about using **kubeadm** deployments with big data clusters, see [Configure Kubernetes on multiple machines for [!INCLUDE[big-data-clusters-2019](../includes/ssbigdataclusters-ver15.md)] deployments](deploy-with-kubeadm.md).
5656

@@ -78,7 +78,7 @@ The following deployment scripts are currently available:
7878

7979
You can also deploy a big data cluster by running an Azure Data Studio notebook. For more information on how to use a notebook to deploy on AKS, see the following article:
8080

81-
- [Deploy a big data cluster with Azure Data Studio Notebooks](deploy-notebooks.md).
81+
- [Deploy a big data cluster with Azure Data Studio Notebooks](notebooks-deploy.md).
8282

8383
## Next steps
8484

docs/big-data-cluster/deploy-on-aks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ AKS makes it simple to create, configure, and manage a cluster of virtual machin
2323
This article describes the steps to deploy Kubernetes on AKS using Azure CLI. If you don't have an Azure subscription, create a free account before you begin.
2424

2525
> [!TIP]
26-
> You can also script the deployment of AKS and a big data cluster in one step. For more information, see how to do this in a [python script](quickstart-big-data-cluster-deploy.md) or an Azure Data Studio [notebook](deploy-notebooks.md).
26+
> You can also script the deployment of AKS and a big data cluster in one step. For more information, see how to do this in a [python script](quickstart-big-data-cluster-deploy.md) or an Azure Data Studio [notebook](notebooks-deploy.md).
2727
2828
## Prerequisites
2929

docs/big-data-cluster/deployment-guidance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ You can choose to deploy Kubernetes in any of three ways:
4949
| **Single or Multiple machines (`kubeadm`)** | A Kubernetes cluster deployed on physical or virtual machines using `kubeadm` | [Instructions](deploy-with-kubeadm.md) |
5050

5151
> [!TIP]
52-
> You can also script the deployment of AKS and a big data cluster in one step. For more information, see how to do this in a [python script](quickstart-big-data-cluster-deploy.md) or an Azure Data Studio [notebook](deploy-notebooks.md).
52+
> You can also script the deployment of AKS and a big data cluster in one step. For more information, see how to do this in a [python script](quickstart-big-data-cluster-deploy.md) or an Azure Data Studio [notebook](notebooks-deploy.md).
5353
5454
### Verify Kubernetes configuration
5555

docs/big-data-cluster/notebooks-deploy.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In addition to above, deploying SQL Server 2019 big data cluster also requires:
4040

4141
2. On the **Connections** tab, select the ellipses (**...**), then select **Deploy SQL Server...**.
4242

43-
![Deploy SQL Server](media/deploy-notebooks/deploy-notebooks.png)
43+
![Deploy SQL Server](media/notebooks-deploy/notebooks-deploy.png)
4444

4545
3. From the deployment options, select **SQL Server Big Data Cluster**.
4646

@@ -60,32 +60,32 @@ You can customize the settings of the deployment profile by following the instru
6060

6161
Select the target configuration template from the available templates. The available profiles are filtered depending on the type of deployment target that's chosen in the previous dialog.
6262

63-
![Deployment configuration template Step 1](media/deploy-notebooks/deployment-configuration-template.png)
63+
![Deployment configuration template Step 1](media/notebooks-deploy/deployment-configuration-template.png)
6464

6565
### Azure settings
6666

6767
If the deployment target is a new AKS, additional information such as Azure Subscription ID, resource group, AKS cluster name, VM count, size, and other additional information are required to create the AKS cluster.
6868

69-
![Azure settings](media/deploy-notebooks/azure-settings.png)
69+
![Azure settings](media/notebooks-deploy/azure-settings.png)
7070

7171
If the deployment target is an existing Kubernetes cluster, the wizard prompts for the path to the *kube* config file to import the Kubernetes cluster settings. Ensure the appropriate cluster context is selected where the SQL Server 2019 Big Data Cluster can be deployed.
7272

73-
![Target cluster context](media/deploy-notebooks/target-cluster-context.png)
73+
![Target cluster context](media/notebooks-deploy/target-cluster-context.png)
7474

7575
### Cluster, docker, and AD settings
7676

7777
1. Enter the cluster name for the SQL Server 2019 BDC, admin username, and password.
7878
Note: The same account is used for controller and SQL Server.
7979

80-
![Cluster settings](media/deploy-notebooks/cluster-settings.png)
80+
![Cluster settings](media/notebooks-deploy/cluster-settings.png)
8181

8282
2. Enter the Docker settings as appropriate
8383

84-
![Docker settings](media/deploy-notebooks/docker-settings.png)
84+
![Docker settings](media/notebooks-deploy/docker-settings.png)
8585

8686
3. If the AD authentication is available, enter the AD settings
8787

88-
![Active Directory settings](media/deploy-notebooks/active-directory-settings.png)
88+
![Active Directory settings](media/notebooks-deploy/active-directory-settings.png)
8989

9090
### Service settings
9191

@@ -97,21 +97,21 @@ Enter the number of instances of each of the components in the big data cluster.
9797

9898
A Spark Instance can be included along with HDFS. It's included in the storage pool or on its own in the Spark pool.
9999

100-
![Service settings](media/deploy-notebooks/service-settings.png)
100+
![Service settings](media/notebooks-deploy/service-settings.png)
101101

102102
For additional information on each of these components, you can refer to [master instance](concept-master-instance.md), [data pool](concept-data-pool.md), [storage pool](concept-storage-pool.md), or [compute pool](concept-compute-pool.md).
103103

104104
#### Endpoint settings
105105

106106
The default endpoints have been pre-filled. However, they can be changed as appropriate.
107107

108-
![Endpoint settings](media/deploy-notebooks/endpoint-settings.png)
108+
![Endpoint settings](media/notebooks-deploy/endpoint-settings.png)
109109

110110
#### Storage settings
111111

112112
The storage settings include storage class and claim size for Data and Logs. The settings can be applied across Storage, Data, and SQL Server master pool.
113113

114-
![Storage settings](media/deploy-notebooks/storage-settings.png)
114+
![Storage settings](media/notebooks-deploy/storage-settings.png)
115115

116116
#### Advanced storage settings
117117

@@ -121,13 +121,13 @@ You can add additional storage settings under **Advanced storage settings**
121121
* Data pool
122122
* SQL Server Master
123123

124-
![Advanced storage settings](media/deploy-notebooks/advanced-storage-settings.png)
124+
![Advanced storage settings](media/notebooks-deploy/advanced-storage-settings.png)
125125

126126
### Summary
127127

128128
This screen summarizes all the input that was provided to deploy SQL Server 2019 Big Data Cluster. The config files can be downloaded via the **Save config files** button. Select **Script to Notebook** to script out the entire deployment configuration to a Notebook. Once the Notebook is open, select **Run Cells** to start deploying the SQL Server 2019 BDC to the selected target.
129129

130-
![Summary](media/deploy-notebooks/deploy-sql-server-big-data-cluster-on-a-new-AKS-cluster.png)
130+
![Summary](media/notebooks-deploy/deploy-sql-server-big-data-cluster-on-a-new-AKS-cluster.png)
131131

132132
## Next steps
133133

docs/big-data-cluster/notebooks-how-to-manage.md

Lines changed: 0 additions & 79 deletions
This file was deleted.

docs/big-data-cluster/notebooks-manage.md renamed to docs/big-data-cluster/notebooks-manage-bdc.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,32 +38,58 @@ In addition to those prerequisites, to deploy SQL Server 2019 Big Data Clusters,
3838
* [Azure CLI](/cli/azure/install-azure-cli)
3939

4040
## Access troubleshooting notebooks
41+
4142
There are three ways to access troubleshooting notebooks.
4243

4344
### Command Palette
45+
4446
1. Select **View** > **Command Palette**.
47+
4548
2. Enter **Jupyter Books: SQL Server 2019 Guide**.
4649

4750
The Jupyter Books viewlet with the Jupyter Book that contains the troubleshooting notebooks related to SQL Server Big Data Clusters will open.
4851

4952
### SQL Master Dashboard
53+
5054
1. After you install Azure Data Studio Insiders, connect to a SQL Server Big Data Clusters instance.
55+
5156
2. After you're connected to the instance, right-click your server name under **CONNECTIONS** and select **Manage**.
57+
5258
3. In the dashboard, select **SQL Server Big Data Cluster**. Select **SQL Server 2019 guide** to open the Jupyter Book that contains the notebooks you need.
5359
![Jupyter notebooks in the dashboard](media/manage-notebooks/jupyter-book-button.png)
5460

55-
1. Select the notebook for the task that you need to complete.
61+
4. Select the notebook for the task that you need to complete.
5662

5763
### Controller Dashboard
64+
5865
1. In the **Connections** view, expand **SQL Server Big Data Clusters**.
66+
5967
2. Add controller endpoint details.
68+
6069
3. After you're connected to the controller, right-click the endpoint and select **Manage**.
70+
6171
4. After the dashboard loads, select **troubleshoot** to open the Jupyter Book troubleshooting guides.
6272

6373
## Use troubleshooting notebooks
74+
6475
1. Find the troubleshooting guide that you need in the Jupyter Book table of contents.
65-
1. The notebooks are optimized, so you just need to select **Run Cells**. This action will run each cell in the notebook individually until the notebook is complete.
66-
1. If an error is found, the Jupyter Book will suggest a notebook that you can run to fix the error. Follow the recommended steps, and then run the notebook again.
76+
77+
2. The notebooks are optimized, so you just need to select **Run Cells**. This action will run each cell in the notebook individually until the notebook is complete.
78+
79+
3. If an error is found, the Jupyter Book will suggest a notebook that you can run to fix the error. Follow the recommended steps, and then run the notebook again.
80+
81+
## Change the big data cluster
82+
83+
To change the SQL Server big data cluster for a notebook:
84+
85+
1. Click the **Attach to** menu from the notebook toolbar.
86+
87+
![Click the Attach to menu in the notebook toolbar](./media/notebooks-how-to-manage/select-attach-to-1.png)
88+
89+
2. Click a server from the **Attach to** menu.
90+
91+
![Select a server from the Attach to menu](./media/notebooks-how-to-manage/select-attach-to-2.png)
6792

6893
## Next steps
94+
6995
For more information about notebooks in Azure Data Studio, see [How to use notebooks with SQL Server](../azure-data-studio/notebooks-guidance.md).

docs/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
- name: Kubernetes troubleshooting
197197
href: big-data-cluster/cluster-troubleshooting-commands.md
198198
- name: Manage with notebook
199-
href: big-data-cluster/manage-notebooks.md
199+
href: big-data-cluster/notebooks-manage.md
200200
- name: Manage with controller dashboard
201201
href: big-data-cluster/manage-with-controller-dashboard.md
202202
- name: Manage existing notebooks

0 commit comments

Comments
 (0)