Skip to content

Commit 0e4f210

Browse files
committed
support to syncfs after pull by using diff plugin
Signed-off-by: ningmingxiao <[email protected]>
1 parent 7a80448 commit 0e4f210

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

plugins/services/diff/local.go

+10-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ type config struct {
4242
// correct output, allowing any ordering to be used to prefer
4343
// more optimimal implementations.
4444
Order []string `toml:"default"`
45+
// sync_fs is an experimental setting. It's to force sync
46+
// filesystem during unpacking to ensure that data integrity.
47+
// It is effective for all containerd client.
48+
SyncFs bool `toml:"sync_fs"`
4549
}
4650

4751
type differ interface {
@@ -62,7 +66,7 @@ func init() {
6266
if err != nil {
6367
return nil, err
6468
}
65-
69+
syncFs := ic.Config.(*config).SyncFs
6670
orderedNames := ic.Config.(*config).Order
6771
ordered := make([]differ, len(orderedNames))
6872
for i, n := range orderedNames {
@@ -79,13 +83,15 @@ func init() {
7983

8084
return &local{
8185
differs: ordered,
86+
syncfs: syncFs,
8287
}, nil
8388
},
8489
})
8590
}
8691

8792
type local struct {
8893
differs []differ
94+
syncfs bool
8995
}
9096

9197
var _ diffapi.DiffClient = &local{}
@@ -106,6 +112,9 @@ func (l *local) Apply(ctx context.Context, er *diffapi.ApplyRequest, _ ...grpc.C
106112
}
107113
opts = append(opts, diff.WithPayloads(payloads))
108114
}
115+
if l.syncfs {
116+
er.SyncFs = true
117+
}
109118
opts = append(opts, diff.WithSyncFs(er.SyncFs))
110119

111120
for _, differ := range l.differs {

plugins/services/diff/service_unix.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
package diff
2020

2121
var defaultDifferConfig = &config{
22-
Order: []string{"walking"},
22+
Order: []string{"walking"},
23+
SyncFs: false,
2324
}

plugins/services/diff/service_windows.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@
1717
package diff
1818

1919
var defaultDifferConfig = &config{
20-
Order: []string{"windows", "windows-lcow"},
20+
Order: []string{"windows", "windows-lcow"},
21+
SyncFs: false,
2122
}

0 commit comments

Comments
 (0)