X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/dc08f17cc3c90714efafb11e38e27ca8ea1b5f5b..ba34a22d9918ae97306472c04701e69090821c82:/services/api/app/models/container.rb diff --git a/services/api/app/models/container.rb b/services/api/app/models/container.rb index 3e3f73b838..4b02ad52e5 100644 --- a/services/api/app/models/container.rb +++ b/services/api/app/models/container.rb @@ -227,6 +227,10 @@ class Container < ArvadosModel if rc['keep_cache_ram'] == 0 rc['keep_cache_ram'] = Rails.configuration.Containers.DefaultKeepCacheRAM end + if rc['keep_cache_disk'] == 0 and rc['keep_cache_ram'] == 0 + # Only set if keep_cache_ram isn't set. + rc['keep_cache_disk'] = Rails.configuration.Containers.DefaultKeepCacheDisk + end rc end @@ -306,6 +310,15 @@ class Container < ArvadosModel # records that don't have a 'cuda' section in runtime_constraints resolved_runtime_constraints << resolved_runtime_constraints[0].except('cuda') end + if resolved_runtime_constraints[0]['keep_cache_disk'] == 0 + # If no disk cache requested, extend search to include older container + # records that don't have a 'keep_cache_disk' field in runtime_constraints + if resolved_runtime_constraints.length == 2 + # exclude the one that also excludes CUDA + resolved_runtime_constraints << resolved_runtime_constraints[1].except('keep_cache_disk') + end + resolved_runtime_constraints << resolved_runtime_constraints[0].except('keep_cache_disk') + end candidates = candidates.where_serialized(:runtime_constraints, resolved_runtime_constraints, md5: true, multivalue: true) log_reuse_info(candidates) { "after filtering on runtime_constraints #{attrs[:runtime_constraints].inspect}" }