Skip to content

Commit

Permalink
fix(search): BuildIndex concurrency error (#7035)
Browse files Browse the repository at this point in the history
  • Loading branch information
rammiah authored Aug 21, 2024
1 parent 7488792 commit 48f50a2
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 22 deletions.
3 changes: 2 additions & 1 deletion internal/errs/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ package errs
import "fmt"

var (
SearchNotAvailable = fmt.Errorf("search not available")
SearchNotAvailable = fmt.Errorf("search not available")
BuildIndexIsRunning = fmt.Errorf("build index is running, please try later")
)
4 changes: 1 addition & 3 deletions internal/op/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ func List(ctx context.Context, storage driver.Driver, path string, args model.Li
model.WrapObjsName(files)
// call hooks
go func(reqPath string, files []model.Obj) {
for _, hook := range objsUpdateHooks {
hook(reqPath, files)
}
HandleObjsUpdateHook(reqPath, files)
}(utils.GetFullPath(storage.GetStorage().MountPath, path), files)

// sort objs
Expand Down
52 changes: 40 additions & 12 deletions internal/search/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ import (
"path"
"path/filepath"
"strings"
"sync"
"sync/atomic"
"time"

"github.com/alist-org/alist/v3/internal/conf"
"github.com/alist-org/alist/v3/internal/errs"
"github.com/alist-org/alist/v3/internal/fs"
"github.com/alist-org/alist/v3/internal/model"
"github.com/alist-org/alist/v3/internal/op"
Expand All @@ -21,10 +23,13 @@ import (
)

var (
Running = atomic.Bool{}
Quit chan struct{}
Quit = atomic.Pointer[chan struct{}]{}
)

func Running() bool {
return Quit.Load() != nil
}

func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth int, count bool) error {
var (
err error
Expand All @@ -33,11 +38,27 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
)
log.Infof("build index for: %+v", indexPaths)
log.Infof("ignore paths: %+v", ignorePaths)
Running.Store(true)
Quit = make(chan struct{}, 1)
indexMQ := mq.NewInMemoryMQ[ObjWithParent]()
quit := make(chan struct{}, 1)
if !Quit.CompareAndSwap(nil, &quit) {
// other goroutine is running
return errs.BuildIndexIsRunning
}
var (
indexMQ = mq.NewInMemoryMQ[ObjWithParent]()
running = atomic.Bool{} // current goroutine running
wg = &sync.WaitGroup{}
)
running.Store(true)
wg.Add(1)
go func() {
ticker := time.NewTicker(time.Second)
defer func() {
Quit.Store(nil)
wg.Done()
// notify walk to exit when StopIndex api called
running.Store(false)
ticker.Stop()
}()
tickCount := 0
for {
select {
Expand Down Expand Up @@ -70,9 +91,8 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
}
})

case <-Quit:
Running.Store(false)
ticker.Stop()
case <-quit:
log.Debugf("build index for %+v received quit", indexPaths)
eMsg := ""
now := time.Now()
originErr := err
Expand Down Expand Up @@ -100,14 +120,22 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
})
}
})
log.Debugf("build index for %+v quit success", indexPaths)
return
}
}
}()
defer func() {
if Running.Load() {
Quit <- struct{}{}
if !running.Load() || Quit.Load() != &quit {
log.Debugf("build index for %+v stopped by StopIndex", indexPaths)
return
}
select {
// avoid goroutine leak
case quit <- struct{}{}:
default:
}
wg.Wait()
}()
admin, err := op.GetAdmin()
if err != nil {
Expand All @@ -121,7 +149,7 @@ func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth
}
for _, indexPath := range indexPaths {
walkFn := func(indexPath string, info model.Obj) error {
if !Running.Load() {
if !running.Load() {
return filepath.SkipDir
}
for _, avoidPath := range ignorePaths {
Expand Down Expand Up @@ -167,7 +195,7 @@ func Config(ctx context.Context) searcher.Config {
}

func Update(parent string, objs []model.Obj) {
if instance == nil || !instance.Config().AutoUpdate || !setting.GetBool(conf.AutoUpdateIndex) || Running.Load() {
if instance == nil || !instance.Config().AutoUpdate || !setting.GetBool(conf.AutoUpdateIndex) || Running() {
return
}
if isIgnorePath(parent) {
Expand Down
2 changes: 1 addition & 1 deletion internal/search/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func Init(mode string) error {
}
instance = nil
}
if Running.Load() {
if Running() {
return fmt.Errorf("index is running")
}
if mode == "none" {
Expand Down
2 changes: 2 additions & 0 deletions pkg/mq/mq.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,7 @@ func (mq *inMemoryMQ[T]) Clear() {
}

func (mq *inMemoryMQ[T]) Len() int {
mq.Lock()
defer mq.Unlock()
return mq.queue.Len()
}
14 changes: 9 additions & 5 deletions server/handles/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type UpdateIndexReq struct {
}

func BuildIndex(c *gin.Context) {
if search.Running.Load() {
if search.Running() {
common.ErrorStrResp(c, "index is running", 400)
return
}
Expand All @@ -45,7 +45,7 @@ func UpdateIndex(c *gin.Context) {
common.ErrorResp(c, err, 400)
return
}
if search.Running.Load() {
if search.Running() {
common.ErrorStrResp(c, "index is running", 400)
return
}
Expand All @@ -72,16 +72,20 @@ func UpdateIndex(c *gin.Context) {
}

func StopIndex(c *gin.Context) {
if !search.Running.Load() {
quit := search.Quit.Load()
if quit == nil {
common.ErrorStrResp(c, "index is not running", 400)
return
}
search.Quit <- struct{}{}
select {
case *quit <- struct{}{}:
default:
}
common.SuccessResp(c)
}

func ClearIndex(c *gin.Context) {
if search.Running.Load() {
if search.Running() {
common.ErrorStrResp(c, "index is running", 400)
return
}
Expand Down

0 comments on commit 48f50a2

Please sign in to comment.