[ARVADOS] updated: 7a77da2c224db3a7ba27cf2390f8d696016a4fbb
Git user
git at public.curoverse.com
Wed Jul 6 11:47:50 EDT 2016
Summary of changes:
services/api/lib/eventbus.rb | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
discards f1c9f136ec77d1b48bc96e59df3c3c1368810ca7 (commit)
via 7a77da2c224db3a7ba27cf2390f8d696016a4fbb (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (f1c9f136ec77d1b48bc96e59df3c3c1368810ca7)
\
N -- N -- N (7a77da2c224db3a7ba27cf2390f8d696016a4fbb)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
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 7a77da2c224db3a7ba27cf2390f8d696016a4fbb
Author: Tom Clegg <tom at curoverse.com>
Date: Wed Jul 6 11:47:45 2016 -0400
9542: Avoid retrieving huge result sets from postgres.
diff --git a/services/api/lib/eventbus.rb b/services/api/lib/eventbus.rb
index aaeebdc..e7f2bb1 100644
--- a/services/api/lib/eventbus.rb
+++ b/services/api/lib/eventbus.rb
@@ -93,8 +93,8 @@ class EventBus
begin
# Must have at least one filter set up to receive events
if ws.filters.length > 0
- # Start with log rows readable by user, sorted in ascending order
- logs = Log.readable_by(ws.user).order("id asc")
+ # Start with log rows readable by user
+ logs = Log.readable_by(ws.user)
cond_id = nil
cond_out = []
@@ -132,11 +132,21 @@ class EventBus
logs = logs.where(cond_id, *param_out)
end
- # Execute query and actually send the matching log rows
- logs.each do |l|
+ # Execute query and actually send the matching log rows. Load
+ # the full log records only when we're ready to send them,
+ # though: otherwise, (1) postgres has to build the whole
+ # result set and return it to us before we can send the first
+ # event, and (2) we store lots of records in memory while
+ # waiting to spool them out to the client. Both of these are
+ # troublesome when log records are large (e.g., a collection
+ # update contains both old and new manifest_text).
+ #
+ # Note: find_each implies order('id asc'), which is what we
+ # want.
+ logs.select(:id).find_each do |l|
if not ws.sent_ids.include?(l.id)
# only send if not a duplicate
- ws.send(l.as_api_response.to_json)
+ ws.send(Log.find(l.id).as_api_response.to_json)
end
if not ws.last_log_id.nil?
# record ids only when sending "catchup" messages, not notifies
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list