共用方式為


New-AzureHDInsightCluster

建立 HDInsight 叢集。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

New-AzureHDInsightCluster
   [-Certificate <X509Certificate2>]
   [-HostedService <String>]
   -Config <AzureHDInsightConfig>
   -Credential <PSCredential>
   [-EndPoint <Uri>]
   [-IgnoreSslErrors <Boolean>]
   -Location <String>
   -Name <String>
   [-Subscription <String>]
   [-Version <String>]
   [-OSType <OSType>]
   [-SshCredential <PSCredential>]
   [-SshPublicKey <String>]
   [-RdpCredential <PSCredential>]
   [-RdpAccessExpiry <DateTime>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]
New-AzureHDInsightCluster
   [-Certificate <X509Certificate2>]
   [-HostedService <String>]
   -ClusterSizeInNodes <Int32>
   -Credential <PSCredential>
   -DefaultStorageAccountKey <String>
   -DefaultStorageAccountName <String>
   -DefaultStorageContainerName <String>
   [-EndPoint <Uri>]
   [-IgnoreSslErrors <Boolean>]
   -Location <String>
   -Name <String>
   [-Subscription <String>]
   [-Version <String>]
   [-HeadNodeVMSize <String>]
   [-ClusterType <ClusterType>]
   [-VirtualNetworkId <String>]
   [-SubnetName <String>]
   [-DataNodeVMSize <String>]
   [-ZookeeperNodeVMSize <String>]
   [-OSType <OSType>]
   [-SshCredential <PSCredential>]
   [-SshPublicKey <String>]
   [-RdpCredential <PSCredential>]
   [-RdpAccessExpiry <DateTime>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

Description

此版本的 Azure PowerShell HDInsight 已被取代。 這些 Cmdlet 將於 2017 年 1 月 1 日移除。 請使用較新版本的 Azure PowerShell HDInsight。

如需如何使用新的 HDInsight 建立叢集的資訊,請參閱 使用 Azure PowerShell 在 HDInsight 中建立以 Linux 為基礎的叢集(https://azure.microsoft.com/en-us/documentation/articles/hdinsight-hadoop-create-linux-clusters-azure-powershell/)。 如需如何使用 Azure PowerShell 和其他方法提交作業的資訊,請參閱 在 HDInsight 中提交 Hadoop 作業 (https://azure.microsoft.com/en-us/documentation/articles/hdinsight-submit-hadoop-jobs-programmatically/)。 如需 Azure PowerShell HDInsight 的參考資訊,請參閱 Azure HDInsight Cmdlet

New-AzureHDInsightCluster Cmdlet 會使用指定的參數或使用 New-AzureHDInsightClusterConfig Cmdlet 所建立的組態物件來建立 Azure HDInsight 叢集。

範例

範例 1:建立 HDInsight 叢集

PS C:\>$SubId = (Get-AzureSubscription -Current).SubscriptionId
PS C:\> $Key1 = Get-AzureStorageKey -StorageAccountName "MyBlobStorage" | %{ $_.Primary }
PS C:\> $Key2 = Get-AzureStorageKey -StorageAccountName "MySecondBlobStorage" | %{ $_.Primary }
PS C:\> $Creds = Get-Credential
PS C:\> $OozieCreds = Get-Credential
PS C:\> $HiveCreds = Get-Credential
PS C:\> New-AzureHDInsightClusterConfig -ClusterSizeInNodes 4
    | Set-AzureHDInsightDefaultStorage -StorageAccountName "MyBlobStorage.blob.core.windows.net" -StorageAccountKey $Key1 -StorageContainerName "MyContainer"
    | Add-AzureHDInsightStorage -StorageAccountName "MySecondBlobStorage.blob.core.windows.net" -StorageAccountKey $Key2
    | Add-AzureHDInsightMetastore -SqlAzureServerName "MySqlServer.database.windows.net" -DatabaseName "MyOozieDatabaseName" -Credential $OozieCreds -MetastoreType OozieMetastore
    | Add-AzureHDInsightMetastore -SqlAzureServerName "MySqlServer.database.windows.net" -DatabaseName "MyHiveDatabaseName" -Credential $HiveCreds -MetastoreType HiveMetastore
    | New-AzureHDInsightCluster -Subscription $SubId -Credential $Creds

此範例會建立目前訂用帳戶的 HDInsight 叢集。

第一個命令會使用 Get-AzureSubscription Cmdlet 來取得目前的訂用帳戶標識符,然後將它儲存在$SubId變數中。

第二個和第三個命令會使用 Get-AzureStorageKey Cmdlet 來取得 MyBlobStorage 和 MySecondBlobStorage 的主要記憶體密鑰,然後將密鑰分別儲存在 $Key 1 和 $Key 2 變數中。

第四、第五和第六個命令會使用 Get-Credential Cmdlet 來取得目前訂用帳戶和 Oozie 和 Hive 的認證,然後將認證儲存在變數中。

最後一個命令會使用這些 Cmdlet 來執行一連串的作業:

  • New-AzureHDInsightClusterConfig 來建立 HDInsight 叢集組態。
  • Set-AzureHDInsightDefaultStorage ,將組態的默認記憶體帳戶設定為 MyBlobStorage.blob.core.windows.net。
  • Add-AzureHDInsightStorage ,將名為 MySecondBlobStorage.blob.core.windows.net 的第二個記憶體帳戶新增至組態。
  • Add-AzureHDInsightMetastore 將 Oozie 的中繼存放區和 Hive 的中繼存放區新增至組態。
  • New-AzureHDInsightCluster ,以使用新的組態建立 HDInsight 叢集。

參數

-Certificate

指定 Azure 訂用帳戶的管理憑證。

類型:X509Certificate2
別名:Cert
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ClusterSizeInNodes

指定要為叢集建立的數據節點數目。

類型:Int32
別名:Nodes, Size
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-ClusterType

指定要建立的叢集類型。

類型:ClusterType
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Config

指定使用 New-AzureHDInsightClusterConfig Cmdlet 所建立的組態物件。

類型:AzureHDInsightConfig
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Credential

指定 HDInsight 用於遠端存取 Hadoop 叢集的預設帳戶的用戶認證。 這些認證與使用者的訂用帳戶認證不同。

類型:PSCredential
別名:Cred
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-DataNodeVMSize

指定數據節點的虛擬機大小。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultStorageAccountKey

指定 HDInsight 叢集使用之預設記憶體帳戶的帳戶密鑰。

類型:String
別名:StorageKey
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-DefaultStorageAccountName

指定 HDInsight 叢集使用的預設記憶體帳戶名稱。

類型:String
別名:StorageAccount
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-DefaultStorageContainerName

指定 HDInsight 叢集使用的預設 Azure 記憶體帳戶中預設容器的名稱。

類型:String
別名:StorageContainer
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-EndPoint

指定要用來連線到 Azure 的端點。 如果您未指定此參數,此 Cmdlet 會使用預設端點。

類型:Uri
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HeadNodeVMSize

指定前端節點的虛擬機大小。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-HostedService

指定 HDInsight 服務的命名空間。 如果您未指定此參數,此 Cmdlet 會使用預設命名空間。

類型:String
別名:CloudServiceName
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-IgnoreSslErrors

指出是否忽略安全套接字層 (SSL) 錯誤。

類型:Boolean
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Location

指定要在其中建立 HDInsight 叢集的區域。

類型:String
別名:Loc
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Name

指定要建立的 Azure HDInsight 叢集名稱。

類型:String
別名:ClusterName, DnsName
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-OSType

指定叢集的作業系統。

類型:OSType
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Profile

指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。

類型:AzureSMProfile
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RdpAccessExpiry

針對叢集的遠端桌面通訊協定 (RDP) 存取,指定到期日做為 DateTime 物件。

類型:DateTime
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-RdpCredential

指定 RDP 存取叢集的認證。

類型:PSCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SshCredential

指定 HDInsight 叢集的安全殼層 (SSH) 使用者名稱和密碼。 此參數僅適用於Linux叢集。

類型:PSCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SshPublicKey

指定 HDInsight 叢集的 SSH 公鑰。 此參數僅適用於Linux叢集。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SubnetName

指定子網的名稱。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Subscription

指定要在其中建立 HDInsight 叢集的 Azure 訂用帳戶。

類型:String
別名:Sub
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Version

指定要建立的 HDInsight 叢集版本。

類型:String
別名:Ver
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-VirtualNetworkId

指定要在其中佈建叢集的虛擬網路標識碼。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ZookeeperNodeVMSize

指定 ZooKeeper 節點的虛擬機大小。 此參數僅適用於 HBase 或 Storm 叢集。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False