Code Monkey home page Code Monkey logo

Comments (5)

ankane avatar ankane commented on September 26, 2024

Hey @ABewsher, which version of Postgres are you on?

I imagine adding an index would make it faster, but I'd try it on a staging database first. You could also try the approach outlined here, but I haven't tried it myself, and seems like it carries a small performance penalty (slows future writes by 0.5%-1%).

If the index approach works, I think that's a better recommendation since Rails has built-in support for those commands (don't need to use execute) and schema.rb can be dumped properly.

from strong_migrations.

ankane avatar ankane commented on September 26, 2024

In general, I'm a fan of having minimal constraints on the database (unique indexes, but no foreign keys or not null), but I understand not everyone takes that view.

from strong_migrations.

ABewsher avatar ABewsher commented on September 26, 2024

Thanks for your prompt reply @ankane

pg gem version 1.1.4
Postgres 10.7

For now we're just not bothering with the constraint. We did test this on staging before deploying to production, but we'll need more record to test it properly it seems. ;-)

If we do try again on staging (with 7M new records), I'll let you know if the index helps.

from strong_migrations.

ankane avatar ankane commented on September 26, 2024

Sounds good

from strong_migrations.

ABewsher avatar ABewsher commented on September 26, 2024

Then I ran this:

class AddNullFalseToUserVisibleInEvents < ActiveRecord::Migration[5.1]
def change
change_column_null(:events, :user_visible, false)
end
end
... and it locked the DB 👎

Note that I have not used the 4th argument but it was still "dangerous".

Regardless of what I end up doing, this could still do with a warning as even without the 4th argument it still locked things up.

from strong_migrations.

Related Issues (20)

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.