You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
359 B
20 lines
359 B
package balancer
|
|
|
|
import cmap "github.com/orcaman/concurrent-map"
|
|
|
|
type Balancer struct {
|
|
brokers cmap.ConcurrentMap[string, *BrokerStats]
|
|
}
|
|
type BrokerStats struct {
|
|
stats map[TopicPartition]*TopicPartitionStats
|
|
}
|
|
|
|
type TopicPartition struct {
|
|
Topic string
|
|
RangeStart int32
|
|
RangeStop int32
|
|
}
|
|
|
|
type TopicPartitionStats struct {
|
|
Throughput int64
|
|
}
|