mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 03:11:51 +01:00
a82fd98d53
* Start adding mechanism to return unhandled data Signed-off-by: Andrew Thornton <art27@cantab.net> * Create pushback interface Signed-off-by: Andrew Thornton <art27@cantab.net> * Add Pausable interface to WorkerPool and Manager Signed-off-by: Andrew Thornton <art27@cantab.net> * Implement Pausable and PushBack for the bytefifos Signed-off-by: Andrew Thornton <art27@cantab.net> * Implement Pausable and Pushback for ChannelQueues and ChannelUniqueQueues Signed-off-by: Andrew Thornton <art27@cantab.net> * Wire in UI for pausing Signed-off-by: Andrew Thornton <art27@cantab.net> * add testcases and fix a few issues Signed-off-by: Andrew Thornton <art27@cantab.net> * fix build Signed-off-by: Andrew Thornton <art27@cantab.net> * prevent "race" in the test Signed-off-by: Andrew Thornton <art27@cantab.net> * fix jsoniter mismerge Signed-off-by: Andrew Thornton <art27@cantab.net> * fix conflicts Signed-off-by: Andrew Thornton <art27@cantab.net> * fix format Signed-off-by: Andrew Thornton <art27@cantab.net> * Add warnings for no worker configurations and prevent data-loss with redis/levelqueue Signed-off-by: Andrew Thornton <art27@cantab.net> * Use StopTimer Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
127 lines
4 KiB
Go
127 lines
4 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package queue
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"code.gitea.io/gitea/modules/json"
|
|
"code.gitea.io/gitea/modules/log"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
func validType(t string) (Type, error) {
|
|
if len(t) == 0 {
|
|
return PersistableChannelQueueType, nil
|
|
}
|
|
for _, typ := range RegisteredTypes() {
|
|
if t == string(typ) {
|
|
return typ, nil
|
|
}
|
|
}
|
|
return PersistableChannelQueueType, fmt.Errorf("Unknown queue type: %s defaulting to %s", t, string(PersistableChannelQueueType))
|
|
}
|
|
|
|
func getQueueSettings(name string) (setting.QueueSettings, []byte) {
|
|
q := setting.GetQueueSettings(name)
|
|
cfg, err := json.Marshal(q)
|
|
if err != nil {
|
|
log.Error("Unable to marshall generic options: %v Error: %v", q, err)
|
|
log.Error("Unable to create queue for %s", name, err)
|
|
return q, []byte{}
|
|
}
|
|
return q, cfg
|
|
}
|
|
|
|
// CreateQueue for name with provided handler and exemplar
|
|
func CreateQueue(name string, handle HandlerFunc, exemplar interface{}) Queue {
|
|
q, cfg := getQueueSettings(name)
|
|
if len(cfg) == 0 {
|
|
return nil
|
|
}
|
|
|
|
typ, err := validType(q.Type)
|
|
if err != nil {
|
|
log.Error("Invalid type %s provided for queue named %s defaulting to %s", q.Type, name, string(typ))
|
|
}
|
|
|
|
returnable, err := NewQueue(typ, handle, cfg, exemplar)
|
|
if q.WrapIfNecessary && err != nil {
|
|
log.Warn("Unable to create queue for %s: %v", name, err)
|
|
log.Warn("Attempting to create wrapped queue")
|
|
returnable, err = NewQueue(WrappedQueueType, handle, WrappedQueueConfiguration{
|
|
Underlying: typ,
|
|
Timeout: q.Timeout,
|
|
MaxAttempts: q.MaxAttempts,
|
|
Config: cfg,
|
|
QueueLength: q.QueueLength,
|
|
Name: name,
|
|
}, exemplar)
|
|
}
|
|
if err != nil {
|
|
log.Error("Unable to create queue for %s: %v", name, err)
|
|
return nil
|
|
}
|
|
|
|
// Sanity check configuration
|
|
if q.Workers == 0 && (q.BoostTimeout == 0 || q.BoostWorkers == 0 || q.MaxWorkers == 0) {
|
|
log.Warn("Queue: %s is configured to be non-scaling and have no workers\n - this configuration is likely incorrect and could cause Gitea to block", q.Name)
|
|
if pausable, ok := returnable.(Pausable); ok {
|
|
log.Warn("Queue: %s is being paused to prevent data-loss, add workers manually and unpause.", q.Name)
|
|
pausable.Pause()
|
|
}
|
|
}
|
|
|
|
return returnable
|
|
}
|
|
|
|
// CreateUniqueQueue for name with provided handler and exemplar
|
|
func CreateUniqueQueue(name string, handle HandlerFunc, exemplar interface{}) UniqueQueue {
|
|
q, cfg := getQueueSettings(name)
|
|
if len(cfg) == 0 {
|
|
return nil
|
|
}
|
|
|
|
if len(q.Type) > 0 && q.Type != "dummy" && q.Type != "immediate" && !strings.HasPrefix(q.Type, "unique-") {
|
|
q.Type = "unique-" + q.Type
|
|
}
|
|
|
|
typ, err := validType(q.Type)
|
|
if err != nil || typ == PersistableChannelQueueType {
|
|
typ = PersistableChannelUniqueQueueType
|
|
if err != nil {
|
|
log.Error("Invalid type %s provided for queue named %s defaulting to %s", q.Type, name, string(typ))
|
|
}
|
|
}
|
|
|
|
returnable, err := NewQueue(typ, handle, cfg, exemplar)
|
|
if q.WrapIfNecessary && err != nil {
|
|
log.Warn("Unable to create unique queue for %s: %v", name, err)
|
|
log.Warn("Attempting to create wrapped queue")
|
|
returnable, err = NewQueue(WrappedUniqueQueueType, handle, WrappedUniqueQueueConfiguration{
|
|
Underlying: typ,
|
|
Timeout: q.Timeout,
|
|
MaxAttempts: q.MaxAttempts,
|
|
Config: cfg,
|
|
QueueLength: q.QueueLength,
|
|
}, exemplar)
|
|
}
|
|
if err != nil {
|
|
log.Error("Unable to create unique queue for %s: %v", name, err)
|
|
return nil
|
|
}
|
|
|
|
// Sanity check configuration
|
|
if q.Workers == 0 && (q.BoostTimeout == 0 || q.BoostWorkers == 0 || q.MaxWorkers == 0) {
|
|
log.Warn("Queue: %s is configured to be non-scaling and have no workers\n - this configuration is likely incorrect and could cause Gitea to block", q.Name)
|
|
if pausable, ok := returnable.(Pausable); ok {
|
|
log.Warn("Queue: %s is being paused to prevent data-loss, add workers manually and unpause.", q.Name)
|
|
pausable.Pause()
|
|
}
|
|
}
|
|
|
|
return returnable.(UniqueQueue)
|
|
}
|