Skip to content

Commit 2f22249

Browse files
committed
SEO work to shorten titles plus markdown cleanup
1 parent 686b4f3 commit 2f22249

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed

articles/data-lake-store/data-lake-store-get-started-powershell.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Learn how to use Azure PowerShell to create an Azure Data Lake Storage Gen1 acco
3131

3232
## Authentication
3333

34-
This article uses a simpler authentication approach with Data Lake Storage Gen1 where you are prompted to enter your Azure account credentials. The access level to Data Lake Storage Gen1 account and file system is then governed by the access level of the logged in user. However, there are other approaches as well to authenticate with Data Lake Storage Gen1, which are **end-user authentication** or **service-to-service authentication**. For instructions and more information on how to authenticate, see [End-user authentication](data-lake-store-end-user-authenticate-using-active-directory.md) or [Service-to-service authentication](data-lake-store-authenticate-using-active-directory.md).
34+
This article uses a simpler authentication approach with Data Lake Storage Gen1 where you're prompted to enter your Azure account credentials. The access level to Data Lake Storage Gen1 account and file system is then governed by the access level of the logged in user. However, there are other approaches to authenticate with Data Lake Storage Gen1, which are end-user authentication or service-to-service authentication. For instructions and more information on how to authenticate, see [End-user authentication](data-lake-store-end-user-authenticate-using-active-directory.md) or [Service-to-service authentication](data-lake-store-authenticate-using-active-directory.md).
3535

3636
## Create a Data Lake Storage Gen1 account
3737

