forked from TrueCloudLab/frostfs-node
[#231] services/policer: Use engine.List method
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
ee1e3931a5
commit
e0350efe00
1 changed files with 1 additions and 13 deletions
|
@ -9,15 +9,12 @@ type jobQueue struct {
|
|||
localStorage *engine.StorageEngine
|
||||
}
|
||||
|
||||
var jobFilter object.SearchFilters
|
||||
|
||||
func (q *jobQueue) Select(limit int) ([]*object.Address, error) {
|
||||
// TODO: optimize the logic for selecting objects
|
||||
// We can prioritize objects for migration, newly arrived objects, etc.
|
||||
// It is recommended to make changes after updating the metabase
|
||||
|
||||
// FIXME: add the ability to limit Select result
|
||||
res, err := engine.Select(q.localStorage, getJobFilter())
|
||||
res, err := engine.List(q.localStorage, 0) // consider some limit
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -28,12 +25,3 @@ func (q *jobQueue) Select(limit int) ([]*object.Address, error) {
|
|||
|
||||
return res[:limit], nil
|
||||
}
|
||||
|
||||
// getJobFilter is a getter for a singleton instance.
|
||||
func getJobFilter() object.SearchFilters {
|
||||
if len(jobFilter) == 0 {
|
||||
jobFilter.AddPhyFilter() // this initiates a list of filters
|
||||
}
|
||||
|
||||
return jobFilter
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue