superfly / fly-ruby

Ruby gem for handling requests within a Fly.io multiregion database setup
BSD 3-Clause "New" or "Revised" License
86 stars 6 forks source link

Test

This gem contains helper code and Rack middleware for deploying Ruby web apps on Fly.io. It's designed to speed up apps by using region-local Postgresql replicas for database reads. See the blog post for more details:

https://fly.io/blog/run-ordinary-rails-apps-globally

Speed up apps using region-local database replicas

Fly's cross-region private networking makes it easy to run database replicas alongside your app instances in multiple regions. These replicas can be used for faster reads and application performance.

Writes, however, will be slow if performed across regions. Fly allows web apps to specify that a request be replayed, at the routing layer, in another region.

This gem includes Rack middleware to automatically route such requests to the primary region. It's designed should work with any Rack-compatible Ruby framework.

Currently, it does this by:

Requirements

You should have setup a postgres cluster on Fly. Then:

Finally, set the PRIMARY_REGION environment variable in your app fly.toml to match the primary database region.

Installation

Add to your Gemfile and bundle install:

gem "fly-ruby"

If you're on Rails, the middleware will insert itself automatically, and attempt to reconnect the database.

Configuration

Most values used by this middleware are configurable. On Rails, this might go in an initializer like config/initializers/fly.rb

Fly.configure do |c|
  c.replay_threshold_in_seconds = 10
end

See the source code for defaults and available configuration options.

Known issues

This middleware send all requests to the primary if you do something like update a user's database session on every GET request.

If your replica becomes writeable for some reason, your cluster may get out of sync.

TODO

Here are some ideas for improving this gem.