Skip to content

Commit 4112182

Browse files
Merge pull request #215755 from sreekzz/patch-121
Updated Kafka version from 1.1 to 2.4.0
2 parents 90b5c5d + e9d60ab commit 4112182

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/hdinsight/kafka/apache-kafka-quickstart-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ New-AzStorageContainer -Name $containerName -Context $storageContext
9494
Create an Apache Kafka on HDInsight cluster with [New-AzHDInsightCluster](/powershell/module/az.HDInsight/New-azHDInsightCluster).
9595

9696
```azurepowershell-interactive
97-
# Create a Kafka 1.1 cluster
97+
# Create a Kafka 2.4.0 cluster
9898
$clusterName = Read-Host -Prompt "Enter the name of the Kafka cluster"
9999
$httpCredential = Get-Credential -Message "Enter the cluster login credentials" -UserName "admin"
100100
$sshCredentials = Get-Credential -Message "Enter the SSH user credentials" -UserName "sshuser"
@@ -105,7 +105,7 @@ $clusterType="Kafka"
105105
$disksPerNode=2
106106
107107
$kafkaConfig = New-Object "System.Collections.Generic.Dictionary``2[System.String,System.String]"
108-
$kafkaConfig.Add("kafka", "1.1")
108+
$kafkaConfig.Add("kafka", "2.4.0")
109109
110110
New-AzHDInsightCluster `
111111
-ResourceGroupName $resourceGroup `

0 commit comments

Comments
 (0)