-
Notifications
You must be signed in to change notification settings - Fork 727
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mcs: add balancer for keyspace group (#6274)
close #6233 Signed-off-by: lhy1024 <admin@liudos.us> Co-authored-by: Ti Chi Robot <ti-community-prow-bot@tidb.io>
- Loading branch information
1 parent
858bbe0
commit 1c360b6
Showing
19 changed files
with
871 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// Copyright 2023 TiKV Project Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package balancer | ||
|
||
// Policy is the policy of balancer. | ||
type Policy int | ||
|
||
const ( | ||
// PolicyRoundRobin is the round robin policy. | ||
PolicyRoundRobin Policy = iota | ||
// PolicyLeast is the policy to return the least used node. | ||
// TODO: move indexed heap to pkg and use it. | ||
PolicyLeast | ||
) | ||
|
||
func (p Policy) String() string { | ||
switch p { | ||
case PolicyRoundRobin: | ||
return "round-robin" | ||
case PolicyLeast: | ||
return "least" | ||
default: | ||
return "unknown" | ||
} | ||
} | ||
|
||
// Balancer is the interface for balancer. | ||
type Balancer[T uint32 | string] interface { | ||
// Next returns next one. | ||
Next() T | ||
// Put puts one into balancer. | ||
Put(T) | ||
// Delete deletes one from balancer. | ||
Delete(T) | ||
// GetAll returns all nodes. | ||
GetAll() []T | ||
// Len returns the length of nodes. | ||
Len() int | ||
} | ||
|
||
// GenByPolicy generates a balancer by policy. | ||
func GenByPolicy[T uint32 | string](policy Policy) Balancer[T] { | ||
switch policy { | ||
case PolicyRoundRobin: | ||
return NewRoundRobin[T]() | ||
default: // only round-robin is supported now. | ||
return NewRoundRobin[T]() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
// Copyright 2023 TiKV Project Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package balancer | ||
|
||
import ( | ||
"math/rand" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestBalancerPutAndDelete(t *testing.T) { | ||
t.Parallel() | ||
re := require.New(t) | ||
balancers := []Balancer[uint32]{ | ||
NewRoundRobin[uint32](), | ||
} | ||
for _, balancer := range balancers { | ||
re.Equal(uint32(0), balancer.Next()) | ||
// test put | ||
exists := make(map[uint32]struct{}) | ||
for i := 0; i < 100; i++ { | ||
num := rand.Uint32() | ||
balancer.Put(num) | ||
exists[num] = struct{}{} | ||
re.Equal(len(balancer.GetAll()), len(exists)) | ||
t := balancer.Next() | ||
re.Contains(exists, t) | ||
} | ||
// test delete | ||
for num := range exists { | ||
balancer.Delete(num) | ||
delete(exists, num) | ||
re.Equal(len(balancer.GetAll()), len(exists)) | ||
if len(exists) == 0 { | ||
break | ||
} | ||
t := balancer.Next() | ||
re.NotEqual(t, num) | ||
re.Contains(exists, t) | ||
} | ||
re.Equal(uint32(0), balancer.Next()) | ||
} | ||
} | ||
|
||
func TestBalancerDuplicate(t *testing.T) { | ||
t.Parallel() | ||
re := require.New(t) | ||
balancers := []Balancer[uint32]{ | ||
NewRoundRobin[uint32](), | ||
} | ||
for _, balancer := range balancers { | ||
re.Len(balancer.GetAll(), 0) | ||
// test duplicate put | ||
balancer.Put(1) | ||
re.Len(balancer.GetAll(), 1) | ||
balancer.Put(1) | ||
re.Len(balancer.GetAll(), 1) | ||
// test duplicate delete | ||
balancer.Delete(1) | ||
re.Len(balancer.GetAll(), 0) | ||
balancer.Delete(1) | ||
re.Len(balancer.GetAll(), 0) | ||
} | ||
} | ||
|
||
func TestRoundRobin(t *testing.T) { | ||
t.Parallel() | ||
re := require.New(t) | ||
balancer := NewRoundRobin[uint32]() | ||
for i := 0; i < 100; i++ { | ||
num := rand.Uint32() | ||
balancer.Put(num) | ||
} | ||
statistics := make(map[uint32]int) | ||
for i := 0; i < 1000; i++ { | ||
statistics[balancer.Next()]++ | ||
} | ||
min := 1000 | ||
max := 0 | ||
for _, v := range statistics { | ||
if v < min { | ||
min = v | ||
} | ||
if v > max { | ||
max = v | ||
} | ||
} | ||
re.LessOrEqual(max-min, 10) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// Copyright 2023 TiKV Project Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package balancer | ||
|
||
import ( | ||
"sync" | ||
"sync/atomic" | ||
) | ||
|
||
// RoundRobin is a balancer that selects nodes in a round-robin fashion. | ||
type RoundRobin[T uint32 | string] struct { | ||
sync.RWMutex | ||
nodes []T | ||
exists map[T]struct{} | ||
next uint32 | ||
} | ||
|
||
// NewRoundRobin creates a balancer that selects nodes in a round-robin fashion. | ||
func NewRoundRobin[T uint32 | string]() *RoundRobin[T] { | ||
return &RoundRobin[T]{ | ||
nodes: make([]T, 0), | ||
exists: make(map[T]struct{}), | ||
} | ||
} | ||
|
||
// Next returns next address | ||
func (r *RoundRobin[T]) Next() (t T) { | ||
r.RLock() | ||
defer r.RUnlock() | ||
if len(r.nodes) == 0 { | ||
return | ||
} | ||
next := atomic.AddUint32(&r.next, 1) | ||
node := r.nodes[(int(next)-1)%len(r.nodes)] | ||
return node | ||
} | ||
|
||
// GetAll returns all nodes | ||
func (r *RoundRobin[T]) GetAll() []T { | ||
r.RLock() | ||
defer r.RUnlock() | ||
return r.nodes | ||
} | ||
|
||
// Put puts one into balancer. | ||
func (r *RoundRobin[T]) Put(node T) { | ||
r.Lock() | ||
defer r.Unlock() | ||
if _, ok := r.exists[node]; !ok { | ||
r.nodes = append(r.nodes, node) | ||
r.exists[node] = struct{}{} | ||
} | ||
} | ||
|
||
// Delete deletes one from balancer. | ||
func (r *RoundRobin[T]) Delete(node T) { | ||
r.Lock() | ||
defer r.Unlock() | ||
if _, ok := r.exists[node]; ok { | ||
for i, n := range r.nodes { | ||
if n == node { | ||
r.nodes = append(r.nodes[:i], r.nodes[i+1:]...) | ||
delete(r.exists, node) | ||
break | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Len returns the length of nodes. | ||
func (r *RoundRobin[T]) Len() int { | ||
r.RLock() | ||
defer r.RUnlock() | ||
return len(r.nodes) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.