Kafka Admin Operations - Part 1
Kafka Admin Operation - Part 1
This page covers basic operation of Kafka that an admin would need to perform. The basic operation as below
The replication factor controls how many servers will replicate each message that is written. If you have a replication factor of 3 then up to 2 servers can fail before you will lose access to your data. We recommend you use a replication factor of 2 or 3 so that you can transparently bounce machines without interrupting data consumption.
Be aware that one use case for partitions is to semantically partition data, and adding partitions doesn't change the partitioning of existing data so this may disturb consumers if they rely on that partition. That is if data is partitioned by
To remove a config:
And finally deleting a topic:
Note that controlled shutdown will only succeed if all the partitions hosted on the broker have replicas (i.e. the replication factor is greater than 1 and at least one of these replicas is alive). This is generally what you want since shutting down the last replica would make that topic partition unavailable.
**************************************************************
Coming up is Kafka admin - Advance level - Part 2
For basic of Kafka please read kafka-recommendation-and-high-level
Reference document can be found on basic_ops
Basic Operations
Adding and removing topics
You have the option of either adding topics manually or having them be created automatically when data is first published to a non-existent topic. If topics are auto-created then you may want to tune the default topic configurations used for auto-created topics.
Topics are added and modified using the topic tool:
> bin /kafka-topics .sh --bootstrap-server broker_host:port --create \ --topic my_topic_name \ --partitions 20 --replication-factor 3 --config x=y |
The partition count controls how many logs the topic will be sharded into. There are several impacts of the partition count. First each partition must fit entirely on a single server. So if you have 20 partitions the full data set (and read and write load) will be handled by no more than 20 servers (not counting replicas). Finally the partition count impacts the maximum parallelism of your consumers. This is discussed in greater detail in the concepts section.
Each sharded partition log is placed into its own folder under the Kafka log directory. The name of such folders consists of the topic name, appended by a dash (-) and the partition id. Since a typical folder name can not be over 255 characters long, there will be a limitation on the length of topic names. We assume the number of partitions will not ever be above 100,000. Therefore, topic names cannot be longer than 249 characters. This leaves just enough room in the folder name for a dash and a potentially 5 digit long partition id.
The configurations added on the command line override the default settings the server has for things like the length of time data should be retained. The complete set of per-topic configurations is documented here.
Modifying topics
You can change the configuration or partitioning of a topic using the same topic tool.
To add partitions you can do
> bin /kafka-topics .sh --bootstrap-server broker_host:port --alter \ --topic my_topic_name \ --partitions 40 |
hash(key) % number_of_partitions
then this partitioning will potentially be shuffled by adding partitions but Kafka will not attempt to automatically redistribute data in any way.
To add configs:
> bin /kafka-configs .sh --bootstrap-server broker_host:port --entity- type topics \ --entity-name my_topic_name --alter --add-config x=y |
> bin /kafka-configs .sh --bootstrap-server broker_host:port --entity- type topics \ --entity-name my_topic_name --alter --delete-config x |
> bin /kafka-topics .sh --bootstrap-server broker_host:port --delete \ --topic my_topic_name |
Kafka does not currently support reducing the number of partitions for a topic.
Instructions for changing the replication factor of a topic can be found here.
Graceful shutdown
The Kafka cluster will automatically detect any broker shutdown or failure and elect new leaders for the partitions on that machine. This will occur whether a server fails or it is brought down intentionally for maintenance or configuration changes. For the latter cases Kafka supports a more graceful mechanism for stopping a server than just killing it. When a server is stopped gracefully it has two optimizations it will take advantage of:- It will sync all its logs to disk to avoid needing to do any log recovery when it restarts (i.e. validating the checksum for all messages in the tail of the log). Log recovery takes time so this speeds up intentional restarts.
- It will migrate any partitions the server is the leader for to other replicas prior to shutting down. This will make the leadership transfer faster and minimize the time each partition is unavailable to a few milliseconds.
1
| controlled.shutdown.enable=true |
**************************************************************
Coming up is Kafka admin - Advance level - Part 2
For basic of Kafka please read kafka-recommendation-and-high-level
Reference document can be found on basic_ops
Very helpfull. Thanks
ReplyDeleteA great blog for understanding
ReplyDelete