Skip to content

Commit 53079b3

Browse files
authored
Merge pull request #92859 from normesta/normesta-reg-updates
Normesta reg updates
2 parents 9b45f80 + b70516f commit 53079b3

File tree

2 files changed

+23
-38
lines changed

2 files changed

+23
-38
lines changed

articles/storage/blobs/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@
627627
items:
628628
- name: Create and manage storage accounts
629629
items:
630-
- name: Create a general-purpose storage account
630+
- name: Create a storage account for your Data Lake
631631
href: ../blobs/data-lake-storage-quickstart-create-account.md?toc=%2fazure%2fstorage%2fblobs%2ftoc.json
632632
- name: Manage a storage account
633633
href: ../common/storage-account-manage.md?toc=%2fazure%2fstorage%2fblobs%2ftoc.json

articles/storage/blobs/data-lake-storage-quickstart-create-account.md

Lines changed: 22 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: Quickly learn to create a new storage account with access to Data L
44
author: normesta
55
ms.subservice: data-lake-storage-gen2
66
ms.service: storage
7-
ms.topic: quickstart
8-
ms.date: 08/19/2019
7+
ms.topic: conceptual
8+
ms.date: 10/23/2019
99
ms.author: normesta
1010
ms.reviewer: stewu
1111
---
@@ -14,7 +14,7 @@ ms.reviewer: stewu
1414

1515
Azure Data Lake Storage Gen2 [supports a hierarchical namespace](data-lake-storage-introduction.md) which provides a native directory-based container tailored to work with the Hadoop Distributed File System (HDFS). Access to Data Lake Storage Gen2 data from the HDFS is available through the [ABFS driver](data-lake-storage-abfs-driver.md).
1616

