Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix scheduler lockups after storage is freed #4778

Merged
merged 2 commits into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions extern/sector-storage/sched_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,17 @@ func (sw *schedWorker) handleWorker() {

// wait for more tasks to be assigned by the main scheduler or for the worker
// to finish precessing a task
update, ok := sw.waitForUpdates()
update, pokeSched, ok := sw.waitForUpdates()
if !ok {
return
}
if pokeSched {
// a task has finished preparing, which can mean that we've freed some space on some worker
select {
case sched.workerChange <- struct{}{}:
default: // workerChange is buffered, and scheduling is global, so it's ok if we don't send here
}
}
if update {
break
}
Expand Down Expand Up @@ -257,23 +264,23 @@ func (sw *schedWorker) requestWindows() bool {
return true
}

func (sw *schedWorker) waitForUpdates() (update bool, ok bool) {
func (sw *schedWorker) waitForUpdates() (update bool, sched bool, ok bool) {
select {
case <-sw.heartbeatTimer.C:
return false, true
return false, false, true
case w := <-sw.scheduledWindows:
sw.worker.wndLk.Lock()
sw.worker.activeWindows = append(sw.worker.activeWindows, w)
sw.worker.wndLk.Unlock()
return true, true
return true, false, true
case <-sw.taskDone:
log.Debugw("task done", "workerid", sw.wid)
return true, true
return true, true, true
case <-sw.sched.closing:
case <-sw.worker.closingMgr:
}

return false, false
return false, false, false
}

func (sw *schedWorker) workerCompactWindows() {
Expand Down
34 changes: 21 additions & 13 deletions extern/sector-storage/stores/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,24 +298,28 @@ func (st *Local) reportHealth(ctx context.Context) {
return
}

st.localLk.RLock()
st.reportStorage(ctx)
}
}

toReport := map[ID]HealthReport{}
for id, p := range st.paths {
stat, err := p.stat(st.localStorage)
func (st *Local) reportStorage(ctx context.Context) {
st.localLk.RLock()

toReport[id] = HealthReport{
Stat: stat,
Err: err,
}
toReport := map[ID]HealthReport{}
for id, p := range st.paths {
stat, err := p.stat(st.localStorage)

toReport[id] = HealthReport{
Stat: stat,
Err: err,
}
}

st.localLk.RUnlock()
st.localLk.RUnlock()

for id, report := range toReport {
if err := st.index.StorageReportHealth(ctx, id, report); err != nil {
log.Warnf("error reporting storage health for %s (%+v): %+v", id, report, err)
}
for id, report := range toReport {
if err := st.index.StorageReportHealth(ctx, id, report); err != nil {
log.Warnf("error reporting storage health for %s (%+v): %+v", id, report, err)
}
}
}
Expand Down Expand Up @@ -568,6 +572,8 @@ func (st *Local) removeSector(ctx context.Context, sid abi.SectorID, typ storifa
log.Errorf("removing sector (%v) from %s: %+v", sid, spath, err)
}

st.reportStorage(ctx) // report freed space

return nil
}

Expand Down Expand Up @@ -623,6 +629,8 @@ func (st *Local) MoveStorage(ctx context.Context, s abi.SectorID, ssize abi.Sect
}
}

st.reportStorage(ctx) // report space use changes

return nil
}

Expand Down