Class: ActiveRecord::Middleware::ShardSelector
- Defined in:
- activerecord/lib/active_record/middleware/shard_selector.rb
Overview
Shard Selector Middleware
The ShardSelector Middleware provides a framework for automatically swapping shards. Rails provides a basic framework to determine which shard to switch to and allows for applications to write custom strategies for swapping if needed.
The ShardSelector takes a set of options (currently only lock is supported) that can be used by the middleware to alter behavior. lock is true by default and will prohibit the request from switching shards once inside the block. If lock is false, then shard swapping will be allowed. For tenant based sharding, lock should always be true to prevent application code from mistakenly switching between tenants.
Options can be set in the config:
config.active_record.shard_selector = { lock: true }
Applications must also provide the code for the resolver as it depends on application specific models. An example resolver would look like this:
config.active_record.shard_resolver = ->(request) {
  subdomain = request.subdomain
  tenant = Tenant.find_by_subdomain!(subdomain)
  tenant.shard
}
Instance Attribute Summary collapse
- 
  
    
      #options  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute options. 
- 
  
    
      #resolver  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute resolver. 
Instance Method Summary collapse
- #call(env) ⇒ Object
- 
  
    
      #initialize(app, resolver, options = {})  ⇒ ShardSelector 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ShardSelector. 
Constructor Details
#initialize(app, resolver, options = {}) ⇒ ShardSelector
Returns a new instance of ShardSelector.
| 32 33 34 35 36 | # File 'activerecord/lib/active_record/middleware/shard_selector.rb', line 32 def initialize(app, resolver, = {}) @app = app @resolver = resolver = end | 
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
| 38 39 40 | # File 'activerecord/lib/active_record/middleware/shard_selector.rb', line 38 def end | 
#resolver ⇒ Object (readonly)
Returns the value of attribute resolver.
| 38 39 40 | # File 'activerecord/lib/active_record/middleware/shard_selector.rb', line 38 def resolver @resolver end | 
Instance Method Details
#call(env) ⇒ Object
| 40 41 42 43 44 45 46 47 48 | # File 'activerecord/lib/active_record/middleware/shard_selector.rb', line 40 def call(env) request = ActionDispatch::Request.new(env) shard = selected_shard(request) set_shard(shard) do @app.call(env) end end |