Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6199833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:15:31+00:00 2026-05-24T04:15:31+00:00

If I call ActiveRecord::Base.establish_connection to switch databases for the duration of a Rails request,

  • 0

If I call ActiveRecord::Base.establish_connection to switch databases for the duration of a Rails request, how global is the effect of this change?

  • Does it affect other instances of the Rails app running under Passenger?
  • Does it affect the next request by the same instance of Rails?
  • Are there any thread race conditions to worry about?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T04:15:32+00:00Added an answer on May 24, 2026 at 4:15 am

    No(*), Yes, No.

    I’m not very familiar with Passenger, but I’m assuming it works like other containers that use a process per Rails instance. In that case, each will have its own connection.

    The connection is maintained across requests, so if you switch the connection for an ActiveRecord class, it will be used in the next request.

    Finally, database connections are shared across threads. You can verify this with:

    Thread.new { puts ActiveRecord::Base.connection.object_id; sleep 30; puts ActiveRecord::Base.object_id}
    sleep 10
    ActiveRecord::Base.establish_connection
    

    and seeing that the object ID output before and after the call to establish connection is different.

    So, you may have thread issues if you are expecting all accesses from within a thread to access the same database connection but then you switch it halfway through to a different connection from within another thread..

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple has_many through relationship set up: class Tag < ActiveRecord::Base has_many
I have 2 Models: # user.rb class User < ActiveRecord::Base has_one :profile, :dependent =>
I have an abstract Base class. Let's call it Animal::Base . module Animal class
I have two models. order and line_item. class Order < ActiveRecord::Base has_many :line_items has_many
I have an ActiveRecord object, Corporation, and the only call in my project to
I am trying to get my rails app to production but this is my
I call this method in my controller: delete_heard_timeline_event(current_user.id, @showable_video.user.id, @showable_video.video.id) and I definite it
I have a sign-up form that has nested associations/attributes whatever you want to call
I'm just learning Ruby on Rails (no prior Ruby experience) I have these models
I realize this is not necessarily the smartest way to do this, but now

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.