Module: ActiveRecord::ConnectionHandling
- Included in:
- Base
- Defined in:
- lib/active_record/connection_handling.rb
Overview
Active Record Connection Handling
Constant Summary collapse
- RAILS_ENV =
-> { (Rails.env if defined?(Rails.env)) || ENV["RAILS_ENV"].presence || ENV["RACK_ENV"].presence }
- DEFAULT_ENV =
-> { RAILS_ENV.call || "default_env" }
Instance Attribute Summary collapse
-
#connection_specification_name ⇒ Object
Returns the connection specification name from the current class or its parent.
Instance Method Summary collapse
-
#adapter_class ⇒ Object
:nodoc:.
-
#clear_cache! ⇒ Object
:nodoc:.
-
#clear_query_caches_for_current_thread ⇒ Object
Clears the query cache for all connections associated with the current thread.
-
#connected? ⇒ Boolean
Returns
trueif Active Record is connected. -
#connected_to(role: nil, shard: nil, prevent_writes: false, &blk) ⇒ Object
Connects to a role (e.g. writing, reading, or a custom role) and/or shard for the duration of the block.
-
#connected_to?(role:, shard: ActiveRecord::Base.default_shard) ⇒ Boolean
Returns true if role is the current connected role and/or current connected shard.
-
#connected_to_all_shards(role: nil, prevent_writes: false, &blk) ⇒ Object
Passes the block to
connected_tofor everyshardthe model is configured to connect to (if any), and returns the results in an array. -
#connected_to_many(*classes, role:, shard: nil, prevent_writes: false) ⇒ Object
Connects a role and/or shard to the provided connection names.
-
#connecting_to(role: default_role, shard: default_shard, prevent_writes: false) ⇒ Object
Use a specified connection.
-
#connection ⇒ Object
Soft deprecated.
-
#connection_db_config ⇒ Object
Returns the db_config object from the associated connection:.
- #connection_pool ⇒ Object
-
#connects_to(database: {}, shards: {}) ⇒ Object
Connects a model to the databases specified.
-
#establish_connection(config_or_env = nil) ⇒ Object
Establishes the connection to the database.
-
#lease_connection ⇒ Object
Returns the connection currently associated with the class.
-
#primary_class? ⇒ Boolean
:nodoc:.
-
#prohibit_shard_swapping(enabled = true) ⇒ Object
Prohibit swapping shards while inside of the passed block.
-
#release_connection ⇒ Object
Return the currently leased connection into the pool.
- #remove_connection ⇒ Object
- #retrieve_connection ⇒ Object
-
#schema_cache ⇒ Object
:nodoc:.
- #shard_keys ⇒ Object
-
#shard_swapping_prohibited? ⇒ Boolean
Determine whether or not shard swapping is currently prohibited.
- #sharded? ⇒ Boolean
-
#while_preventing_writes(enabled = true, &block) ⇒ Object
Prevent writing to the database regardless of role.
-
#with_connection(prevent_permanent_checkout: false, &block) ⇒ Object
Checkouts a connection from the pool, yield it and then check it back in.
Instance Attribute Details
#connection_specification_name ⇒ Object
Returns the connection specification name from the current class or its parent.
319 320 321 322 323 324 |
# File 'lib/active_record/connection_handling.rb', line 319 def connection_specification_name if @connection_specification_name.nil? return self == Base ? Base.name : superclass.connection_specification_name end @connection_specification_name end |
Instance Method Details
#adapter_class ⇒ Object
:nodoc:
341 342 343 |
# File 'lib/active_record/connection_handling.rb', line 341 def adapter_class # :nodoc: connection_pool.db_config.adapter_class end |
#clear_cache! ⇒ Object
:nodoc:
375 376 377 |
# File 'lib/active_record/connection_handling.rb', line 375 def clear_cache! # :nodoc: connection_pool.schema_cache.clear! end |
#clear_query_caches_for_current_thread ⇒ Object
Clears the query cache for all connections associated with the current thread.
261 262 263 264 265 |
# File 'lib/active_record/connection_handling.rb', line 261 def clear_query_caches_for_current_thread connection_handler.each_connection_pool do |pool| pool.clear_query_cache end end |
#connected? ⇒ Boolean
Returns true if Active Record is connected.
354 355 356 |
# File 'lib/active_record/connection_handling.rb', line 354 def connected? connection_handler.connected?(connection_specification_name, role: current_role, shard: current_shard) end |
#connected_to(role: nil, shard: nil, prevent_writes: false, &blk) ⇒ Object
Connects to a role (e.g. writing, reading, or a custom role) and/or shard for the duration of the block. At the end of the block the connection will be returned to the original role / shard.
If only a role is passed, Active Record will look up the connection based on the requested role. If a non-established role is requested an ActiveRecord::ConnectionNotEstablished error will be raised:
ActiveRecord::Base.connected_to(role: :writing) do
Dog.create! # creates dog using dog writing connection
end
ActiveRecord::Base.connected_to(role: :reading) do
Dog.create! # throws exception because we're on a replica
end
When swapping to a shard, the role must be passed as well. If a non-existent shard is passed, an ActiveRecord::ConnectionNotEstablished error will be raised.
When a shard and role is passed, Active Record will first lookup the role, and then look up the connection by shard key.
ActiveRecord::Base.connected_to(role: :reading, shard: :shard_one_replica) do
Dog.first # finds first Dog record stored on the shard one replica
end
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/active_record/connection_handling.rb', line 137 def connected_to(role: nil, shard: nil, prevent_writes: false, &blk) if self != Base && !abstract_class raise NotImplementedError, "calling `connected_to` is only allowed on ActiveRecord::Base or abstract classes." end if !connection_class? && !primary_class? raise NotImplementedError, "calling `connected_to` is only allowed on the abstract class that established the connection." end unless role || shard raise ArgumentError, "must provide a `shard` and/or `role`." end with_role_and_shard(role, shard, prevent_writes, &blk) end |
#connected_to?(role:, shard: ActiveRecord::Base.default_shard) ⇒ Boolean
Returns true if role is the current connected role and/or current connected shard. If no shard is passed, the default will be used.
ActiveRecord::Base.connected_to(role: :writing) do
ActiveRecord::Base.connected_to?(role: :writing) #=> true
ActiveRecord::Base.connected_to?(role: :reading) #=> false
end
ActiveRecord::Base.connected_to(role: :reading, shard: :shard_one) do
ActiveRecord::Base.connected_to?(role: :reading, shard: :shard_one) #=> true
ActiveRecord::Base.connected_to?(role: :reading, shard: :default) #=> false
ActiveRecord::Base.connected_to?(role: :writing, shard: :shard_one) #=> true
end
256 257 258 |
# File 'lib/active_record/connection_handling.rb', line 256 def connected_to?(role:, shard: ActiveRecord::Base.default_shard) current_role == role.to_sym && current_shard == shard.to_sym end |
#connected_to_all_shards(role: nil, prevent_writes: false, &blk) ⇒ Object
Passes the block to connected_to for every shard the model is configured to connect to (if any), and returns the results in an array.
Optionally, role and/or prevent_writes can be passed which will be forwarded to each connected_to call.
189 190 191 192 193 |
# File 'lib/active_record/connection_handling.rb', line 189 def connected_to_all_shards(role: nil, prevent_writes: false, &blk) shard_keys.map do |shard| connected_to(shard: shard, role: role, prevent_writes: prevent_writes, &blk) end end |
#connected_to_many(*classes, role:, shard: nil, prevent_writes: false) ⇒ Object
Connects a role and/or shard to the provided connection names. Optionally prevent_writes can be passed to block writes on a connection. reading will automatically set prevent_writes to true.
connected_to_many is an alternative to deeply nested connected_to blocks.
Usage:
ActiveRecord::Base.connected_to_many(AnimalsRecord, MealsRecord, role: :reading) do
Dog.first # Read from animals replica
Dinner.first # Read from meals replica
Person.first # Read from primary writer
end
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/active_record/connection_handling.rb', line 166 def connected_to_many(*classes, role:, shard: nil, prevent_writes: false) classes = classes.flatten if self != Base || classes.include?(Base) raise NotImplementedError, "connected_to_many can only be called on ActiveRecord::Base." end prevent_writes = true if role == ActiveRecord.reading_role append_to_connected_to_stack(role: role, shard: shard, prevent_writes: prevent_writes, klasses: classes) begin yield ensure connected_to_stack.pop end end |
#connecting_to(role: default_role, shard: default_shard, prevent_writes: false) ⇒ Object
Use a specified connection.
This method is useful for ensuring that a specific connection is being used. For example, when booting a console in readonly mode.
It is not recommended to use this method in a request since it does not yield to a block like connected_to.
202 203 204 205 206 |
# File 'lib/active_record/connection_handling.rb', line 202 def connecting_to(role: default_role, shard: default_shard, prevent_writes: false) prevent_writes = true if role == ActiveRecord.reading_role append_to_connected_to_stack(role: role, shard: shard, prevent_writes: prevent_writes, klasses: [self]) end |
#connection ⇒ Object
Soft deprecated. Use #with_connection or #lease_connection instead.
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/active_record/connection_handling.rb', line 277 def connection pool = connection_pool if pool.permanent_lease? case ActiveRecord.permanent_connection_checkout when :deprecated ActiveRecord.deprecator.warn <<~MESSAGE Called deprecated `ActiveRecord::Base.connection` method. Either use `with_connection` or `lease_connection`. MESSAGE when :disallowed raise ActiveRecordError, <<~MESSAGE Called deprecated `ActiveRecord::Base.connection` method. Either use `with_connection` or `lease_connection`. MESSAGE end pool.lease_connection else pool.active_connection end end |
#connection_db_config ⇒ Object
Returns the db_config object from the associated connection:
ActiveRecord::Base.connection_db_config
#<ActiveRecord::DatabaseConfigurations::HashConfig:0x00007fd1acbded10 @env_name="development",
@name="primary", @config={pool: 5, timeout: 5000, database: "storage/development.sqlite3", adapter: "sqlite3"}>
Use only for reading.
337 338 339 |
# File 'lib/active_record/connection_handling.rb', line 337 def connection_db_config connection_pool.db_config end |
#connection_pool ⇒ Object
345 346 347 |
# File 'lib/active_record/connection_handling.rb', line 345 def connection_pool connection_handler.retrieve_connection_pool(connection_specification_name, role: current_role, shard: current_shard, strict: true) end |
#connects_to(database: {}, shards: {}) ⇒ Object
Connects a model to the databases specified. The database keyword takes a hash consisting of a role and a database_key.
This will look up the database config using the database_key and establish a connection to that config.
class AnimalsModel < ApplicationRecord
self.abstract_class = true
connects_to database: { writing: :primary, reading: :primary_replica }
end
connects_to also supports horizontal sharding. The horizontal sharding API supports read replicas as well. You can connect a model to a list of shards like this:
class AnimalsModel < ApplicationRecord
self.abstract_class = true
connects_to shards: {
default: { writing: :primary, reading: :primary_replica },
shard_two: { writing: :primary_shard_two, reading: :primary_shard_replica_two }
}
end
Returns an array of database connections.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/active_record/connection_handling.rb', line 81 def connects_to(database: {}, shards: {}) raise NotImplementedError, "`connects_to` can only be called on ActiveRecord::Base or abstract classes" unless self == Base || abstract_class? if database.present? && shards.present? raise ArgumentError, "`connects_to` can only accept a `database` or `shards` argument, but not both arguments." end connections = [] @shard_keys = shards.keys if shards.empty? shards[:default] = database end self.default_shard = shards.keys.first shards.each do |shard, database_keys| database_keys.each do |role, database_key| db_config = resolve_config_for_connection(database_key) self.connection_class = true shard = shard.to_sym unless shard.is_a? Integer connections << connection_handler.establish_connection(db_config, owner_name: self, role: role, shard: shard) end end connections end |
#establish_connection(config_or_env = nil) ⇒ Object
Establishes the connection to the database. Accepts a hash as input where the :adapter key must be specified with the name of a database adapter (in lower-case) example for regular databases (MySQL, PostgreSQL, etc):
ActiveRecord::Base.establish_connection(
adapter: "mysql2",
host: "localhost",
username: "myuser",
password: "mypass",
database: "somedatabase"
)
Example for SQLite database:
ActiveRecord::Base.establish_connection(
adapter: "sqlite3",
database: "path/to/dbfile"
)
Also accepts keys as strings (for parsing from YAML for example):
ActiveRecord::Base.establish_connection(
"adapter" => "sqlite3",
"database" => "path/to/dbfile"
)
Or a URL:
ActiveRecord::Base.establish_connection(
"postgres://myuser:mypass@localhost/somedatabase"
)
In case ActiveRecord::Base.configurations is set (Rails automatically loads the contents of config/database.yml into it), a symbol can also be given as argument, representing a key in the configuration hash:
ActiveRecord::Base.establish_connection(:production)
The exceptions AdapterNotSpecified, AdapterNotFound, and ArgumentError may be returned on an error.
50 51 52 53 54 |
# File 'lib/active_record/connection_handling.rb', line 50 def establish_connection(config_or_env = nil) config_or_env ||= DEFAULT_ENV.call.to_sym db_config = resolve_config_for_connection(config_or_env) connection_handler.establish_connection(db_config, owner_name: self, role: current_role, shard: current_shard) end |
#lease_connection ⇒ Object
Returns the connection currently associated with the class. This can also be used to “borrow” the connection to do database work unrelated to any of the specific Active Records. The connection will remain leased for the entire duration of the request or job, or until #release_connection is called.
272 273 274 |
# File 'lib/active_record/connection_handling.rb', line 272 def lease_connection connection_pool.lease_connection end |
#primary_class? ⇒ Boolean
:nodoc:
326 327 328 |
# File 'lib/active_record/connection_handling.rb', line 326 def primary_class? # :nodoc: self == Base || application_record_class? end |
#prohibit_shard_swapping(enabled = true) ⇒ Object
Prohibit swapping shards while inside of the passed block.
In some cases you may want to be able to swap shards but not allow a nested call to connected_to or connected_to_many to swap again. This is useful in cases you’re using sharding to provide per-request database isolation.
214 215 216 217 218 219 220 |
# File 'lib/active_record/connection_handling.rb', line 214 def prohibit_shard_swapping(enabled = true) prev_value = ActiveSupport::IsolatedExecutionState[:active_record_prohibit_shard_swapping] ActiveSupport::IsolatedExecutionState[:active_record_prohibit_shard_swapping] = enabled yield ensure ActiveSupport::IsolatedExecutionState[:active_record_prohibit_shard_swapping] = prev_value end |
#release_connection ⇒ Object
Return the currently leased connection into the pool
301 302 303 |
# File 'lib/active_record/connection_handling.rb', line 301 def release_connection connection_pool.release_connection end |
#remove_connection ⇒ Object
358 359 360 361 362 363 364 365 366 367 368 369 |
# File 'lib/active_record/connection_handling.rb', line 358 def remove_connection name = @connection_specification_name if defined?(@connection_specification_name) # if removing a connection that has a pool, we reset the # connection_specification_name so it will use the parent # pool. if connection_handler.retrieve_connection_pool(name, role: current_role, shard: current_shard) self.connection_specification_name = nil end connection_handler.remove_connection_pool(name, role: current_role, shard: current_shard) end |
#retrieve_connection ⇒ Object
349 350 351 |
# File 'lib/active_record/connection_handling.rb', line 349 def retrieve_connection connection_handler.retrieve_connection(connection_specification_name, role: current_role, shard: current_shard) end |
#schema_cache ⇒ Object
:nodoc:
371 372 373 |
# File 'lib/active_record/connection_handling.rb', line 371 def schema_cache # :nodoc: connection_pool.schema_cache end |
#shard_keys ⇒ Object
379 380 381 |
# File 'lib/active_record/connection_handling.rb', line 379 def shard_keys connection_class_for_self.instance_variable_get(:@shard_keys) || [] end |
#shard_swapping_prohibited? ⇒ Boolean
Determine whether or not shard swapping is currently prohibited
223 224 225 |
# File 'lib/active_record/connection_handling.rb', line 223 def shard_swapping_prohibited? ActiveSupport::IsolatedExecutionState[:active_record_prohibit_shard_swapping] end |
#sharded? ⇒ Boolean
383 384 385 |
# File 'lib/active_record/connection_handling.rb', line 383 def sharded? shard_keys.any? end |
#while_preventing_writes(enabled = true, &block) ⇒ Object
Prevent writing to the database regardless of role.
In some cases you may want to prevent writes to the database even if you are on a database that can write. while_preventing_writes will prevent writes to the database for the duration of the block.
This method does not provide the same protection as a readonly user and is meant to be a safeguard against accidental writes.
See READ_QUERY for the queries that are blocked by this method.
238 239 240 |
# File 'lib/active_record/connection_handling.rb', line 238 def while_preventing_writes(enabled = true, &block) connected_to(role: current_role, prevent_writes: enabled, &block) end |
#with_connection(prevent_permanent_checkout: false, &block) ⇒ Object
Checkouts a connection from the pool, yield it and then check it back in. If a connection was already leased via #lease_connection or a parent call to #with_connection, that same connection is yielded. If #lease_connection is called inside the block, the connection won’t be checked back in. If #connection is called inside the block, the connection won’t be checked back in unless the prevent_permanent_checkout argument is set to true.
312 313 314 |
# File 'lib/active_record/connection_handling.rb', line 312 def with_connection(prevent_permanent_checkout: false, &block) connection_pool.with_connection(prevent_permanent_checkout: prevent_permanent_checkout, &block) end |