Coder Social home page Coder Social logo

dataloader's Introduction

Dataloader

Build Status codecov

Dataloader is a generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API to perform batching and caching within a request. It is heavily inspired by Facebook's dataloader.

Getting started

First, install Dataloader using bundler:

gem "dataloader"

To get started, instantiate Dataloader. Each Dataloader instance represents a unique cache. Typically instances are created per request when used within a web-server. To see how to use with GraphQL server, see section below.

Dataloader is dependent on promise.rb (Promise class) which you can use freely for batch-ready code (e.g. loader can return Promise that returns a Promise that returns a Promise). Dataloader will try to batch most of them.

Basic usage

# It will be called only once with ids = [0, 1, 2]
loader = Dataloader.new do |ids|
  User.find(*ids)
end

# Schedule data to load
promise_one = loader.load(0)
promise_two = loader.load_many([1, 2])

# Get promises results
user0 = promise_one.sync
user1, user2 = promise_two.sync

Using with GraphQL

You can pass loaders passed inside context.

UserType = GraphQL::ObjectType.define do
  field :name, types.String
end

QueryType = GraphQL::ObjectType.define do
  name "Query"
  description "The query root of this schema"

  field :user do
    type UserType
    argument :id, !types.ID
    resolve ->(obj, args, ctx) {
      ctx[:user_loader].load(args["id"])
    }
  end
end

Schema = GraphQL::Schema.define do
  lazy_resolve(Promise, :sync)

  query QueryType
end

context = {
  user_loader: Dataloader.new do |ids|
    User.find(*ids)
  end
}

Schema.execute("{ user(id: 12) { name } }", context: context)

Batching

You can create loaders by providing a batch loading function.

user_loader = Dataloader.new { |ids| User.find(*ids) }

A batch loading block accepts an Array of keys, and returns a Promise which resolves to an Array or Hash of values.

Dataloader will coalesce all individual loads which occur until first .sync is called on any promise returned by #load or #load_many, and then call your batch function with all requested keys.

user_loader.load(1)
  .then { |user| user_loader.load(user.invited_by_id)) }
  .then { |invited_by| "User 1 was invited by ${invited_by[:name]}" }

# Elsewhere in your backend
user_loader.load(2)
  .then { |user| user_loader.load(user.invited_by_id)) }
  .then { |invited_by| "User 2 was invited by ${invited_by[:name]}" }

A naive solution is to issue four SQL queries to get required information, but with Dataloader this application will make at most two queries (one to load users, and second one to load invites).

Dataloader allows you to decouple unrelated parts of your application without sacrificing the performance of batch data-loading. While the loader presents an API that loads individual values, all concurrent requests will be coalesced and presented to your batch loading function. This allows your application to safely distribute data fetching requirements throughout your application and maintain minimal outgoing data requests.

Batch function

A batch loading function accepts an Array of keys, and returns Array of values or Hash that maps from keys to values (or a Promise that returns such Array or Hash). There are a few constraints that must be upheld:

  • The Array of values must be the same length as the Array of keys.
  • Each index in the Array of values must correspond to the same index in the Array of keys.
  • If Hash is returned, it must include all keys passed to batch loading function

For example, if your batch function was provided the Array of keys: [ 2, 9, 6 ], you could return one of following:

[
  { id: 2, name: "foo" },
  { id: 9, name: "bar" },
  { id: 6, name: "baz" }
]
{
  2 => { id: 2, name: "foo" },
  9 => { id: 9, name: "bar" },
  6 => { id: 6, name: "baz" }
}

Caching

Dataloader provides a memoization cache for all loads which occur withing single instance of it. After #load is called once with a given key, the resulting Promise is cached to eliminate redundant loads.

In addition to relieving pressure on your data storage, caching results per-request also creates fewer objects which may relieve memory pressure on your application:

promise1 = user_loader.load(1)
promise2 = user_loader.load(1)
promise1 == promise2 # => true

Caching per-request

