-
Notifications
You must be signed in to change notification settings - Fork 206
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
rafs: fix amplify can not be skipped. #1150
Conversation
@ccx1024cc , a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/56433 |
@ccx1024cc , the title has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/56435 |
``` json { "device":{ "backend":{ "type":"registry", "config":{ "readahead":false, "host":"dockerhub.kubekey.local", "repo":"dfns/alpine", "auth":"YWRtaw46SGFyYm9VMTIZNDU=", "scheme":"https", "skip_verify":true, "proxy":{ "fallback":false } } }, "cache":{ "type":"", "config":{ "work_dir":"/var/lib/containerd-nydus/cache", "disable_indexed_map":false } } }, "mode":"direct", "digest_validate":false, "jostats_files":true, "enable_xattr":true, "access_pattern":true, "latest_read_files":true, "batch_size":0, "amplify_io":0, "fs_prefetch":{ "enable":false, "prefetch_all":false, "threads_count":10, "merging_size":131072, "bandwidth_rate":1048576, "batch_size":0, "amplify_io":0 } } ``` `{.fs_prefetch.merging_size}` is used, instead of `{.amplify_io}` Signed-off-by: 泰友 <[email protected]>
2e26501
to
0fefbb4
Compare
@ccx1024cc , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/56436 |
cc @jiangliu |
@ccx1024cc , The CI test is completed, please check result:
Congratulations, your test job passed! |
@ccx1024cc , The CI test is completed, please check result:
Congratulations, your test job passed! |
@ccx1024cc , The CI test is completed, please check result:
Congratulations, your test job passed! |
Production: With
{.amplify_io}
= 0, minimal read size from storage still remains 128K.Reason
{.fs_prefetch.merging_size}
is used, instead of{.amplify_io}