Giter VIP home page Giter VIP logo

fly-ruby's Introduction

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:

  • modifying the DATABASE_URL to point apps to their local regional replica
  • replaying non-idempotent (post/put/patch/delete) requests in the primary region
  • catching Postgresql exceptions caused by writes to a read-only replica, and asking for these requests to be replayed in the primary region
  • replaying all requests within a time threshold after a write, to avoid users seeing their own stale data due to replication lag

Requirements

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

  • ensure that your Postgresql and application regions match up
  • ensure that no backup regions are assigned to your application
  • attach the Postgres cluster to your application with fly postgres attach

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.

  • Add a helper to invoke ActiveJob, and possibly AR read/write split support, to send GET-originated writes to the primary database in the background

fly-ruby's People

Contributors

jsierles avatar jonathanhefner avatar mrkurt avatar azazeal avatar petergoldstein avatar gerald-kim avatar

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.