Dataloader caching does not replace Redis, Memcache, or any other shared application-level cache. DataLoader is first and foremost a data loading mechanism, and its cache only serves the purpose of not repeatedly loading the same data in the context of a single request to your Application. To do this, it maintains a simple in-memory memoization cache (more accurately: #load is a memoized function).

Avoid multiple requests from different users using the same Dataloader instance, which could result in cached data incorrectly appearing in each request. Typically, Dataloader instances are created when a request begins, and are not used once the request ends.

See Using with GraphQL section to see how you can pass dataloader instances using context.

Caching errors

If a batch load fails (that is, a batch function throws or returns a rejected Promise), then the requested values will not be cached. However if a batch function returns an Error instance for an individual value, that Error will be cached to avoid frequently loading the same Error.

In some circumstances you may wish to clear the cache for these individual Errors:

user_loader.load(1).rescue do |error|
  user_loader.cache.delete(1)
  raise error
end

Disabling cache

In certain uncommon cases, a Dataloader which does not cache may be desirable. Calling Dataloader.new({ cache: nil }) { ... } will ensure that every call to #load will produce a new Promise, and requested keys will not be saved in memory.

However, when the memoization cache is disabled, your batch function will receive an array of keys which may contain duplicates! Each key will be associated with each call to #load. Your batch loader should provide a value for each instance of the requested key.

loader = Dataloader.new({ cache: nil }) do |keys|
  puts keys
  some_loading_function(keys)
end

loader.load('A')
loader.load('B')
loader.load('A')

// > [ 'A', 'B', 'A' ]

API

Dataloader

Dataloader is a class for fetching data given unique keys such as the id column (or any other key).

Each Dataloader instance contains a unique memoized cache. Because of it, it is recommended to use one Datalaoder instance per web request. You can use more long-lived instances, but then you need to take care of manually cleaning the cache.

You shouldn't share the same dataloader instance across different threads. This behavior is currently undefined.

Dataloader.new(options = {}, &batch_load)

Create a new Dataloader given a batch loading function and options.

  • batch_load: A block which accepts an Array of keys, and returns Array of values or Hash that maps from keys to values (or a Promise that returns such value).
  • options: An optional hash of options:
    • :key A function to produce a cache key for a given load key. Defaults to function { |key| key }. Useful to provide when objects are keys and two similarly shaped objects should be considered equivalent.
    • :cache An instance of cache used for caching of promies. Defaults to Concurrent::Map.new.
      • The only required API is #compute_if_absent(key)).
      • You can pass nil if you want to disable the cache.
      • You can pass pre-populated cache as well. The values can be Promises.
    • :max_batch_size Limits the number of items that get passed in to the batchLoadFn. Defaults to INFINITY. You can pass 1 to disable batching.

#load(key)

key [Object] a key to load using batch_load

Returns a Promise of computed value.

You can resolve this promise when you actually need the value with promise.sync.

All calls to #load are batched until the first #sync is encountered. Then is starts batching again, et cetera.

#load_many(keys)

keys [Array] list of keys to load using batch_load

Returns a Promise of array of computed values.

To give an example, to multiple keys:

promise = loader.load_many(['a', 'b'])
object_a, object_b = promise.sync

This is equivalent to the more verbose:

promise = Promise.all([loader.load('a'), loader.load('b')])
object_a, object_b = promise.sync

#cache

Returns the internal cache that can be overridden with :cache option (see constructor)

This field is writable, so you can reset the cache with something like:

loader.cache = Concurrent::Map.new

#wait

Triggers all batched loaders until there are no keys to resolve.

This method is invoked automatically when the value of any promise is requested with #sync.

Here is the implementation that Dataloader sets as a default for Promise:

class Promise
  def wait
    Dataloader.wait
  end
end

License

MIT

dataloader's People

Contributors

olleolleolle avatar sheerun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

dataloader's Issues

Loader Called Automatically Without empty args

I'm just getting started trying dataloader with graphql. Here's my context:

{
  locations_loader: Dataloader.new {|ids| Location.find *ids},
  title_loader: Dataloader.new {|id| Title.find id}
}

Here's the only use of a loader:

class Types::Book < GraphQL::Schema::Object
  field :number, ID, null: false
  field :title, String, null: false
  field :author, String, null: false

  def title
    load_title.then {|t| t.title}
  end

  def author
    load_title.then {|t| t.author}
  end

  def load_title
    context[:title_loader].load(object.title_id)
  end
end

Then I run the following

{
  books {
    number
    title
    author
  }
}

I'm not referencing locations_loader anywhere, but it's being called, and I get: ActiveRecord::RecordNotFound (Couldn't find Location without an ID). If I remove locations_loader, there's no error.

I don't understand. Why is simply defining a dataloader causing it to be called with an empty array?

Basic Example in the Readme incorrect?

Here is the basic example:

# It will be called only once with ids = [1, 2, 3]
loader = Dataloader.new do |ids|
  User.find(*ids)
end

# Schedule data to load
promise_one = loader.load(0)
promise_two = loader.load_many([1, 2])

# Get promises results
user0 = promise_one.sync
user1, user2 = promise_two.sync

Shouldn't promise_one = loader.load(0) be promise_one = loader.load(3) instead?

Or # It will be called only once with ids = [1, 2, 3] should be # It will be called only once with ids = [0, 1, 2]

How to batch associations load?

Hi there!

How can I batch an association load?

Example:

query {
  p1 : product(id: 1) {
    id
    name
    comments {
      id
      body
    }
  }

  p2 : product(id: 2) {
    id
    name
    comments {
      id
      body
    }
  }
}

I would like to see only two queries in my application in that case, one to load the products and one to load the comments.

I tried to use that:

resolve -> (product, args, ctx) {
  ctx[:dataloader][:comment_loader].load_many(product.comment_ids)
}

But this causes a N+1 because the comment_ids will execute one query per product and one final query to bring all comments.

This is possible with graphql-batch using a loader like that:

class Loaders::AssociationLoader < GraphQL::Batch::Loader
  def initialize(model, association)
    @model = model
    @association = association.to_s
  end

  def perform(owners)
    ActiveRecord::Associations::Preloader.new.preload(owners, @association)
    owners.each { |owner| fulfill(owner, owner.public_send(@association)) }
  end
end

This is possible because graphql-batch receives all the owners (products) on the perform method and then I can use the native AR way to preload all related comments.

I didn't find a way to do a similar approach using dataloader.

Any suggestions? Thanks!

How does it behave with multiplexing?

Hey,

First of all, thanks for working on this gem. It's great!
I have a question:
How does it behave with multiplexing? Is it meant to be used with multiplexing?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.