Help Center/ Distributed Message Service for Kafka/ User Guide/ Modifying Kafka Instance Specifications
Updated on 2024-12-02 GMT+08:00

Modifying Kafka Instance Specifications

After creating a Kafka instance, you can expand its storage space, increase the number of brokers, or increase the broker flavor. You can change instances to higher specifications, but not lower ones.

Only one object can be modified per operation: broker quantity, storage space, or broker flavor.

Impact of Specification Modification

It takes 5 to 10 minutes to modify specifications on one broker. The more brokers, the longer time the modification takes.

Table 1 Impact of specification modification

Modified Object

Impact

Broker quantity

  • Adding brokers does not affect the original brokers or services.
  • When brokers are added, the storage space is proportionally expanded based on the current disk space. For example, assume that the original number of brokers of an instance is 3 and the disk size of each broker is 200 GB. If the broker quantity changes to 10 and the disk size of each broker is still 200 GB, the total disk size becomes 2000 GB.
  • New topics are created on new brokers, and the original topics are still on the original brokers, resulting in unbalanced partitions. You can reassign partitions to migrate the replicas of the original topic partitions to the new brokers.

Storage space

  • You can expand the storage space 20 times.
  • Storage space expansion does not affect services.

Broker flavor

  • Single-replica topics do not support message production during this period. Services will be interrupted.
  • If a topic has multiple replicas, modifying the broker flavor does not interrupt services, but may cause disorder of partition messages. Evaluate this impact and avoid peak hours.
  • Broker rolling restarts will cause partition leader changes, interrupting connections for less than a minute when the network is stable. For multi-replica topics, configure the retry mechanism on the producer client. To do so:
    • If you use an open-source Kafka client, configure the retries parameter to a value in the range from 3 to 5.
    • If you use Flink, configure the retry policy by referring to the following code:
      StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment();
      env.setRestartStrategy(RestartStrategies.fixedDelayRestart(3, Time.seconds(20)));

Process of Increasing Broker Flavors

When you scale up the broker flavor, a rolling restart is performed on brokers. The following process takes three brokers as an example:

  1. Stop the Kafka process on Broker 0.
  2. Scale up the flavor of Broker 0.
  3. Restart the Kafka process on Broker 0.
  4. Repeat 1 to 3 to scale up the flavor of Broker 1.
  5. Repeat 1 to 3 to scale up the flavor of Broker 2.
Figure 1 Process of increasing a broker flavor

Procedure

  1. Log in to the console.
  2. Click in the upper left corner to select a region.

    Select the region where your Kafka instance is located.

  3. Click and choose Application > Distributed Message Service (for Kafka) to open the console of DMS for Kafka.
  4. In the row containing the desired instance, choose More > Modify Specifications in the Operation column.
  5. Specify the storage space, number of brokers, or broker flavor as required.

    • Expand the storage space.
      1. For Change By, select Storage. For Storage space per broker, specify a new storage space, and click Next. The storage space range varies by instance specifications. For details, see Specifications.
      2. Confirm the configurations and click Submit.
      3. Return to the instance list and check whether the change succeeded.
        • If the instance status has changed from Changing to Running, the change succeeded. View the new storage space (Storage space per broker x Number of brokers) in the Used/Available Storage Space (GB) column in the instance list.
        • If the instance status has changed from Changing to Change failed, the change failed. Move the cursor over Change failed to check the failure cause.

          Instances in the Change failed state cannot be restarted, modified, or deleted. After the instance status automatically changes from Change failed to Running, you can continue to perform operations on the instance. If the status does not change to Running, contact customer service.

    • Add brokers.
      1. For Change By, select Brokers.
      2. For Brokers, specify the broker quantity. The broker quantity range varies by instance specifications. For more information, see Kafka Instance Specifications.
      3. If public access has been enabled, configure EIPs for the new brokers.
      4. Click Next.
      5. Confirm the configurations and click Submit.
      6. Return to the instance list and check whether the change succeeded.
        • If the instance status has changed from Changing to Running, the change succeeded. You can check the new broker quantity in the Flavor column.
        • If the instance status has changed from Changing to Change failed, the change failed. Move the cursor over Change failed to check the failure cause.

          Instances in the Change failed state cannot be restarted, modified, or deleted. After the instance status automatically changes from Change failed to Running, you can continue to perform operations on the instance. If the status does not change to Running, contact customer service.

      After adding brokers, add the IP addresses of the new brokers to the client connection configuration to improve reliability.

    • Increase the broker flavor.
      1. For Change By, select Broker Flavor.
      2. Specify a new broker flavor.
      3. In the Risk Check area, check for risks.

        If any risk is found, handle it as prompted and click Recheck. If the risk does not need to be handled, select I understand the risks.

      4. Click Next, confirm the information, and click Submit.
      5. Return to the instance list and check whether the change succeeded.
        • If the instance status has changed from Changing to Running, the change succeeded. You can check the new broker flavor in the Flavor column.
        • If the instance status has changed from Changing to Change failed, the change failed. Move the cursor over Change failed to check the failure cause.

          Instances in the Change failed state cannot be restarted, modified, or deleted. After the instance status automatically changes from Change failed to Running, you can continue to perform operations on the instance. If the status does not change to Running, contact customer service.