Skip to content

Commit 8bc21cb

Browse files
ningmingxiaotboevil
authored andcommittedJan 23, 2025
support to syncfs after pull by using diff plugin
Signed-off-by: ningmingxiao <ning.mingxiao@zte.com.cn> (cherry picked from commit 0e4f210) Signed-off-by: Qiyuan Liang <qiyuan.liang@smartx.com>
1 parent e6ba17c commit 8bc21cb

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed
 

‎services/diff/local.go

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

4650
type differ interface {
@@ -61,7 +65,7 @@ func init() {
6165
if err != nil {
6266
return nil, err
6367
}
64-
68+
syncFs := ic.Config.(*config).SyncFs
6569
orderedNames := ic.Config.(*config).Order
6670
ordered := make([]differ, len(orderedNames))
6771
for i, n := range orderedNames {
@@ -82,13 +86,15 @@ func init() {
8286

8387
return &local{
8488
differs: ordered,
89+
syncfs: syncFs,
8590
}, nil
8691
},
8792
})
8893
}
8994

9095
type local struct {
9196
differs []differ
97+
syncfs bool
9298
}
9399

94100
var _ diffapi.DiffClient = &local{}
@@ -109,6 +115,9 @@ func (l *local) Apply(ctx context.Context, er *diffapi.ApplyRequest, _ ...grpc.C
109115
}
110116
opts = append(opts, diff.WithPayloads(payloads))
111117
}
118+
if l.syncfs {
119+
er.SyncFs = true
120+
}
112121
opts = append(opts, diff.WithSyncFs(er.SyncFs))
113122

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

‎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
}

‎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)