mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
21 lines
546 B
Go
21 lines
546 B
Go
|
package balancer
|
||
|
|
||
|
import (
|
||
|
cmap "github.com/orcaman/concurrent-map/v2"
|
||
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
||
|
)
|
||
|
|
||
|
func allocateTopicPartitions(brokers cmap.ConcurrentMap[string, *BrokerStats], partitionCount int) (assignments []*mq_pb.BrokerPartitionAssignment) {
|
||
|
return []*mq_pb.BrokerPartitionAssignment{
|
||
|
{
|
||
|
LeaderBroker: "localhost:17777",
|
||
|
FollowerBrokers: []string{"localhost:17777"},
|
||
|
Partition: &mq_pb.Partition{
|
||
|
RingSize: MaxPartitionCount,
|
||
|
RangeStart: 0,
|
||
|
RangeStop: MaxPartitionCount,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
}
|