big data cluster -> Big Data Cluster (#7536)

This commit is contained in:
Charles Gagnon
2019-10-07 13:13:40 -07:00
committed by GitHub
parent 5454917569
commit f418104b7a
10 changed files with 17 additions and 17 deletions

View File

@@ -45,7 +45,7 @@
"|Tools|Description|Installation|\n",
"|---|---|---|\n",
"|kubectl | Command-line tool for monitoring the underlying Kubernetes cluster | [Installation](https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl-binary-using-native-package-management) |\n",
"|azdata | Command-line tool for installing and managing a big data cluster |[Installation](https://docs.microsoft.com/en-us/sql/big-data-cluster/deploy-install-azdata?view=sqlallproducts-allversions) |\n",
"|azdata | Command-line tool for installing and managing a Big Data Cluster |[Installation](https://docs.microsoft.com/en-us/sql/big-data-cluster/deploy-install-azdata?view=sqlallproducts-allversions) |\n",
"|Pandas Package | Python package for data manipulation | Will be installed by the notebook if not present |\n",
"\n",
"\n",
@@ -123,7 +123,7 @@
"- **Type** the login info\r\n",
"- **Press** enter.\r\n",
"\r\n",
"If your cluster is missing a configuration file, you will be asked to provide your controller endpoint. (Format: **https://00.00.00.000:00000**) You can find the controller endpoint from the big data cluster dashboard in the Service Endpoints table. The endpoint is listed as **Cluster Management Service.**\r\n",
"If your cluster is missing a configuration file, you will be asked to provide your controller endpoint. (Format: **https://00.00.00.000:00000**) You can find the controller endpoint from the Big Data Cluster dashboard in the Service Endpoints table. The endpoint is listed as **Cluster Management Service.**\r\n",
""
],
"metadata": {}
@@ -154,7 +154,7 @@
"print('***********')\n",
"\n",
"!azdata logout\n",
"# Login in to your big data cluster \n",
"# Login in to your Big Data Cluster \n",
"cmd = f'azdata login -n {cluster_name} -u {controller_username} -a yes'\n",
"print(\"Start \" + cmd)\n",
"os.environ['CONTROLLER_USERNAME'] = controller_username\n",
@@ -244,7 +244,7 @@
" mydata = HTML(df.to_html(render_links=True))\n",
" display(mydata)\n",
" \n",
"# Display status of big data cluster\n",
"# Display status of Big Data Cluster\n",
"results = !azdata bdc status show -o json\n",
"show_results(results)"
],