@@ -65,6 +65,12 @@ type Datastore interface {
65
65
PodUpdateOrAddIfNotExist (pod * corev1.Pod , pool * v1alpha2.InferencePool ) bool
66
66
PodDelete (namespacedName types.NamespacedName )
67
67
PodResyncAll (ctx context.Context , ctrlClient client.Client , pool * v1alpha2.InferencePool )
68
+ // PodGetRandom will grab a random pod, used for selecting a passthrough endpoint.
69
+ PodGetRandom () * backendmetrics.Pod
70
+
71
+ RandomWeightedDraw (logger logr.Logger , model * v1alpha2.InferenceModel ) string
72
+ // This func should only be called for tests, to set a deterministic seed.
73
+ SetRand (seed int64 )
68
74
69
75
// Clears the store state, happens when the pool gets deleted.
70
76
Clear ()
@@ -77,6 +83,7 @@ func NewDatastore(parentCtx context.Context, pmf *backendmetrics.PodMetricsFacto
77
83
models : make (map [string ]* v1alpha2.InferenceModel ),
78
84
pods : & sync.Map {},
79
85
pmf : pmf ,
86
+ rand : rand .New (rand .NewSource (rand .Int63 ())),
80
87
}
81
88
return store
82
89
}
@@ -92,6 +99,7 @@ type datastore struct {
92
99
// key: types.NamespacedName, value: backendmetrics.PodMetrics
93
100
pods * sync.Map
94
101
pmf * backendmetrics.PodMetricsFactory
102
+ rand * rand.Rand
95
103
}
96
104
97
105
func (ds * datastore ) Clear () {
@@ -292,6 +300,17 @@ func (ds *datastore) PodDelete(namespacedName types.NamespacedName) {
292
300
}
293
301
}
294
302
303
+ func (ds * datastore ) PodGetRandom () * backendmetrics.Pod {
304
+ pods := ds .PodGetAll ()
305
+ pod := pods [rand .Intn (len (pods ))]
306
+ return pod .GetPod ()
307
+ }
308
+
309
+ // This func should only be called for tests to set a deterministic seed
310
+ func (ds * datastore ) SetRand (seed int64 ) {
311
+ ds .rand = rand .New (rand .NewSource (seed ))
312
+ }
313
+
295
314
func selectorFromInferencePoolSelector (selector map [v1alpha2.LabelKey ]v1alpha2.LabelValue ) labels.Selector {
296
315
return labels .SelectorFromSet (stripLabelKeyAliasFromLabelMap (selector ))
297
316
}
@@ -304,16 +323,10 @@ func stripLabelKeyAliasFromLabelMap(labels map[v1alpha2.LabelKey]v1alpha2.LabelV
304
323
return outMap
305
324
}
306
325
307
- func RandomWeightedDraw (logger logr.Logger , model * v1alpha2.InferenceModel , seed int64 ) string {
308
- source := rand .NewSource (rand .Int63 ())
309
- if seed > 0 {
310
- source = rand .NewSource (seed )
311
- }
312
- r := rand .New (source )
313
-
326
+ func (ds * datastore ) RandomWeightedDraw (logger logr.Logger , model * v1alpha2.InferenceModel ) string {
314
327
// all the weight values are nil, then we should return random model name
315
328
if model .Spec .TargetModels [0 ].Weight == nil {
316
- index := r .Int31n (int32 (len (model .Spec .TargetModels )))
329
+ index := ds . rand .Int31n (int32 (len (model .Spec .TargetModels )))
317
330
return model .Spec .TargetModels [index ].Name
318
331
}
319
332
@@ -322,7 +335,7 @@ func RandomWeightedDraw(logger logr.Logger, model *v1alpha2.InferenceModel, seed
322
335
weights += * model .Weight
323
336
}
324
337
logger .V (logutil .TRACE ).Info ("Weights for model computed" , "model" , model .Name , "weights" , weights )
325
- randomVal := r .Int31n (weights )
338
+ randomVal := ds . rand .Int31n (weights )
326
339
// TODO: optimize this without using loop
327
340
for _ , model := range model .Spec .TargetModels {
328
341
if randomVal < * model .Weight {
0 commit comments