Iteration leverages the Enumerator pattern from the Ruby standard library, which allows us to use almost any resource as a collection to iterate.
Before writing an enumerator, it is important to understand how Iteration works and how
your enumerator will be used by it. An enumerator must yield
two things in the following order as positional
arguments:
- An object to be processed in a job
each_iteration
method - A cursor position, which Iteration will persist if
each_iteration
returns succesfully and the job is forced to shut down. It can be any data type your job backend can serialize and deserialize correctly.
A job that includes Iteration is first started with nil
as the cursor. When resuming an interrupted job, Iteration
will deserialize the persisted cursor and pass it to the job's build_enumerator
method, which your enumerator uses to
find objects that come after the last successfully processed object. The array enumerator
is a simple example which uses the array index as the cursor position.
For a more complex example, consider this Enumerator that wraps a third party API (Stripe) for paginated iteration and stores a string as the cursor position:
class StripeListEnumerator
# @see https://stripe.com/docs/api/pagination
# @param resource [Stripe::APIResource] The type of Stripe object to request
# @param params [Hash] Query parameters for the request
# @param options [Hash] Request options, such as API key or version
# @param cursor [nil, String] The Stripe ID of the last item iterated over
def initialize(resource, params: {}, options: {}, cursor:)
pagination_params = {}
pagination_params[:starting_after] = cursor unless cursor.nil?
# The following line makes a request, consider adding your rate limiter here.
@list = resource.public_send(:list, params.merge(pagination_params), options)
end
def to_enumerator
to_enum(:each).lazy
end
private
# We yield our enumerator with the object id as the index so it is persisted
# as the cursor on the job. This allows us to properly set the
# `starting_after` parameter for the API request when resuming.
def each
loop do
@list.each do |item, _index|
# The first argument is what gets passed to `each_iteration`.
# The second argument (item.id) is going to be persisted as the cursor,
# it doesn't get passed to `each_iteration`.
yield item, item.id
end
# The following line makes a request, consider adding your rate limiter here.
@list = @list.next_page
break if @list.empty?
end
end
end
Here we leverage the Stripe cursor pagination where the cursor is an ID of a specific item in the collection. The job
which uses such an Enumerator
would then look like so:
class LoadRefundsForChargeJob < ActiveJob::Base
include JobIteration::Iteration
# If you added your own rate limiting above, handle it here. For example:
# retry_on(MyRateLimiter::LimitExceededError, wait: 30.seconds, attempts: :unlimited)
# Use an exponential back-off strategy when Stripe's API returns errors.
def build_enumerator(charge_id, cursor:)
StripeListEnumerator.new(
Stripe::Refund,
params: { charge: charge_id}, # "charge_id" will be a prefixed Stripe ID such as "chrg_123"
options: { api_key: "sk_test_123", stripe_version: "2018-01-18" },
cursor: cursor
).to_enumerator
end
# Note that in this case `each_iteration` will only receive one positional argument per iteration.
# If what your enumerator yields is a composite object you will need to unpack it yourself
# inside the `each_iteration`.
def each_iteration(stripe_refund, charge_id)
# ...
end
end
and you initiate the job with
LoadRefundsForChargeJob.perform_later(_charge_id = "chrg_345")
Sometimes you can ignore the cursor. Consider the following custom Enumerator that takes items from a Redis list, which
is essentially a queue. Even if this job doesn't need to persist a cursor in order to resume, it can still use
Iteration's signal handling to finish each_iteration
and gracefully terminate.
class RedisPopListJob < ActiveJob::Base
include JobIteration::Iteration
# @see https://redis.io/commands/lpop/
def build_enumerator(*)
@redis = Redis.new
Enumerator.new do |yielder|
yielder.yield @redis.lpop(key), nil
end
end
def each_iteration(item_from_redis)
# ...
end
end
We recommend that you read the implementation of the other enumerators that come with the library (CsvEnumerator
, ActiveRecordEnumerator
) to gain a better understanding of building Enumerator objects.
Code that is written after the yield
in a custom enumerator is not guaranteed to execute. In the case that a job is
forced to exit ie job_should_exit?
is true, then the job is re-enqueued during the yield and the rest of the code in
the enumerator does not run. You can follow that logic
here and
here