Apache Kafka · Arazzo Workflow
Apache Kafka Review Cluster and Topic Capacity
Version 1.0.0
Walk a cluster from brokers to topics to the partition and replica layout of one topic.
View Spec
View on GitHub
Distributed SystemsEvent StreamingMessagingOpen SourcePub-SubArazzoWorkflows
Provider
Workflows
review-topic-capacity
Audit a topic's partition and replica layout against the cluster's brokers.
Reads cluster, brokers, topic inventory, and per-partition replica placement for a single topic so capacity and durability can be assessed together.
1
readCluster
getCluster
Read the cluster to confirm it exists and to capture the controller reference that anchors the rest of the audit.
2
listBrokers
listBrokers
List the brokers in the cluster. The broker count is the hard ceiling on any topic's replication factor and the baseline for judging replica spread.
3
listTopics
listTopics
Inventory the cluster's topics, giving the audit the full picture of what is deployed before narrowing to one topic.
4
readTopic
getTopic
Read the target topic's declared partition count and replication factor, which is what the audit compares against the broker list.
5
readPartitions
listPartitions
Read the per-partition detail, exposing the leader and replica set for each partition. This is where leader skew and under-replication become visible.