Skip to content

Commit 29ca49a

Browse files
authored
Merge pull request #99967 from dagiro/freshness156
freshness156
2 parents 0ad1d75 + 4a847b4 commit 29ca49a

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

articles/hdinsight/hdinsight-hadoop-create-linux-clusters-dotnet-sdk.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,41 @@
22
title: Create Apache Hadoop clusters using .NET - Azure HDInsight
33
description: Learn how to create Apache Hadoop, Apache HBase, Apache Storm, or Apache Spark clusters on Linux for HDInsight using the HDInsight .NET SDK.
44
author: hrasheed-msft
5+
ms.author: hrasheed
56
ms.reviewer: jasonh
67
ms.service: hdinsight
7-
ms.custom: hdinsightactive
88
ms.topic: conceptual
9-
ms.date: 08/16/2018
10-
ms.author: hrasheed
9+
ms.custom: hdinsightactive
10+
ms.date: 01/01/2020
1111
---
1212

1313
# Create Linux-based clusters in HDInsight using the .NET SDK
1414

1515
[!INCLUDE [selector](../../includes/hdinsight-create-linux-cluster-selector.md)]
1616

17-
1817
Learn how to create an [Apache Hadoop](https://hadoop.apache.org/) cluster in Azure HDInsight cluster using the .NET SDK.
1918

2019
> [!IMPORTANT]
2120
> The steps in this document create a cluster with one worker node. If you plan on more than 32 worker nodes, either at cluster creation or by scaling the cluster after creation, you need to select a head node size with at least 8 cores and 14GB ram.
2221
>
2322
> For more information on node sizes and associated costs, see [HDInsight pricing](https://azure.microsoft.com/pricing/details/hdinsight/).
2423
24+
[!INCLUDE [delete-cluster-warning](../../includes/hdinsight-delete-cluster-warning.md)]
25+
26+
If you don’t have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
27+
2528
## Prerequisites
2629

27-
[!INCLUDE [delete-cluster-warning](../../includes/hdinsight-delete-cluster-warning.md)]
30+
* An Azure storage account. See [Create a storage account](../storage/common/storage-quickstart-create-account.md).
2831

29-
* **An Azure subscription**. See [Get Azure free trial](https://azure.microsoft.com/documentation/videos/get-azure-free-trial-for-testing-hadoop-in-hdinsight/).
30-
* **An Azure storage account**. See [Create a storage account](../storage/common/storage-quickstart-create-account.md).
31-
* **Visual Studio**.
32+
* [Visual Studio](https://visualstudio.microsoft.com/vs/community/).
3233

3334
## Create clusters
3435

3536
1. Open Visual Studio.
36-
2. Create a new Visual C# console application.
37-
3. From the **Tools** menu, click **NuGet Package Manager**, and then click **Package Manager Console**.
38-
4. Run the following command in the console to install the packages:
37+
1. Create a new C# console application.
38+
1. Select **Tools** > **NuGet Package Manager** > **Package Manager Console**.
39+
1. Run the following command in the console to install the packages:
3940

4041
```powershell
4142
Install-Package Microsoft.Rest.ClientRuntime.Azure.Authentication -Pre
@@ -44,7 +45,7 @@ Learn how to create an [Apache Hadoop](https://hadoop.apache.org/) cluster in Az
4445
```
4546
4647
These commands add .NET libraries and references to them to the current Visual Studio project.
47-
5. From Solution Explorer, double-click **Program.cs** to open it, paste the following code, and provide values for the variables:
48+
1. From Solution Explorer, double-click **Program.cs** to open it, paste the following code, and provide values for the variables:
4849
4950
```csharp
5051
using System;
@@ -179,8 +180,9 @@ Learn how to create an [Apache Hadoop](https://hadoop.apache.org/) cluster in Az
179180
}
180181
```
181182
182-
6. Replace the class member values.
183-
7. Press **F5** to run the application. A console window should open and display the status of the application. You are prompted to enter your Azure account credentials. It can take several minutes to create an HDInsight cluster, normally around 15.
183+
1. Replace the class member values.
184+
185+
1. Press **F5** to run the application. A console window should open and display the status of the application. You are prompted to enter your Azure account credentials. It can take several minutes to create an HDInsight cluster, normally around 15.
184186
185187
## Use bootstrap
186188
@@ -361,14 +363,13 @@ static void Main(string[] args)
361363

362364
## Troubleshoot
363365

364-
If you run into issues with creating HDInsight clusters, see [access control requirements](hdinsight-hadoop-create-linux-clusters-portal.md).
366+
If you run into issues with creating HDInsight clusters, see [access control requirements](./hdinsight-hadoop-customize-cluster-linux.md#access-control).
365367

366368
## Next steps
367-
Now that you have successfully created an HDInsight cluster, use the following to learn how to work with your cluster.
369+
Now that you have successfully created an HDInsight cluster, use the following to learn how to work with your cluster.
368370

369371
### Apache Hadoop clusters
370372
* [Use Apache Hive with HDInsight](hadoop/hdinsight-use-hive.md)
371-
* [Use Apache Pig with HDInsight](hadoop/hdinsight-use-pig.md)
372373
* [Use MapReduce with HDInsight](hadoop/hdinsight-use-mapreduce.md)
373374

374375
### Apache HBase clusters
@@ -389,5 +390,4 @@ Now that you have successfully created an HDInsight cluster, use the following t
389390
### Run jobs
390391
* [Run Apache Hive jobs in HDInsight using .NET SDK](hadoop/apache-hadoop-use-hive-dotnet-sdk.md)
391392
* [Run Apache Sqoop jobs in HDInsight using .NET SDK](hadoop/apache-hadoop-use-sqoop-dotnet-sdk.md)
392-
* [Run Apache Oozie jobs in HDInsight](hdinsight-use-oozie-linux-mac.md)
393-
393+
* [Run Apache Oozie jobs in HDInsight](hdinsight-use-oozie-linux-mac.md)

0 commit comments

Comments
 (0)