Skip to main content
Create a new Kafka topic with the specified number of partitions and replication factor.

Basic Parameters

ParameterDescription
AddressThe Kafka broker address to create the topic on.
Topic NameThe name of the topic to create. Only alphanumeric characters, hyphens, underscores, and periods are allowed.
PartitionsThe number of partitions for the topic. Default: 1
ReplicationsThe number of replications for each partition. Default: 1
Validate OnlyWhen enabled, validates the topic configuration without creating the topic. Useful for testing configuration before committing to topic creation. Returns validation results including any errors that would occur during actual creation.

Example Output

{
	"Throttle": 0,
	"Errors": {
		"topic_name": {}
	}
}