[ARVADOS] updated: 2.1.0-782-g900363388
Git user
git at public.arvados.org
Wed May 12 22:54:03 UTC 2021
Summary of changes:
.../api/app/controllers/arvados/v1/groups_controller.rb | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
via 9003633889b26bdd19c1376c69981aaaa21ee819 (commit)
from e75cd149c6f242ac16ccf5ccfb70cc450566bb4c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 9003633889b26bdd19c1376c69981aaaa21ee819
Author: Peter Amstutz <peter.amstutz at curii.com>
Date: Wed May 12 18:53:11 2021 -0400
17589: when count=none and offset=0 don't do unnecessary row counts
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>
diff --git a/services/api/app/controllers/arvados/v1/groups_controller.rb b/services/api/app/controllers/arvados/v1/groups_controller.rb
index 7f5059f56..8d15bb1c5 100644
--- a/services/api/app/controllers/arvados/v1/groups_controller.rb
+++ b/services/api/app/controllers/arvados/v1/groups_controller.rb
@@ -188,8 +188,11 @@ class Arvados::V1::GroupsController < ApplicationController
# apply to each table being searched, not "groups".
load_limit_offset_order_params(fill_table_names: false)
- if params['count'] == 'none' and @offset != 0
- raise ArgumentError.new("Cannot use count=none with a nonzero offset")
+ if params['count'] == 'none' and @offset != 0 and (params['last_object_class'].nil? or params['last_object_class'].empty?)
+ # can't use offset without getting counts, so
+ # fall back to count=exact behavior.
+ params['count'] = 'exact'
+ set_count_none = true
end
# Trick apply_where_limit_order_params into applying suitable
@@ -250,7 +253,7 @@ class Arvados::V1::GroupsController < ApplicationController
seen_last_class = false
klasses.each do |klass|
- # if current klass is same as params['last_object_class'], mark that fact
+ # check if current klass is same as params['last_object_class']
seen_last_class = true if((params['count'].andand.==('none')) and
(params['last_object_class'].nil? or
params['last_object_class'].empty? or
@@ -259,7 +262,9 @@ class Arvados::V1::GroupsController < ApplicationController
# if klasses are specified, skip all other klass types
next if wanted_klasses.any? and !wanted_klasses.include?(klass.to_s)
- # don't reprocess klass types that were already seen
+ # if specified, and count=none, then only look at the klass in
+ # last_object_class.
+ # for whatever reason, this parameter exists separately from 'wanted_klasses'
next if params['count'] == 'none' and !seen_last_class
# don't process rest of object types if we already have needed number of objects
@@ -337,6 +342,10 @@ class Arvados::V1::GroupsController < ApplicationController
@extra_included = included_by_uuid.values
end
+ if set_count_none
+ params['count'] = 'none'
+ end
+
@objects = all_objects
@limit = limit_all
@offset = offset_all
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list