@@ -51,7 +51,7 @@ This article uses a simpler authentication approach with Data Lake Storage Gen1
5151
Register-AzResourceProvider -ProviderNamespace "Microsoft.DataLakeStore"
5252
```
5353
54-
1. A Data Lake Storage Gen1 account is associated with an Azure Resource Group. Start by creating an Azure Resource Group.
54+
1. A Data Lake Storage Gen1 account is associated with an Azure resource group. Start by creating a resource group.
5555
5656
```PowerShell
5757
$resourceGroupName = "<your new resource group name>"
@@ -77,7 +77,7 @@ This article uses a simpler authentication approach with Data Lake Storage Gen1
7777
7878
The output for the cmdlet should be **True**.
7979
80-
## Create directory structures in your Data Lake Storage Gen1 account
80+
## Create directory structures
8181
8282
You can create directories under your Data Lake Storage Gen1 account to manage and store data.
8383
@@ -103,43 +103,51 @@ You can create directories under your Data Lake Storage Gen1 account to manage a
103103
104104
![Verify Directory](./media/data-lake-store-get-started-powershell/ADL.PS.Verify.Dir.Creation.png "Verify Directory")
105105
106-
## Upload data to your Data Lake Storage Gen1 account
106+
## Upload data
107107
108108
You can upload your data to Data Lake Storage Gen1 directly at the root level, or to a directory that you created within the account. The snippets in this section demonstrate how to upload some sample data to the directory (**mynewdirectory**) you created in the previous section.
109109
110110
If you are looking for some sample data to upload, you can get the **Ambulance Data** folder from the [Azure Data Lake Git Repository](https://github.com/MicrosoftBigData/usql/tree/master/Examples/Samples/Data/AmbulanceData). Download the file and store it in a local directory on your computer, such as C:\sampledata\.
111111
112112
```PowerShell
113-
Import-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name -Path "C:\sampledata\vehicle1_09142014.csv" -Destination $myrootdir\mynewdirectory\vehicle1_09142014.csv
113+
Import-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name `
114+
-Path "C:\sampledata\vehicle1_09142014.csv" `
115+
-Destination $myrootdir\mynewdirectory\vehicle1_09142014.csv
114116
```
115117

116-
## Rename, download, and delete data from your Data Lake Storage Gen1 account
118+
## Rename, download, and delete data
117119

118120
To rename a file, use the following command:
119121

120122
```PowerShell
121-
Move-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name -Path $myrootdir\mynewdirectory\vehicle1_09142014.csv -Destination $myrootdir\mynewdirectory\vehicle1_09142014_Copy.csv
123+
Move-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name `
124+
-Path $myrootdir\mynewdirectory\vehicle1_09142014.csv `
125+
-Destination $myrootdir\mynewdirectory\vehicle1_09142014_Copy.csv
122126
```
123127

124128
To download a file, use the following command:
125129

126130
```PowerShell
127-
Export-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name -Path $myrootdir\mynewdirectory\vehicle1_09142014_Copy.csv -Destination "C:\sampledata\vehicle1_09142014_Copy.csv"
131+
Export-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name `
132+
-Path $myrootdir\mynewdirectory\vehicle1_09142014_Copy.csv `
133+
-Destination "C:\sampledata\vehicle1_09142014_Copy.csv"
128134
```
129135

130136
To delete a file, use the following command:
131137

132138
```PowerShell
133-
Remove-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name -Paths $myrootdir\mynewdirectory\vehicle1_09142014_Copy.csv
139+
Remove-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name `
140+
-Paths $myrootdir\mynewdirectory\vehicle1_09142014_Copy.csv
134141
```
135142

136143
When prompted, enter **Y** to delete the item. If you have more than one file to delete, you can provide all the paths separated by comma.
137144

138145
```PowerShell
139-
Remove-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name -Paths $myrootdir\mynewdirectory\vehicle1_09142014.csv, $myrootdir\mynewdirectoryvehicle1_09142014_Copy.csv
146+
Remove-AzDataLakeStoreItem -AccountName $dataLakeStorageGen1Name `
147+
-Paths $myrootdir\mynewdirectory\vehicle1_09142014.csv, $myrootdir\mynewdirectoryvehicle1_09142014_Copy.csv
140148
```
141149

142-
## Delete your Data Lake Storage Gen1 account
150+
## Delete your account
143151

144152
Use the following command to delete your Data Lake Storage Gen1 account.
145153

articles/data-lake-store/data-lake-store-hdinsight-hadoop-use-portal.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ To create a HDInsight cluster with a Data Lake Storage Gen1 account as an additi
6767
![Add service principal to HDInsight cluster](./media/data-lake-store-hdinsight-hadoop-use-portal/hdi.adl.1.png "Add service principal to HDInsight cluster")
6868

6969
* **Selection method**: use one of the following options:
70+
7071
* To specify a storage account that is part of your Azure subscription, select **My subscriptions**, and then select the storage account.
7172
* To specify a storage account that is outside your Azure subscription, select **Access key**, and then provide the information for the outside storage account.
7273

7374
* **Default container**: use either the default value or specify your own name.
74-
75-
* Additional storage accounts: add more Azure storage accounts as the additional storage.
76-
* Data Lake Store access: configure access between the Data Lake Storage Gen1 account and HDInsight cluster. For instructions see [Configure Data Lake Storage Gen1 access](#configure-data-lake-storage-gen1-access).
75+
* **Additional storage accounts**: add more Azure storage accounts as the additional storage.
76+
* **Data Lake Store access**: configure access between the Data Lake Storage Gen1 account and HDInsight cluster. For instructions see [Configure Data Lake Storage Gen1 access](#configure-data-lake-storage-gen1-access).
7777

7878
## Configure Data Lake Storage Gen1 access
7979

@@ -145,7 +145,7 @@ If you are using Data Lake Storage Gen1 as additional storage, you must assign p
145145

146146
![Assign service principal permissions to the HDInsight cluster](./media/data-lake-store-hdinsight-hadoop-use-portal/hdi.adl.3-1.png "Assign service principal permissions to the HDInsight cluster")
147147

148-
## Verify cluster setup
148+
## <a name="verify-cluster-set-up"></a>Verify cluster setup
149149

150150
After the cluster setup is complete, on the cluster blade, verify your results by doing either or both of the following steps:
151151

articles/data-lake-store/data-lake-store-offline-bulk-data-upload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Before you begin, you must have the following:
2121

2222
* **An Azure subscription**. See [Get Azure free trial](https://azure.microsoft.com/pricing/free-trial/).
2323
* **An Azure storage account**.
24-
* **An Azure Data Lake Storage Gen1 account**. For instructions on how to create one, see [Get started with Azure Data Lake Storage Gen1](data-lake-store-get-started-portal.md)
24+
* **An Azure Data Lake Storage Gen1 account**. For instructions on how to create one, see [Get started with Azure Data Lake Storage Gen1](data-lake-store-get-started-portal.md).
2525

2626
## Prepare the data
2727

0 commit comments

Comments
 (0)