Giter Site home page Giter Site logo

Comments (7)

jfrost avatar jfrost commented on August 21, 2024 1

My opinion: Since the whole spirit of pg-osc is to minimize locking during schema changes, we should do the view replacement outside the other transaction so we don't hold that AccessExlusive any longer than necessary. That said, replacing a view should be nearly instantaneous, so I could see the counter argument. My vote is: outside replay_and_swap and before drop_and_cleanup.

from pg-osc.

brycethornton avatar brycethornton commented on August 21, 2024 1

Thanks once again for the great work!

from pg-osc.

jfrost avatar jfrost commented on August 21, 2024

This is a good callout. We should at least mention this in the caveats. Any chance you want to make a PR?

from pg-osc.

shayonj avatar shayonj commented on August 21, 2024

Yeah that’s a caveat! I think documentation might have had it at some point. Will add it.

I will try to take a pass it this weekend and see if we can support this feature.

from pg-osc.

shayonj avatar shayonj commented on August 21, 2024

Updated README to reflect the caveat.

from pg-osc.

shayonj avatar shayonj commented on August 21, 2024

So, had a chance to think more. Here is a quick summary

I think we can re-create the view in the transaction after we swap the table names here. However, the downside here is we could've kept the exclusive lock open for a while, basically depending on how long it takes to re-create the view. Which can affect performance/reliability of the app.

The other option is - instead of re-creating the view from replay_and_swap! (like above), it might be worth re-creating it right before drop_and_cleanup. The assumption here: Having delayed refreshed data within a view is much more preferable than a longer swap time w/ reliability concerns. And, after the views are refreshed, we can successfully drop the old tables too. And if adding/replacing views take a while, thats ok during this part of the proess.

We can use pg_get_viewdef to get the view definition and swap the name of the op_table* name with the parent table and perform a CREATE OR REPLACE VIEW...

from pg-osc.

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.