mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
3d0549c982
Reduce the number of memory allocations in this function. This improves its performance by up to 50%. This should improve service discovery speed when big number of potential targets with big number of meta-labels are generated by service discovery. Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2270
48 lines
941 B
Go
48 lines
941 B
Go
package promrelabel
|
|
|
|
import (
|
|
"sort"
|
|
"sync"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
)
|
|
|
|
// SortLabels sorts labels.
|
|
func SortLabels(labels []prompbmarshal.Label) {
|
|
ls := labelsSorterPool.Get().(*labelsSorter)
|
|
*ls = labels
|
|
if !sort.IsSorted(ls) {
|
|
sort.Sort(ls)
|
|
}
|
|
*ls = nil
|
|
labelsSorterPool.Put(ls)
|
|
}
|
|
|
|
// SortLabelsStable sorts labels using stable sort.
|
|
func SortLabelsStable(labels []prompbmarshal.Label) {
|
|
ls := labelsSorterPool.Get().(*labelsSorter)
|
|
*ls = labels
|
|
if !sort.IsSorted(ls) {
|
|
sort.Stable(ls)
|
|
}
|
|
*ls = nil
|
|
labelsSorterPool.Put(ls)
|
|
}
|
|
|
|
var labelsSorterPool = &sync.Pool{
|
|
New: func() interface{} {
|
|
return &labelsSorter{}
|
|
},
|
|
}
|
|
|
|
type labelsSorter []prompbmarshal.Label
|
|
|
|
func (ls *labelsSorter) Len() int { return len(*ls) }
|
|
func (ls *labelsSorter) Swap(i, j int) {
|
|
a := *ls
|
|
a[i], a[j] = a[j], a[i]
|
|
}
|
|
func (ls *labelsSorter) Less(i, j int) bool {
|
|
a := *ls
|
|
return a[i].Name < a[j].Name
|
|
}
|