After creating a topic, you can increase the number of partitions based on service requirements.
Changing the number of partitions does not affect services.
Methods for changing the partition quantity:
Select the region where your Kafka instance is located.
If your Kafka client version is later than 2.2, you can use kafka-topics.sh to change the partition quantity.
./kafka-topics.sh --bootstrap-server {broker_ip}:{port} --topic {topic_name} --alter --partitions {partition_num}
Create the ssl-user-config.properties file in the /config directory of the Kafka client and add the SSL certificate configurations by referring to 3.
./kafka-topics.sh --bootstrap-server {broker_ip}:{port} --topic {topic_name} --alter --partitions {partition_num} --command-config ./config/ssl-user-config.properties