Skip to content

Latest commit

 

History

History
118 lines (111 loc) · 4.9 KB

File metadata and controls

118 lines (111 loc) · 4.9 KB
title azdata bdc reference
titleSuffix SQL Server big data clusters
description Reference article for azdata bdc commands.
author MikeRayMSFT
ms.author mikeray
ms.reviewer mihaelab
ms.date 08/28/2019
ms.topic reference
ms.prod sql
ms.technology big-data-cluster

azdata bdc

[!INCLUDEtsql-appliesto-ssver15-xxxx-xxxx-xxx]

This article is a reference article for azdata.

Commands

azdata bdc create Create Big Data Cluster.
azdata bdc delete Delete Big Data Cluster.
azdata bdc config Configuration commands.
azdata bdc endpoint Endpoint commands.
azdata bdc debug Debug commands.
azdata bdc status BDC status commands.
azdata bdc control Control service commands.
azdata bdc sql Sql service commands.
azdata bdc hdfs Hdfs service commands.
azdata bdc spark Spark service commands.
azdata bdc gateway Gateway service commands.
azdata bdc app App service commands.
azdata bdc hdfs The HDFS module provides commands to access an HDFS file system.
azdata bdc spark The Spark commands allow the user to interact with the Spark system by creating and managing sessions, statements, and batches.

azdata bdc create

Create a SQL Server Big Data Cluster - Kubernetes configuration is required on your system along with the following environment variables ['CONTROLLER_USERNAME', 'CONTROLLER_PASSWORD', 'MSSQL_SA_PASSWORD', 'KNOX_PASSWORD'].

azdata bdc create [--name -n] 
                  [--config-profile -c]  
                  [--accept-eula -a]  
                  [--node-label -l]  
                  [--force -f]

Examples

Guided BDC deployment experience - you will receive prompts for needed values.

azdata bdc create

BDC deployment with arguments.

azdata bdc create --accept-eula yes --config-profile aks-dev-test

BDC deployment with specified name instead of default name in the profile.

azdata bdc create --name <cluster_name> --accept-eula yes --config-profile aks-dev-test --force

BDC deployment with arguments - no prompts will be given as the --force flag is used.

azdata bdc create --accept-eula yes --config-profile aks-dev-test --force

Optional Parameters

--name -n

Big data cluster name, used for kubernetes namespaces.

--config-profile -c

Big data cluster config profile, used for deploying the cluster: ['aks-dev-test', 'kubeadm-prod', 'minikube-dev-test', 'kubeadm-dev-test']

--accept-eula -a

Do you accept the license terms? [yes/no]. If you do not want to use this arg, you may set the environment variable ACCEPT_EULA to 'yes'. The license terms for this product can be viewed at https://go.microsoft.com/fwlink/?LinkId=2002534.

--node-label -l

Big data cluster node label, used to designate what nodes to deploy to.

--force -f

Force create, the user will not be prompted for any values and all issues will be printed as partof stderr.

Global Arguments

--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--output -o

Output format. Allowed values: json, jsonc, table, tsv. Default: json.

--query -q

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

azdata bdc delete

Delete the SQL Server Big Data Cluster - Kubernetes configuration is required on your system.

azdata bdc delete --name -n 
                  [--force -f]

Examples

BDC delete.

azdata bdc delete --name <cluster_name>

Required Parameters

--name -n

Big data cluster name, used for kubernetes namespace.

Optional Parameters

--force -f

Force delete big data cluster.

Global Arguments

--debug

Increase logging verbosity to show all debug logs.

--help -h

Show this help message and exit.

--output -o

Output format. Allowed values: json, jsonc, table, tsv. Default: json.

--query -q

JMESPath query string. See http://jmespath.org/ for more information and examples.

--verbose

Increase logging verbosity. Use --debug for full debug logs.

Next steps