Skip to content

What does generally cause the "Dropped db cursor" error? #63

@pedrovinicius

Description

@pedrovinicius

I'm using this gem in production alongside with Sinatra, ActiveRecord and Puma. Puma is running with 2 workers.

My code for database queries is identical to the following snippet:

database_connections =  YAML.load_file('./databases_list.yml')

database_connections.each do |connection_info|
  connection = ActiveRecord::Base.establish_connection(connection_info)
  connection.execute('SELECT * FROM ...')
  # Other SQL queries here
  connection.disconnect!
end

I have a list of identical databases (running on distinct servers) that I have to connect to and collect some data. But I'm suspecting I'm doing something terribly wrong, as when this code gets executed, the ruby interpreter raises a Dropped DB Cursor exception.

Do you have any idea of what can be possibly causing this error?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions