-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathdataloader.rb
334 lines (299 loc) · 10.6 KB
/
dataloader.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
# frozen_string_literal: true
require "graphql/dataloader/null_dataloader"
require "graphql/dataloader/request"
require "graphql/dataloader/request_all"
require "graphql/dataloader/source"
require "graphql/dataloader/active_record_association_source"
require "graphql/dataloader/active_record_source"
module GraphQL
# This plugin supports Fiber-based concurrency, along with {GraphQL::Dataloader::Source}.
#
# @example Installing Dataloader
#
# class MySchema < GraphQL::Schema
# use GraphQL::Dataloader
# end
#
# @example Waiting for batch-loaded data in a GraphQL field
#
# field :team, Types::Team, null: true
#
# def team
# dataloader.with(Sources::Record, Team).load(object.team_id)
# end
#
class Dataloader
class << self
attr_accessor :default_nonblocking, :default_fiber_limit
end
def self.use(schema, nonblocking: nil, fiber_limit: nil)
dataloader_class = if nonblocking
warn("`nonblocking: true` is deprecated from `GraphQL::Dataloader`, please use `GraphQL::Dataloader::AsyncDataloader` instead. Docs: https://graphql-ruby.org/dataloader/async_dataloader.")
Class.new(self) { self.default_nonblocking = true }
else
self
end
if fiber_limit
dataloader_class = Class.new(dataloader_class)
dataloader_class.default_fiber_limit = fiber_limit
end
schema.dataloader_class = dataloader_class
end
# Call the block with a Dataloader instance,
# then run all enqueued jobs and return the result of the block.
def self.with_dataloading(&block)
dataloader = self.new
result = nil
dataloader.append_job {
result = block.call(dataloader)
}
dataloader.run
result
end
def initialize(nonblocking: self.class.default_nonblocking, fiber_limit: self.class.default_fiber_limit)
@source_cache = Hash.new { |h, k| h[k] = {} }
@pending_jobs = []
if !nonblocking.nil?
@nonblocking = nonblocking
end
@fiber_limit = fiber_limit
end
# @return [Integer, nil]
attr_reader :fiber_limit
def nonblocking?
@nonblocking
end
# This is called before the fiber is spawned, from the parent context (i.e. from
# the thread or fiber that it is scheduled from).
#
# @return [Hash<Symbol, Object>] Current fiber-local variables
def get_fiber_variables
fiber_vars = {}
Thread.current.keys.each do |fiber_var_key|
fiber_vars[fiber_var_key] = Thread.current[fiber_var_key]
end
fiber_vars
end
# Set up the fiber variables in a new fiber.
#
# This is called within the fiber, right after it is spawned.
#
# @param vars [Hash<Symbol, Object>] Fiber-local variables from {get_fiber_variables}
# @return [void]
def set_fiber_variables(vars)
vars.each { |k, v| Thread.current[k] = v }
nil
end
# This method is called when Dataloader is finished using a fiber.
# Use it to perform any cleanup, such as releasing database connections (if required manually)
def cleanup_fiber
end
# Get a Source instance from this dataloader, for calling `.load(...)` or `.request(...)` on.
#
# @param source_class [Class<GraphQL::Dataloader::Source]
# @param batch_parameters [Array<Object>]
# @return [GraphQL::Dataloader::Source] An instance of {source_class}, initialized with `self, *batch_parameters`,
# and cached for the lifetime of this {Multiplex}.
if RUBY_VERSION < "3" || RUBY_ENGINE != "ruby" # truffle-ruby wasn't doing well with the implementation below
def with(source_class, *batch_args)
batch_key = source_class.batch_key_for(*batch_args)
@source_cache[source_class][batch_key] ||= begin
source = source_class.new(*batch_args)
source.setup(self)
source
end
end
else
def with(source_class, *batch_args, **batch_kwargs)
batch_key = source_class.batch_key_for(*batch_args, **batch_kwargs)
@source_cache[source_class][batch_key] ||= begin
source = source_class.new(*batch_args, **batch_kwargs)
source.setup(self)
source
end
end
end
# Tell the dataloader that this fiber is waiting for data.
#
# Dataloader will resume the fiber after the requested data has been loaded (by another Fiber).
#
# @return [void]
def yield(source = Fiber[:__graphql_current_dataloader_source])
trace = Fiber[:__graphql_current_multiplex]&.current_trace
trace&.dataloader_fiber_yield(source)
Fiber.yield
trace&.dataloader_fiber_resume(source)
nil
end
# @api private Nothing to see here
def append_job(&job)
# Given a block, queue it up to be worked through when `#run` is called.
# (If the dataloader is already running, than a Fiber will pick this up later.)
@pending_jobs.push(job)
nil
end
# Clear any already-loaded objects from {Source} caches
# @return [void]
def clear_cache
@source_cache.each do |_source_class, batched_sources|
batched_sources.each_value(&:clear_cache)
end
nil
end
# Use a self-contained queue for the work in the block.
def run_isolated
prev_queue = @pending_jobs
prev_pending_keys = {}
@source_cache.each do |source_class, batched_sources|
batched_sources.each do |batch_args, batched_source_instance|
if batched_source_instance.pending?
prev_pending_keys[batched_source_instance] = batched_source_instance.pending.dup
batched_source_instance.pending.clear
end
end
end
@pending_jobs = []
res = nil
# Make sure the block is inside a Fiber, so it can `Fiber.yield`
append_job {
res = yield
}
run
res
ensure
@pending_jobs = prev_queue
prev_pending_keys.each do |source_instance, pending|
pending.each do |key, value|
if !source_instance.results.key?(key)
source_instance.pending[key] = value
end
end
end
end
def run
trace = Fiber[:__graphql_current_multiplex]&.current_trace
jobs_fiber_limit, total_fiber_limit = calculate_fiber_limit
job_fibers = []
next_job_fibers = []
source_fibers = []
next_source_fibers = []
first_pass = true
manager = spawn_fiber do
trace&.begin_dataloader(self)
while first_pass || !job_fibers.empty?
first_pass = false
while (f = (job_fibers.shift || (((next_job_fibers.size + job_fibers.size) < jobs_fiber_limit) && spawn_job_fiber(trace))))
if f.alive?
finished = run_fiber(f)
if !finished
next_job_fibers << f
end
end
end
join_queues(job_fibers, next_job_fibers)
while (!source_fibers.empty? || @source_cache.each_value.any? { |group_sources| group_sources.each_value.any?(&:pending?) })
while (f = source_fibers.shift || (((job_fibers.size + source_fibers.size + next_source_fibers.size + next_job_fibers.size) < total_fiber_limit) && spawn_source_fiber(trace)))
if f.alive?
finished = run_fiber(f)
if !finished
next_source_fibers << f
end
end
end
join_queues(source_fibers, next_source_fibers)
end
end
trace&.end_dataloader(self)
end
run_fiber(manager)
if manager.alive?
raise "Invariant: Manager fiber didn't terminate properly."
end
if !job_fibers.empty?
raise "Invariant: job fibers should have exited but #{job_fibers.size} remained"
end
if !source_fibers.empty?
raise "Invariant: source fibers should have exited but #{source_fibers.size} remained"
end
rescue UncaughtThrowError => e
throw e.tag, e.value
end
def run_fiber(f)
f.resume
end
def spawn_fiber
fiber_vars = get_fiber_variables
Fiber.new(blocking: !@nonblocking) {
set_fiber_variables(fiber_vars)
yield
cleanup_fiber
}
end
# Pre-warm the Dataloader cache with ActiveRecord objects which were loaded elsewhere.
# These will be used by {Dataloader::ActiveRecordSource}, {Dataloader::ActiveRecordAssociationSource} and their helper
# methods, `dataload_record` and `dataload_association`.
# @param records [Array<ActiveRecord::Base>] Already-loaded records to warm the cache with
# @param index_by [Symbol] The attribute to use as the cache key. (Should match `find_by:` when using {ActiveRecordSource})
# @return [void]
def merge_records(records, index_by: :id)
records_by_class = Hash.new { |h, k| h[k] = {} }
records.each do |r|
records_by_class[r.class][r.public_send(index_by)] = r
end
records_by_class.each do |r_class, records|
with(ActiveRecordSource, r_class).merge(records)
end
end
private
def calculate_fiber_limit
total_fiber_limit = @fiber_limit || Float::INFINITY
if total_fiber_limit < 4
raise ArgumentError, "Dataloader fiber limit is too low (#{total_fiber_limit}), it must be at least 4"
end
total_fiber_limit -= 1 # deduct one fiber for `manager`
# Deduct at least one fiber for sources
jobs_fiber_limit = total_fiber_limit - 2
return jobs_fiber_limit, total_fiber_limit
end
def join_queues(prev_queue, new_queue)
@nonblocking && Fiber.scheduler.run
prev_queue.concat(new_queue)
new_queue.clear
end
def spawn_job_fiber(trace)
if !@pending_jobs.empty?
spawn_fiber do
trace&.dataloader_spawn_execution_fiber(@pending_jobs)
while job = @pending_jobs.shift
job.call
end
trace&.dataloader_fiber_exit
end
end
end
def spawn_source_fiber(trace)
pending_sources = nil
@source_cache.each_value do |source_by_batch_params|
source_by_batch_params.each_value do |source|
if source.pending?
pending_sources ||= []
pending_sources << source
end
end
end
if pending_sources
spawn_fiber do
trace&.dataloader_spawn_source_fiber(pending_sources)
pending_sources.each do |source|
Fiber[:__graphql_current_dataloader_source] = source
trace&.begin_dataloader_source(source)
source.run_pending_keys
trace&.end_dataloader_source(source)
end
trace&.dataloader_fiber_exit
end
end
end
end
end
require "graphql/dataloader/async_dataloader"