17-
This quickstart demonstrates how to create an account using the [Azure portal](https://portal.azure.com/), [Azure PowerShell](https://docs.microsoft.com/powershell/azure/overview), or via the [Azure CLI](https://docs.microsoft.com/cli/azure?view=azure-cli-latest).
17+
This article demonstrates how to create an account using the Azure portal, Azure PowerShell, or via the Azure CLI.
1818

1919
## Prerequisites
2020

@@ -23,7 +23,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
2323
| | Prerequisite |
2424
|-----------|--------------|
2525
|Portal | None |
26-
|PowerShell | This quickstart requires the PowerShell module Az.Storage version **0.7** or later. To find your current version, run the `Get-Module -ListAvailable Az.Storage` command. If after you run this command, no results appear, or if a version lower than **0.7** appears, then you'll have to upgrade your powershell module. See the [Upgrade your powershell module](#upgrade-your-powershell-module) section of this guide.
26+
|PowerShell | This article requires the PowerShell module Az.Storage version **0.7** or later. To find your current version, run the `Get-Module -ListAvailable Az.Storage` command. If after you run this command, no results appear, or if a version lower than **0.7** appears, then you'll have to upgrade your powershell module. See the [Upgrade your powershell module](#upgrade-your-powershell-module) section of this guide.
2727
|CLI | You can sign in to Azure and run Azure CLI commands in one of two ways: <ul><li>You can run CLI commands from within the Azure portal, in Azure Cloud Shell </li><li>You can install the CLI and run CLI commands locally</li></ul>|
2828

2929
When working on the command line you have the option of running the Azure Cloud shell or installing the CLI locally.
@@ -34,64 +34,49 @@ Azure Cloud Shell is a free Bash shell that you can run directly within the Azur
3434

3535
[![Cloud Shell](./media/data-lake-storage-quickstart-create-account/cloud-shell-menu.png)](https://portal.azure.com)
3636

37-
The button launches an interactive shell that you can use to run the steps in this quickstart:
37+
The button launches an interactive shell that you can use to run the steps in this article:
3838

3939
[![Screenshot showing the Cloud Shell window in the portal](./media/data-lake-storage-quickstart-create-account/cloud-shell.png)](https://portal.azure.com)
4040

4141
### Install the CLI locally
4242

43-
You can also install and use the Azure CLI locally. This quickstart requires that you are running the Azure CLI version 2.0.38 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
43+
You can also install and use the Azure CLI locally. This article requires that you are running the Azure CLI version 2.0.38 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install the Azure CLI](/cli/azure/install-azure-cli).
4444

4545
## Create a storage account with Azure Data Lake Storage Gen2 enabled
4646

47-
Before you create an account, you first create a resource group that acts as a logical container to storage accounts or any other Azure resources you create. If you wish to clean up the resources created by this quickstart, you can simply delete the resource group. Deleting the resource group also deletes the associated storage account, and any other resources associated with the resource group. For more information regarding resource groups, see [Azure Resource Manager overview](../../azure-resource-manager/resource-group-overview.md).
47+
An Azure storage account contains all of your Azure Storage data objects: blobs, files, queues, tables, and disks. The storage account provides a unique namespace for your Azure Storage data that is accessible from anywhere in the world over HTTP or HTTPS. Data in your Azure storage account is durable and highly available, secure, and massively scalable.
4848

4949
> [!NOTE]
5050
> You must create new storage accounts as type **StorageV2 (general-purpose V2)** to take advantage of Data Lake Storage Gen2 features.
5151
5252
For more information about storage accounts, see [Azure Storage account overview](../common/storage-account-overview.md).
5353

54-
When naming your storage account, keep these rules in mind:
55-
56-
- Storage account names must be between 3 and 24 characters in length and may contain numbers and lowercase letters only.
57-
- Your storage account name must be unique within Azure. No two storage accounts can have the same name.
58-
5954
## Create an account using the Azure portal
6055

6156
Sign in to the [Azure portal](https://portal.azure.com).
6257

63-
### Create a resource group
64-
65-
To create a resource group in the Azure portal, follow these steps:
58+
### Create a storage account
6659

67-
1. In the Azure portal, expand the menu on the left side to open the menu of services, and choose **Resource Groups**.
68-
2. Click the **Add** button to add a new resource group.
69-
3. Enter a name for the new resource group.
70-
4. Select the subscription in which to create the new resource group.
71-
5. Choose the location for the resource group.
72-
6. Click the **Create** button.
73-
74-
![Screenshot showing resource group creation in the Azure portal](./media/data-lake-storage-quickstart-create-account/create-resource-group.png)
75-
76-
### Create a general-purpose v2 storage account
60+
Every storage account must belong to an Azure resource group. A resource group is a logical container for grouping your Azure services. When you create a storage account, you have the option to either create a new resource group, or use an existing resource group. This article shows how to create a new resource group.
7761

7862
To create a general-purpose v2 storage account in the Azure portal, follow these steps:
7963

8064
> [!NOTE]
8165
> The hierarchical namespace is currently available in all public regions.
8266
83-
1. In the Azure portal, expand the menu on the left side to open the menu of services, and choose **All services**. Then, scroll down to **Storage**, and choose **Storage accounts**. On the **Storage Accounts** window that appears, choose **Add**.
84-
2. Select your **Subscription** and the **Resource group** you created earlier.
85-
3. Enter a name for your storage account.
86-
4. Set **Location** to **West US 2**
87-
5. Leave these fields set to their defaults: **Performance**, **Account kind**, **Replication**, **Access tier**.
88-
6. Choose the subscription in which you want to create the storage account.
89-
7. Select **Next : Advanced >**
90-
8. Leave the values under **SECURITY** and **VIRTUAL NETWORKS** fields set to their defaults.
91-
9. In the **Data Lake Storage Gen2** section set **Hierarchical namespace** to **Enabled**.
92-
10. Click **Review + Create** to create the storage account.
67+
1. Choose the subscription in which you want to create the storage account.
68+
2. In the Azure portal, choose the **Create a resource** button, then choose **Storage account**.
69+
3. Under the **Resource group** field, select **Create new**. Enter a name for your new resource group.
70+
71+
A resource group is a logical container for grouping your Azure services. When you create a storage account, you have the option to either create a new resource group, or use an existing resource group.
9372

94-
![Screenshot showing storage account creation in the Azure portal](./media/data-lake-storage-quickstart-create-account/azure-data-lake-storage-account-create-advanced.png)
73+
4. Next, enter a name for your storage account. The name you choose must be unique across Azure. The name also must be between 3 and 24 characters in length, and can include numbers and lowercase letters only.
74+
5. Choose a location.
75+
6. Make sure that **StorageV2 (general purpose v2)** appears as selected in the **Account kind** drop-down list.
76+
7. Optionally change the values in each of these fields: **Performance**, **Replication**, **Access tier**. To learn more about these options, see [Introduction to Azure Storage](https://docs.microsoft.com/azure/storage/common/storage-introduction#introducing-the-azure-storage-services).
77+
8. Choose the **Advanced** tab.
78+
10. In the **Data Lake Storage Gen2** section set **Hierarchical namespace** to **Enabled**.
79+
11. Click **Review + Create** to create the storage account.
9580

9681
Your storage account is now created through the portal.
9782

@@ -222,6 +207,6 @@ az group delete --name myResourceGroup
222207

223208
## Next steps
224209

225-
In this quickstart, you've created a storage account with Data Lake Storage Gen2 capabilities. To learn how to upload and download blobs to and from your storage account, see the following topic.
210+
In this article, you've created a storage account with Data Lake Storage Gen2 capabilities. To learn how to upload and download blobs to and from your storage account, see the following topic.
226211

227212
* [AzCopy V10](https://docs.microsoft.com/azure/storage/common/storage-use-azcopy-v10?toc=%2fazure%2fstorage%2fblobs%2ftoc.json)

0 commit comments

Comments
 (0)