mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-27 12:46:03 +01:00
refine scheduler according to review comments
This commit is contained in:
parent
4b2bae4558
commit
82e17fade1
@ -1,8 +1,11 @@
|
|||||||
package policy
|
package policy
|
||||||
|
|
||||||
import "github.com/vmware/harbor/src/common/scheduler/task"
|
import (
|
||||||
import "errors"
|
"errors"
|
||||||
import "time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/vmware/harbor/src/common/scheduler/task"
|
||||||
|
)
|
||||||
|
|
||||||
//AlternatePolicyConfiguration store the related configurations for alternate policy.
|
//AlternatePolicyConfiguration store the related configurations for alternate policy.
|
||||||
type AlternatePolicyConfiguration struct {
|
type AlternatePolicyConfiguration struct {
|
||||||
|
@ -9,7 +9,7 @@ type fakeTask struct {
|
|||||||
number int
|
number int
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ft *fakeTask) TaskName() string {
|
func (ft *fakeTask) Name() string {
|
||||||
return "for testing"
|
return "for testing"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package policy
|
package policy
|
||||||
|
|
||||||
import "github.com/vmware/harbor/src/common/scheduler/task"
|
import (
|
||||||
|
"github.com/vmware/harbor/src/common/scheduler/task"
|
||||||
|
)
|
||||||
|
|
||||||
//Policy is an if-then logic to determine how the attached tasks should be
|
//Policy is an if-then logic to determine how the attached tasks should be
|
||||||
//executed based on the evaluation result of the defined conditions.
|
//executed based on the evaluation result of the defined conditions.
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
package scheduler
|
package scheduler
|
||||||
|
|
||||||
import "github.com/vmware/harbor/src/common/scheduler/policy"
|
import (
|
||||||
import "github.com/vmware/harbor/src/common/utils/log"
|
"github.com/vmware/harbor/src/common/scheduler/policy"
|
||||||
|
"github.com/vmware/harbor/src/common/utils/log"
|
||||||
|
|
||||||
import "errors"
|
"errors"
|
||||||
import "strings"
|
"fmt"
|
||||||
import "fmt"
|
"reflect"
|
||||||
import "reflect"
|
"strings"
|
||||||
import "time"
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
defaultQueueSize = 10
|
defaultQueueSize = 10
|
||||||
@ -74,8 +76,8 @@ type Scheduler struct {
|
|||||||
//The stat metrics of scheduler.
|
//The stat metrics of scheduler.
|
||||||
stats *StatSummary
|
stats *StatSummary
|
||||||
|
|
||||||
//To indicate whether scheduler is stopped or not
|
//To indicate whether scheduler is running or not
|
||||||
stopped bool
|
isRunning bool
|
||||||
}
|
}
|
||||||
|
|
||||||
//DefaultScheduler is a default scheduler.
|
//DefaultScheduler is a default scheduler.
|
||||||
@ -93,7 +95,7 @@ func NewScheduler(config *Configuration) *Scheduler {
|
|||||||
stChan := make(chan *StatItem, 4)
|
stChan := make(chan *StatItem, 4)
|
||||||
tc := make(chan bool, 2)
|
tc := make(chan bool, 2)
|
||||||
|
|
||||||
store := NewConcurrentStore(10)
|
store := NewConcurrentStore()
|
||||||
return &Scheduler{
|
return &Scheduler{
|
||||||
config: config,
|
config: config,
|
||||||
policies: store,
|
policies: store,
|
||||||
@ -107,13 +109,13 @@ func NewScheduler(config *Configuration) *Scheduler {
|
|||||||
CompletedTasks: 0,
|
CompletedTasks: 0,
|
||||||
TasksWithError: 0,
|
TasksWithError: 0,
|
||||||
},
|
},
|
||||||
stopped: true,
|
isRunning: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Start the scheduler damon.
|
//Start the scheduler damon.
|
||||||
func (sch *Scheduler) Start() {
|
func (sch *Scheduler) Start() {
|
||||||
if !sch.stopped {
|
if sch.isRunning {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
go func() {
|
go func() {
|
||||||
@ -123,7 +125,7 @@ func (sch *Scheduler) Start() {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
defer func() {
|
defer func() {
|
||||||
sch.stopped = true
|
sch.isRunning = false
|
||||||
}()
|
}()
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
@ -187,13 +189,13 @@ func (sch *Scheduler) Start() {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
sch.stopped = false
|
sch.isRunning = true
|
||||||
log.Infof("Policy scheduler start at %s\n", time.Now().UTC().Format(time.RFC3339))
|
log.Infof("Policy scheduler start at %s\n", time.Now().UTC().Format(time.RFC3339))
|
||||||
}
|
}
|
||||||
|
|
||||||
//Stop the scheduler damon.
|
//Stop the scheduler damon.
|
||||||
func (sch *Scheduler) Stop() {
|
func (sch *Scheduler) Stop() {
|
||||||
if sch.stopped {
|
if !sch.isRunning {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -227,7 +229,7 @@ func (sch *Scheduler) Schedule(scheduledPolicy policy.Policy) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if sch.policies.Exists(scheduledPolicy.Name()) {
|
if sch.policies.Exists(scheduledPolicy.Name()) {
|
||||||
return errors.New("Duplicated policy")
|
return fmt.Errorf("Duplicated policy: %s", scheduledPolicy.Name())
|
||||||
}
|
}
|
||||||
|
|
||||||
//Schedule the policy.
|
//Schedule the policy.
|
||||||
@ -252,7 +254,7 @@ func (sch *Scheduler) UnSchedule(policyName string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//IsStopped to indicate whether the scheduler is stopped
|
//IsRunning to indicate whether the scheduler is running.
|
||||||
func (sch *Scheduler) IsStopped() bool {
|
func (sch *Scheduler) IsRunning() bool {
|
||||||
return sch.stopped
|
return sch.isRunning
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package scheduler
|
package scheduler
|
||||||
|
|
||||||
import "sync"
|
import (
|
||||||
import "strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
const defaultSize = 10
|
)
|
||||||
|
|
||||||
//Store define the basic operations for storing and managing policy watcher.
|
//Store define the basic operations for storing and managing policy watcher.
|
||||||
//The concrete implementation should consider concurrent supporting scenario.
|
//The concrete implementation should consider concurrent supporting scenario.
|
||||||
@ -34,20 +34,16 @@ type Store interface {
|
|||||||
//ConcurrentStore implements Store interface and supports concurrent operations.
|
//ConcurrentStore implements Store interface and supports concurrent operations.
|
||||||
type ConcurrentStore struct {
|
type ConcurrentStore struct {
|
||||||
//Read-write mutex to synchronize the data map.
|
//Read-write mutex to synchronize the data map.
|
||||||
mutex *sync.RWMutex
|
*sync.RWMutex
|
||||||
|
|
||||||
//Map used to keep the policy list.
|
//Map used to keep the policy list.
|
||||||
data map[string]*Watcher
|
data map[string]*Watcher
|
||||||
}
|
}
|
||||||
|
|
||||||
//NewConcurrentStore is used to create a new store and return the pointer reference.
|
//NewConcurrentStore is used to create a new store and return the pointer reference.
|
||||||
func NewConcurrentStore(initialSize uint32) *ConcurrentStore {
|
func NewConcurrentStore() *ConcurrentStore {
|
||||||
var initSize uint32 = defaultSize
|
|
||||||
if initialSize > 0 {
|
|
||||||
initSize = initialSize
|
|
||||||
}
|
|
||||||
mutex := new(sync.RWMutex)
|
mutex := new(sync.RWMutex)
|
||||||
data := make(map[string]*Watcher, initSize)
|
data := make(map[string]*Watcher)
|
||||||
|
|
||||||
return &ConcurrentStore{mutex, data}
|
return &ConcurrentStore{mutex, data}
|
||||||
}
|
}
|
||||||
@ -58,9 +54,9 @@ func (cs *ConcurrentStore) Put(key string, value *Watcher) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
defer cs.mutex.Unlock()
|
defer cs.Unlock()
|
||||||
|
|
||||||
cs.mutex.Lock()
|
cs.Lock()
|
||||||
cs.data[key] = value
|
cs.data[key] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,9 +66,9 @@ func (cs *ConcurrentStore) Get(key string) *Watcher {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
defer cs.mutex.RUnlock()
|
defer cs.RUnlock()
|
||||||
|
|
||||||
cs.mutex.RLock()
|
cs.RLock()
|
||||||
return cs.data[key]
|
return cs.data[key]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,9 +78,9 @@ func (cs *ConcurrentStore) Exists(key string) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
defer cs.mutex.RUnlock()
|
defer cs.RUnlock()
|
||||||
|
|
||||||
cs.mutex.RLock()
|
cs.RLock()
|
||||||
_, ok := cs.data[key]
|
_, ok := cs.data[key]
|
||||||
|
|
||||||
return ok
|
return ok
|
||||||
@ -96,9 +92,9 @@ func (cs *ConcurrentStore) Remove(key string) *Watcher {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
defer cs.mutex.Unlock()
|
defer cs.Unlock()
|
||||||
|
|
||||||
cs.mutex.Lock()
|
cs.Lock()
|
||||||
if wt, ok := cs.data[key]; ok {
|
if wt, ok := cs.data[key]; ok {
|
||||||
delete(cs.data, key)
|
delete(cs.data, key)
|
||||||
return wt
|
return wt
|
||||||
@ -116,8 +112,8 @@ func (cs *ConcurrentStore) Size() uint32 {
|
|||||||
func (cs *ConcurrentStore) GetAll() []*Watcher {
|
func (cs *ConcurrentStore) GetAll() []*Watcher {
|
||||||
all := []*Watcher{}
|
all := []*Watcher{}
|
||||||
|
|
||||||
defer cs.mutex.RUnlock()
|
defer cs.RUnlock()
|
||||||
cs.mutex.RLock()
|
cs.RLock()
|
||||||
for _, v := range cs.data {
|
for _, v := range cs.data {
|
||||||
all = append(all, v)
|
all = append(all, v)
|
||||||
}
|
}
|
||||||
@ -131,8 +127,8 @@ func (cs *ConcurrentStore) Clear() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
defer cs.mutex.Unlock()
|
defer cs.Unlock()
|
||||||
cs.mutex.Lock()
|
cs.Lock()
|
||||||
|
|
||||||
for k := range cs.data {
|
for k := range cs.data {
|
||||||
delete(cs.data, k)
|
delete(cs.data, k)
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestPut(t *testing.T) {
|
func TestPut(t *testing.T) {
|
||||||
store := NewConcurrentStore(10)
|
store := NewConcurrentStore()
|
||||||
if store == nil {
|
if store == nil {
|
||||||
t.Fatal("Failed to creat store instance")
|
t.Fatal("Failed to creat store instance")
|
||||||
}
|
}
|
||||||
@ -17,7 +17,7 @@ func TestPut(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestGet(t *testing.T) {
|
func TestGet(t *testing.T) {
|
||||||
store := NewConcurrentStore(10)
|
store := NewConcurrentStore()
|
||||||
if store == nil {
|
if store == nil {
|
||||||
t.Fatal("Failed to creat store instance")
|
t.Fatal("Failed to creat store instance")
|
||||||
}
|
}
|
||||||
@ -29,7 +29,7 @@ func TestGet(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestRemove(t *testing.T) {
|
func TestRemove(t *testing.T) {
|
||||||
store := NewConcurrentStore(10)
|
store := NewConcurrentStore()
|
||||||
if store == nil {
|
if store == nil {
|
||||||
t.Fatal("Failed to creat store instance")
|
t.Fatal("Failed to creat store instance")
|
||||||
}
|
}
|
||||||
@ -44,7 +44,7 @@ func TestRemove(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestExisting(t *testing.T) {
|
func TestExisting(t *testing.T) {
|
||||||
store := NewConcurrentStore(10)
|
store := NewConcurrentStore()
|
||||||
if store == nil {
|
if store == nil {
|
||||||
t.Fatal("Failed to creat store instance")
|
t.Fatal("Failed to creat store instance")
|
||||||
}
|
}
|
||||||
@ -58,7 +58,7 @@ func TestExisting(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestGetAll(t *testing.T) {
|
func TestGetAll(t *testing.T) {
|
||||||
store := NewConcurrentStore(10)
|
store := NewConcurrentStore()
|
||||||
if store == nil {
|
if store == nil {
|
||||||
t.Fatal("Failed to creat store instance")
|
t.Fatal("Failed to creat store instance")
|
||||||
}
|
}
|
||||||
|
@ -66,7 +66,7 @@ type fakeTask struct {
|
|||||||
number int
|
number int
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ft *fakeTask) TaskName() string {
|
func (ft *fakeTask) Name() string {
|
||||||
return "for testing"
|
return "for testing"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ func TestScheduler(t *testing.T) {
|
|||||||
t.Fail()
|
t.Fail()
|
||||||
}
|
}
|
||||||
|
|
||||||
if DefaultScheduler.IsStopped() {
|
if !DefaultScheduler.IsRunning() {
|
||||||
t.Fatal("Scheduler is not started")
|
t.Fatal("Scheduler is not started")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package task
|
package task
|
||||||
|
|
||||||
import "github.com/vmware/harbor/src/ui/utils"
|
import (
|
||||||
|
"github.com/vmware/harbor/src/ui/utils"
|
||||||
|
)
|
||||||
|
|
||||||
//ScanAllTask is task of scanning all tags.
|
//ScanAllTask is task of scanning all tags.
|
||||||
type ScanAllTask struct{}
|
type ScanAllTask struct{}
|
||||||
@ -10,8 +12,8 @@ func NewScanAllTask() *ScanAllTask {
|
|||||||
return &ScanAllTask{}
|
return &ScanAllTask{}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TaskName returns the name of the task.
|
//Name returns the name of the task.
|
||||||
func (sat *ScanAllTask) TaskName() string {
|
func (sat *ScanAllTask) Name() string {
|
||||||
return "scan all"
|
return "scan all"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package task
|
package task
|
||||||
|
|
||||||
import "testing"
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
func TestTask(t *testing.T) {
|
func TestTask(t *testing.T) {
|
||||||
tk := NewScanAllTask()
|
tk := NewScanAllTask()
|
||||||
@ -8,7 +10,7 @@ func TestTask(t *testing.T) {
|
|||||||
t.Fail()
|
t.Fail()
|
||||||
}
|
}
|
||||||
|
|
||||||
if tk.TaskName() != "scan all" {
|
if tk.Name() != "scan all" {
|
||||||
t.Fail()
|
t.Fail()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,8 +2,8 @@ package task
|
|||||||
|
|
||||||
//Task is used to synchronously run specific action(s).
|
//Task is used to synchronously run specific action(s).
|
||||||
type Task interface {
|
type Task interface {
|
||||||
//TaskName should return the name of the task.
|
//Name should return the name of the task.
|
||||||
TaskName() string
|
Name() string
|
||||||
|
|
||||||
//Run the concrete code here
|
//Run the concrete code here
|
||||||
Run() error
|
Run() error
|
||||||
|
@ -4,6 +4,8 @@ import (
|
|||||||
"github.com/vmware/harbor/src/common/scheduler/policy"
|
"github.com/vmware/harbor/src/common/scheduler/policy"
|
||||||
"github.com/vmware/harbor/src/common/scheduler/task"
|
"github.com/vmware/harbor/src/common/scheduler/task"
|
||||||
"github.com/vmware/harbor/src/common/utils/log"
|
"github.com/vmware/harbor/src/common/utils/log"
|
||||||
|
|
||||||
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
//Watcher is an asynchronous runner to provide an evaluation environment for the policy.
|
//Watcher is an asynchronous runner to provide an evaluation environment for the policy.
|
||||||
@ -64,7 +66,10 @@ func (wc *Watcher) Start() {
|
|||||||
go func(tk task.Task) {
|
go func(tk task.Task) {
|
||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
log.Errorf("Runtime error in task execution:%s\n", r)
|
st := &StatItem{statTaskFail, 1, fmt.Errorf("Runtime error in task execution:%s", r)}
|
||||||
|
if wc.stats != nil {
|
||||||
|
wc.stats <- st
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
err := tk.Run()
|
err := tk.Run()
|
||||||
@ -92,7 +97,9 @@ func (wc *Watcher) Start() {
|
|||||||
wc.isRunning = false
|
wc.isRunning = false
|
||||||
|
|
||||||
//Report policy change stats.
|
//Report policy change stats.
|
||||||
|
if wc.doneChan != nil {
|
||||||
wc.doneChan <- wc.p.Name()
|
wc.doneChan <- wc.p.Name()
|
||||||
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user