HDInsight-fürtök testreszabása a Bootstrap használatával
A bootstrap-szkriptekkel programozott módon telepítheti és konfigurálhatja az összetevőket az Azure HDInsightban.
A HDInsight-fürt létrehozásakor háromféleképpen állíthat be konfigurációs fájlbeállításokat:
- Azure PowerShell használatával
- A .NET SDK használata
- Az Azure Resource Manager sablonjainak használata
A programozott módszerek használatával például konfigurálhatja az alábbi fájlokat:
- clusterIdentity.xml
- core-site.xml
- gateway.xml
- hbase-env.xml
- hbase-site.xml
- hdfs-site.xml
- hive-env.xml
- hive-site.xml
- mapred-site
- oozie-site.xml
- oozie-env.xml
- tez-site.xml
- webhcat-site.xml
- yarn-site.xml
- server.properties (kafka-broker configuration)
További információ a HDInsight-fürtök további összetevőinek a létrehozási idő alatt történő telepítéséről: HDInsight-fürtök testreszabása szkriptművelettel (Linux)
Előfeltételek
- Ha a PowerShellt használja, szüksége lesz az Az modulra.
Azure PowerShell használatával
Az alábbi PowerShell-kód testre szab egy Apache Hive-konfigurációt:
Fontos
Előfordulhat, hogy a paramétert Spark2Defaults
az Add-AzHDInsightConfigValue szolgáltatással kell használni. Üres értékeket adhat át a paraméternek az alábbi kód példában látható módon.
# hive-site.xml configuration
$hiveConfigValues = @{ "hive.metastore.client.socket.timeout"="90s" }
$config = New-AzHDInsightClusterConfig `
-ClusterType "Spark" `
| Set-AzHDInsightDefaultStorage `
-StorageAccountResourceId "$storageAccountResourceId" `
-StorageAccountKey $defaultStorageAccountKey `
| Add-AzHDInsightConfigValue `
-HiveSite $hiveConfigValues `
-Spark2Defaults @{}
New-AzHDInsightCluster `
-ResourceGroupName $resourceGroupName `
-ClusterName $hdinsightClusterName `
-Location $location `
-ClusterSizeInNodes 2 `
-Version "4.0" `
-HttpCredential $httpCredential `
-SshCredential $sshCredential `
-Config $config
A függelékben található egy teljes működő PowerShell-szkript.
A módosítás ellenőrzése:
- Keresse meg
https://CLUSTERNAME.azurehdinsight.net/
CLUSTERNAME
a fürt nevét. - A bal oldali menüben lépjen a Hive>Configs>Advanced lapra.
- Bontsa ki a Speciális hive-hely elemet.
- Keresse meg a hive.metastore.client.socket.timeout értéket, és győződjön meg arról, hogy az érték 90-es.
Néhány további példa más konfigurációs fájlok testreszabására:
# hdfs-site.xml configuration
$HdfsConfigValues = @{ "dfs.blocksize"="64m" } #default is 128MB in HDI 3.0 and 256MB in HDI 2.1
# core-site.xml configuration
$CoreConfigValues = @{ "ipc.client.connect.max.retries"="60" } #default 50
# mapred-site.xml configuration
$MapRedConfigValues = @{ "mapreduce.task.timeout"="1200000" } #default 600000
# oozie-site.xml configuration
$OozieConfigValues = @{ "oozie.service.coord.normal.default.timeout"="150" } # default 120
A .NET SDK használata
Lásd: Azure HDInsight SDK for .NET.
Resource Manager-sablon használata
A rendszerindítót a Resource Manager-sablonban használhatja:
"configurations": {
"hive-site": {
"hive.metastore.client.connect.retry.delay": "5",
"hive.execution.engine": "mr",
"hive.security.authorization.manager": "org.apache.hadoop.hive.ql.security.authorization.DefaultHiveAuthorizationProvider"
}
}
Példa Resource Manager-sablonrészletre, amely a spark2 alapértelmezett konfigurációjának váltásához rendszeres időközönként törli az eseménynaplókat a tárolóból.
"configurations": {
"spark2-defaults": {
"spark.history.fs.cleaner.enabled": "true",
"spark.history.fs.cleaner.interval": "7d",
"spark.history.fs.cleaner.maxAge": "90d"
}
}
Lásd még
- Apache Hadoop-fürtök létrehozása a HDInsightban útmutatást nyújt a HDInsight-fürtök más egyéni beállítások használatával történő létrehozásához.
- Szkriptműveleti szkriptek fejlesztése a HDInsighthoz
- Az Apache Spark telepítése és használata HDInsight-fürtökön
- Telepítse és használja az Apache Giraph-ot HDInsight-fürtökön.
Függelék: PowerShell-minta
Ez a PowerShell-szkript létrehoz egy HDInsight-fürtöt, és testre szab egy Hive-beállítást. Ügyeljen arra, hogy a , $httpPassword
és $sshPassword
a $nameToken
.
####################################
# Service names and variables
####################################
$nameToken = "<ENTER AN ALIAS>"
$namePrefix = $nameToken.ToLower() + (Get-Date -Format "MMdd")
$resourceGroupName = $namePrefix + "rg"
$hdinsightClusterName = $namePrefix + "hdi"
$defaultStorageAccountName = $namePrefix + "store"
$defaultBlobContainerName = $hdinsightClusterName
$location = "East US"
####################################
# Connect to Azure
####################################
Write-Host "Connecting to your Azure subscription ..." -ForegroundColor Green
$sub = Get-AzSubscription -ErrorAction SilentlyContinue
if(-not($sub))
{
Connect-AzAccount
}
# If you have multiple subscriptions, set the one to use
#$context = Get-AzSubscription -SubscriptionId "<subscriptionID>"
#Set-AzContext $context
####################################
# Create a resource group
####################################
Write-Host "Creating a resource group ..." -ForegroundColor Green
New-AzResourceGroup `
-Name $resourceGroupName `
-Location $location
####################################
# Create a storage account and container
####################################
Write-Host "Creating the default storage account and default blob container ..." -ForegroundColor Green
New-AzStorageAccount `
-ResourceGroupName $resourceGroupName `
-Name $defaultStorageAccountName `
-Location $location `
-SkuName Standard_LRS `
-Kind StorageV2 `
-EnableHttpsTrafficOnly 1
$defaultStorageAccountKey = (Get-AzStorageAccountKey `
-ResourceGroupName $resourceGroupName `
-Name $defaultStorageAccountName)[0].Value
$defaultStorageContext = New-AzStorageContext `
-StorageAccountName $defaultStorageAccountName `
-StorageAccountKey $defaultStorageAccountKey
New-AzStorageContainer `
-Name $defaultBlobContainerName `
-Context $defaultStorageContext #use the cluster name as the container name
####################################
# Create a configuration object
####################################
$hiveConfigValues = @{"hive.metastore.client.socket.timeout"="90s"}
$storageAccountResourceId = (Get-AzStorageAccount -ResourceGroupName $resourceGroupName ` -Name $defaultStorageAccountName).Id
$config = New-AzHDInsightClusterConfig `
-ClusterType "Spark" `
| Set-AzHDInsightDefaultStorage `
-StorageAccountResourceId "$storageAccountResourceId" `
-StorageAccountKey $defaultStorageAccountKey `
| Add-AzHDInsightConfigValue `
-HiveSite $hiveConfigValues `
-Spark2Defaults @{}
####################################
# Set Ambari admin username/password
####################################
$httpUserName = "admin" #HDInsight cluster username
$httpPassword = '<ENTER A PASSWORD>'
$httpPW = ConvertTo-SecureString -String $httpPassword -AsPlainText -Force
$httpCredential = New-Object System.Management.Automation.PSCredential($httpUserName,$httpPW)
####################################
# Set ssh username/password
####################################
$sshUserName = "sshuser" #HDInsight ssh user name
$sshPassword = '<ENTER A PASSWORD>'
$sshPW = ConvertTo-SecureString -String $sshPassword -AsPlainText -Force
$sshCredential = New-Object System.Management.Automation.PSCredential($sshUserName,$sshPW)
####################################
# Create an HDInsight cluster
####################################
New-AzHDInsightCluster `
-ResourceGroupName $resourceGroupName `
-ClusterName $hdinsightClusterName `
-Location $location `
-ClusterSizeInNodes 2 `
-Version "4.0" `
-HttpCredential $httpCredential `
-SshCredential $sshCredential `
-Config $config
####################################
# Verify the cluster
####################################
Get-AzHDInsightCluster `
-ClusterName $hdinsightClusterName