I've a Kafka topic with one partition. I'm trying to send messages to broker. The source is of 1.5 TB in size. My broker has two directories to store the Kafka partitions
/dev/sdc1 1.1T 567G 460G 56% /data_disk_0
/dev/sdd1 1.1T 1.1T 0 100% /data_disk_1
Each one with 1.1 TB size. As my topic has only one partition, Kafka is storing all the messages to /dev/sdd1
. Eventually the disk fills up completely because the source size is greater than the target disk size. Can I span my topic partition to store half data in disk0
and the other half in disk1
without changing the number of partitions?
Please advice
I couldn't find any configuration related changes that I can add to Kafka