Logical Replication with PostgreSQL 10

Sdílet
Vložit
  • čas přidán 22. 08. 2024

Komentáře • 32

  • @tranicus
    @tranicus Před 5 lety +3

    awesome; short, direct, clearly stated. THANK YOU!

  • @TheStreetSyndicate
    @TheStreetSyndicate Před 6 lety +3

    Love your simplistic approach...great videos, keep em coming!

  • @fahadkhanchughtai3279
    @fahadkhanchughtai3279 Před 3 lety

    Loved the simple no-bullshit kinda tutorial! Thanks

  • @devops__guy8909
    @devops__guy8909 Před 3 lety

    such a simple and clear turorial.

  • @cunay11
    @cunay11 Před 6 lety

    Perfect and clear , so exicited for new classes

  • @abacus8393
    @abacus8393 Před 4 lety

    Awesomely explained, crisp and clear :+1:

  • @KISHOREVIGNESHBARATHARAJ

    Thanks for making the information available.

  • @nolssmit
    @nolssmit Před 3 lety +1

    What I need: Logical replication from Posgres on Windows to Postgres in docker container on Linux

  • @samilekesiz1354
    @samilekesiz1354 Před 4 lety +1

    Thank you, clearly tutorial.

    • @forestismael3863
      @forestismael3863 Před 3 lety

      a tip: watch series at flixzone. Been using them for watching lots of of movies recently.

    • @dillonhudson1440
      @dillonhudson1440 Před 3 lety

      @Forest Ismael Yup, been using Flixzone} for years myself =)

  • @adammulla9181
    @adammulla9181 Před 5 lety

    Simple but High thinking to do in couple of minutes logical replication....I will try...

  • @dimasadriansyh
    @dimasadriansyh Před 3 lety

    Great videos 👍🏼

  • @rizwanrauf9347
    @rizwanrauf9347 Před 3 lety

    Very well explained , how can we add a table to an existing replication slot.

  • @asero82.
    @asero82. Před 5 lety

    Thanks for sharing this excellent tutorial. ¿Would you please make one about backup plans, and backups having in mind replication?

  • @hajamoinudeen8059
    @hajamoinudeen8059 Před 3 lety

    really a excellent tutorial , any best practice for wal files to be archived,

  • @RapRapKun
    @RapRapKun Před 4 lety +1

    I've followed everything step by step (pausing and playing the video), and still can't get machine 2 to replicate. I've tried 3 times now.

    • @esra_erimez
      @esra_erimez Před 4 lety

      Were you able to get it to work?

    • @srikanth2384
      @srikanth2384 Před 4 lety

      What is the issue you are facing ? Any error message in postgres.log ?

  • @LckJacky
    @LckJacky Před 6 lety

    Your tutorial is very useful!! Do you have other tutorial to talk about Multi-master setup?

  • @guillermocastro2971
    @guillermocastro2971 Před 5 lety

    Hello, very good tutorial. I see that the replica is active - passive. I would like to know if there is a way for it to be active - active.

  • @Vinaum8
    @Vinaum8 Před 4 lety

    this replication is synchronous? is possible write some things on node 2 and automatically replica for node 1 or only writing on node 1 for node 2?

    • @postgrescourse
      @postgrescourse  Před 4 lety

      Native logical replication, the approach demonstrated here, is not intended to be bi-directional.

  • @Nodorgrom
    @Nodorgrom Před 6 lety

    Thank you! It's really usefull tutorial. Are you have tutorials about upgrading postgresql from 8.4 to greather?

  • @ddg170
    @ddg170 Před 5 lety

    Can you create a new schema in node2 (subscriber), and read data from the subscription "employee" table?

  • @Alexey_856
    @Alexey_856 Před 6 lety

    Great video, thank you. However, my replication does not work (no rows are transferred). No idea how to troubleshoot..

    • @Alexey_856
      @Alexey_856 Před 6 lety +1

      I had to grant login to replicator. Why the hell is it required on one system and is not required on another. PG, sigh...

  • @gizmoMKD
    @gizmoMKD Před 5 lety

    is it possible to replicate only 1 or 2 tables and not all the tables? for example if we have 10 tables in node1 server but only 2 tables to be replicated to node2 server using this approach?

    • @postgrescourse
      @postgrescourse  Před 5 lety +1

      Yes. It is possible. You would simply alter the CREATE PUBLICATION command. Example: CREATE PUBLICATION mypublication FOR TABLE users, departments;
      This example is direct from the core documentation: www.postgresql.org/docs/10/static/sql-createpublication.html

  • @Chandrasekhar-xw9jk
    @Chandrasekhar-xw9jk Před 4 lety

    can u know how to do postgresql replication in windows machine

  • @triptisharma5809
    @triptisharma5809 Před 3 lety

    How to create these 2 nodes ?