Class PartitionsSpecification
Specification for new partitions to be added to a topic.
Inherited Members
Namespace: Confluent.Kafka.Admin
Assembly: Confluent.Kafka.dll
Syntax
public class PartitionsSpecification
Properties
IncreaseTo
The partition count for the specified topic is increased to this value.
Declaration
public int IncreaseTo { get; set; }
Property Value
Type | Description |
---|---|
int |
ReplicaAssignments
The replica assignments for the new partitions, or null if the assignment will be done by the controller. The outer list is indexed by the new partitions relative index, and the inner list contains the broker ids.
Declaration
public List<List<int>> ReplicaAssignments { get; set; }
Property Value
Type | Description |
---|---|
List<List<int>> |
Topic
The topic that the new partitions specification corresponds to.
Declaration
public string Topic { get; set; }
Property Value
Type | Description |
---|---|
string |