File size: 3,955 Bytes
e89cd08 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | // _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
package replica_test
import (
"sort"
"strconv"
"testing"
"github.com/weaviate/weaviate/usecases/replica"
"github.com/go-openapi/strfmt"
"github.com/stretchr/testify/assert"
"github.com/weaviate/weaviate/cluster/router/types"
"github.com/weaviate/weaviate/entities/models"
"github.com/weaviate/weaviate/entities/storobj"
)
// createBatch creates IndexedBatch from xs
func createBatch(xs []*storobj.Object) replica.IndexedBatch {
var bi replica.IndexedBatch
bi.Data = xs
bi.Index = make([]int, len(xs))
for i := 0; i < len(xs); i++ {
bi.Index[i] = i
}
return bi
}
// cluster data object by shard
func cluster(bi replica.IndexedBatch) []replica.ShardPart {
index := bi.Index
data := bi.Data
sort.Slice(index, func(i, j int) bool {
return data[index[i]].BelongsToShard < data[index[j]].BelongsToShard
})
clusters := make([]replica.ShardPart, 0, 16)
// partition
cur := data[index[0]]
j := 0
for i := 1; i < len(index); i++ {
if data[index[i]].BelongsToShard == cur.BelongsToShard {
continue
}
clusters = append(clusters, replica.ShardPart{
Shard: cur.BelongsToShard,
Node: cur.BelongsToNode, Data: data,
Index: index[j:i],
})
j = i
cur = data[index[j]]
}
clusters = append(clusters, replica.ShardPart{
Shard: cur.BelongsToShard,
Node: cur.BelongsToNode, Data: data,
Index: index[j:],
})
return clusters
}
func TestBatchInput(t *testing.T) {
var (
N = 9
ids = make([]strfmt.UUID, N)
data = make([]*storobj.Object, N)
)
for i := 0; i < N; i++ {
uuid := strfmt.UUID(strconv.Itoa(i))
ids[i] = uuid
data[i] = objectEx(uuid, 1, "S1", "N1")
}
parts := cluster(createBatch(data))
assert.Len(t, parts, 1)
assert.Equal(t, parts[0], replica.ShardPart{
Shard: "S1",
Node: "N1",
Data: data,
Index: []int{0, 1, 2, 3, 4, 5, 6, 7, 8},
})
assert.Equal(t, parts[0].ObjectIDs(), ids)
data[0].BelongsToShard = "S2"
data[0].BelongsToNode = "N2"
data[2].BelongsToShard = "S2"
data[2].BelongsToNode = "N2"
data[3].BelongsToShard = "S2"
data[4].BelongsToNode = "N2"
data[5].BelongsToShard = "S2"
data[5].BelongsToNode = "N2"
parts = cluster(createBatch(data))
sort.Slice(parts, func(i, j int) bool { return len(parts[i].Index) < len(parts[j].Index) })
assert.Len(t, parts, 2)
assert.ElementsMatch(t, parts[0].ObjectIDs(), []strfmt.UUID{ids[0], ids[2], ids[3], ids[5]})
assert.Equal(t, parts[0].Shard, "S2")
assert.Equal(t, parts[0].Node, "N2")
assert.ElementsMatch(t, parts[1].ObjectIDs(), []strfmt.UUID{ids[1], ids[4], ids[6], ids[7], ids[8]})
assert.Equal(t, parts[1].Shard, "S1")
assert.Equal(t, parts[1].Node, "N1")
}
func genInputs(node, shard string, updateTime int64, ids []strfmt.UUID) ([]*storobj.Object, []types.RepairResponse) {
xs := make([]*storobj.Object, len(ids))
digestR := make([]types.RepairResponse, len(ids))
for i, id := range ids {
xs[i] = &storobj.Object{
Object: models.Object{
ID: id,
LastUpdateTimeUnix: updateTime,
},
BelongsToShard: shard,
BelongsToNode: node,
}
digestR[i] = types.RepairResponse{ID: ids[i].String(), UpdateTime: updateTime}
}
return xs, digestR
}
func setObjectsConsistency(xs []*storobj.Object, isConsistent bool) []*storobj.Object {
want := make([]*storobj.Object, len(xs))
for i, x := range xs {
cp := *x
cp.IsConsistent = isConsistent
want[i] = &cp
}
return want
}
func objectEx(id strfmt.UUID, lastTime int64, shard, node string) *storobj.Object {
return &storobj.Object{
Object: models.Object{
ID: id,
LastUpdateTimeUnix: lastTime,
},
BelongsToShard: shard,
BelongsToNode: node,
}
}
|