Skip to content

Commit 8351969

Browse files
authored
Removing Storm contents
Removing Storm contents
1 parent 4cbd6b5 commit 8351969

File tree

1 file changed

+1
-32
lines changed

1 file changed

+1
-32
lines changed

articles/hdinsight/hdinsight-scaling-best-practices.md

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: yeturis
66
ms.service: hdinsight
77
ms.topic: how-to
88
ms.custom: seoapr2020
9-
ms.date: 07/21/2022
9+
ms.date: 11/17/2022
1010
---
1111

1212
# Manually scale Azure HDInsight clusters
@@ -66,37 +66,6 @@ The impact of changing the number of data nodes varies for each type of cluster
6666

6767
For more information on using the HBase shell, see [Get started with an Apache HBase example in HDInsight](hbase/apache-hbase-tutorial-get-started-linux.md).
6868

69-
* Apache Storm
70-
71-
You can seamlessly add or remove data nodes while Storm is running. However, after a successful completion of the scaling operation, you'll need to rebalance the topology. Rebalancing allows the topology to readjust [parallelism settings](https://storm.apache.org/documentation/Understanding-the-parallelism-of-a-Storm-topology.html) based on the new number of nodes in the cluster. To rebalance running topologies, use one of the following options:
72-
73-
* Storm web UI
74-
75-
Use the following steps to rebalance a topology using the Storm UI.
76-
77-
1. Open `https://CLUSTERNAME.azurehdinsight.net/stormui` in your web browser, where `CLUSTERNAME` is the name of your Storm cluster. If prompted, enter the HDInsight cluster administrator (admin) name and password you specified when creating the cluster.
78-
79-
1. Select the topology you wish to rebalance, then select the **Rebalance** button. Enter the delay before the rebalance operation is done.
80-
81-
:::image type="content" source="./media/hdinsight-scaling-best-practices/hdinsight-portal-scale-cluster-storm-rebalance.png" alt-text="HDInsight Storm scale rebalance":::
82-
83-
* Command-line interface (CLI) tool
84-
85-
Connect to the server and use the following command to rebalance a topology:
86-
87-
```bash
88-
storm rebalance TOPOLOGYNAME
89-
```
90-
91-
You can also specify parameters to override the parallelism hints originally provided by the topology. For example, the code below reconfigures the `mytopology` topology to 5 worker processes, 3 executors for the blue-spout component, and 10 executors for the yellow-bolt component.
92-
93-
```bash
94-
## Reconfigure the topology "mytopology" to use 5 worker processes,
95-
## the spout "blue-spout" to use 3 executors, and
96-
## the bolt "yellow-bolt" to use 10 executors
97-
$ storm rebalance mytopology -n 5 -e blue-spout=3 -e yellow-bolt=10
98-
```
99-
10069
* Kafka
10170

10271
You should rebalance partition replicas after scaling operations. For more information, see the [High availability of data with Apache Kafka on HDInsight](./kafka/apache-kafka-high-availability.md) document.

0 commit comments

Comments
 (0)