Merge pull request #1963 from tonistiigi/release-count-fixes
commit
19d31737fb
|
@ -127,6 +127,7 @@ type MountRef struct {
|
|||
type MountMutableRef struct {
|
||||
Ref cache.MutableRef
|
||||
MountIndex int
|
||||
NoCommit bool
|
||||
}
|
||||
|
||||
type MakeMutable func(m *opspb.Mount, ref cache.ImmutableRef) (cache.MutableRef, error)
|
||||
|
@ -196,6 +197,7 @@ func PrepareMounts(ctx context.Context, mm *mounts.MountManager, cm cache.Manage
|
|||
p.Actives = append(p.Actives, MountMutableRef{
|
||||
MountIndex: i,
|
||||
Ref: active,
|
||||
NoCommit: true,
|
||||
})
|
||||
if m.Output != opspb.SkipOutput && ref != nil {
|
||||
p.OutputRefs = append(p.OutputRefs, MountRef{
|
||||
|
|
|
@ -21,10 +21,15 @@ func (e *ExecError) Unwrap() error {
|
|||
}
|
||||
|
||||
func (e *ExecError) EachRef(fn func(solver.Result) error) (err error) {
|
||||
m := map[solver.Result]struct{}{}
|
||||
for _, res := range e.Inputs {
|
||||
if res == nil {
|
||||
continue
|
||||
}
|
||||
if _, ok := m[res]; ok {
|
||||
continue
|
||||
}
|
||||
m[res] = struct{}{}
|
||||
if err1 := fn(res); err1 != nil && err == nil {
|
||||
err = err1
|
||||
}
|
||||
|
@ -33,6 +38,10 @@ func (e *ExecError) EachRef(fn func(solver.Result) error) (err error) {
|
|||
if res == nil {
|
||||
continue
|
||||
}
|
||||
if _, ok := m[res]; ok {
|
||||
continue
|
||||
}
|
||||
m[res] = struct{}{}
|
||||
if err1 := fn(res); err1 != nil && err == nil {
|
||||
err = err1
|
||||
}
|
||||
|
|
|
@ -235,7 +235,7 @@ func (e *execOp) Exec(ctx context.Context, g session.Group, inputs []solver.Resu
|
|||
if m.Input == -1 {
|
||||
continue
|
||||
}
|
||||
execInputs[i] = inputs[m.Input]
|
||||
execInputs[i] = inputs[m.Input].Clone()
|
||||
}
|
||||
execMounts := make([]solver.Result, len(e.op.Mounts))
|
||||
copy(execMounts, execInputs)
|
||||
|
@ -243,12 +243,16 @@ func (e *execOp) Exec(ctx context.Context, g session.Group, inputs []solver.Resu
|
|||
execMounts[p.OutputRefs[i].MountIndex] = res
|
||||
}
|
||||
for _, active := range p.Actives {
|
||||
ref, cerr := active.Ref.Commit(ctx)
|
||||
if cerr != nil {
|
||||
err = errors.Wrapf(err, "error committing %s: %s", active.Ref.ID(), cerr)
|
||||
continue
|
||||
if active.NoCommit {
|
||||
active.Ref.Release(context.TODO())
|
||||
} else {
|
||||
ref, cerr := active.Ref.Commit(ctx)
|
||||
if cerr != nil {
|
||||
err = errors.Wrapf(err, "error committing %s: %s", active.Ref.ID(), cerr)
|
||||
continue
|
||||
}
|
||||
execMounts[active.MountIndex] = worker.NewWorkerRefResult(ref, e.w)
|
||||
}
|
||||
execMounts[active.MountIndex] = worker.NewWorkerRefResult(ref, e.w)
|
||||
}
|
||||
err = errdefs.WithExecError(err, execInputs, execMounts)
|
||||
} else {
|
||||
|
|
|
@ -430,7 +430,6 @@ func (s *FileOpSolver) getInput(ctx context.Context, idx int, inputs []fileoptyp
|
|||
if cerr == nil {
|
||||
outputRes[idx-len(inputs)] = worker.NewWorkerRefResult(ref.(cache.ImmutableRef), s.w)
|
||||
}
|
||||
inpMount.Release(context.TODO())
|
||||
}
|
||||
|
||||
// If the action has a secondary input, commit it and set the ref on
|
||||
|
|
|
@ -47,7 +47,7 @@ type splitResult struct {
|
|||
|
||||
func (r *splitResult) Release(ctx context.Context) error {
|
||||
if atomic.AddInt64(&r.released, 1) > 1 {
|
||||
err := errors.Errorf("releasing already released reference")
|
||||
err := errors.Errorf("releasing already released reference %+v", r.Result.ID())
|
||||
logrus.Error(err)
|
||||
return err
|
||||
}
|
||||
|
@ -78,10 +78,14 @@ func NewSharedCachedResult(res CachedResult) *SharedCachedResult {
|
|||
}
|
||||
}
|
||||
|
||||
func (r *SharedCachedResult) Clone() CachedResult {
|
||||
func (r *SharedCachedResult) CloneCachedResult() CachedResult {
|
||||
return &clonedCachedResult{Result: r.SharedResult.Clone(), cr: r.CachedResult}
|
||||
}
|
||||
|
||||
func (r *SharedCachedResult) Clone() Result {
|
||||
return r.CloneCachedResult()
|
||||
}
|
||||
|
||||
func (r *SharedCachedResult) Release(ctx context.Context) error {
|
||||
return r.SharedResult.Release(ctx)
|
||||
}
|
||||
|
|
|
@ -244,7 +244,7 @@ func (s *scheduler) build(ctx context.Context, edge Edge) (CachedResult, error)
|
|||
if err := p.Receiver.Status().Err; err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return p.Receiver.Status().Value.(*edgeState).result.Clone(), nil
|
||||
return p.Receiver.Status().Value.(*edgeState).result.CloneCachedResult(), nil
|
||||
}
|
||||
|
||||
// newPipe creates a new request pipe between two edges
|
||||
|
|
|
@ -3640,6 +3640,7 @@ type dummyResult struct {
|
|||
func (r *dummyResult) ID() string { return r.id }
|
||||
func (r *dummyResult) Release(context.Context) error { return nil }
|
||||
func (r *dummyResult) Sys() interface{} { return r }
|
||||
func (r *dummyResult) Clone() Result { return r }
|
||||
|
||||
func testOpResolver(v Vertex, b Builder) (Op, error) {
|
||||
if op, ok := v.Sys().(Op); ok {
|
||||
|
|
|
@ -61,6 +61,7 @@ type Result interface {
|
|||
ID() string
|
||||
Release(context.Context) error
|
||||
Sys() interface{}
|
||||
Clone() Result
|
||||
}
|
||||
|
||||
// CachedResult is a result connected with its cache key
|
||||
|
|
|
@ -52,3 +52,11 @@ func (r *workerRefResult) Release(ctx context.Context) error {
|
|||
func (r *workerRefResult) Sys() interface{} {
|
||||
return r.WorkerRef
|
||||
}
|
||||
|
||||
func (r *workerRefResult) Clone() solver.Result {
|
||||
r2 := *r
|
||||
if r.ImmutableRef != nil {
|
||||
r.ImmutableRef = r.ImmutableRef.Clone()
|
||||
}
|
||||
return &r2
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue