Excellent presentation of pg_rewind with great overview and details
@shalomshmila8916 Жыл бұрын
is there a way to run it locally on a postgresql windows server?
@Dalibo Жыл бұрын
Hello, The content of the video is outdated. We might take it down soon. You can find the latest information about pg_activity on github at github.com/dalibo/pg_activity.
@gobajoseph50642 жыл бұрын
Très intéressant
@furydonnico3 жыл бұрын
Nous avons également pour objectif d'utiliser la réplication logique pour une migration PG11 -> PG14 Où peut-on trouver les scripts/requêtes que vous avez utilisé ?
@Dalibo3 жыл бұрын
Bonjour Nico T, nous transmettons votre question à Cédric et vous répondrons ici dès que possible.
@Dalibo3 жыл бұрын
Selon Cédric, les requêtes figurent sur sa présentation. Voici où trouver le support : www.pgsessions.com/assets/archives/pgs13_utiliser_replication_logique_pour_montee_version_majeure.html#/
@Dalibo3 жыл бұрын
Concernant la requête détectant les clés primaires manquantes, il signale un bug récemment repéré. Voici une meilleure requête : WITH cles_abs AS ( SELECT tbl.table_schema, tbl.table_name FROM information_schema.tables tbl WHERE table_type = 'BASE TABLE' AND table_schema NOT IN ('pg_catalog', 'information_schema') AND NOT EXISTS ( SELECT 1 FROM information_schema.key_column_usage kcu WHERE kcu.table_name = tbl.table_name AND kcu.table_schema = tbl.table_schema AND kcu.position_in_unique_constraint IS NULL ) ) SELECT 'ALTER TABLE ' || table_schema || '.' || table_name || ' DROP COLUMN id;' FROM cles_abs ORDER BY table_schema, table_name; En espérant que sa réponse vous sera utile, À bientôt !
@furydonnico3 жыл бұрын
@@Dalibo Les requêtes ont été très utiles mais il semble que la requête de recherche puisse être améliorée. En effet, dès lors qu'une clé existe la table n'est pas remontée, dans le cas d'une clé étrangère la condition n'est toutefois pas suffisante pour qu'elle puisse être intégrée à la réplication logique. Dans notre cas, la requête suivante remonte toutes les tables dépourvues de clé primaire : SELECT tbl.table_schema, tbl.table_name FROM information_schema.tables tbl WHERE table_type = 'BASE TABLE' AND table_schema NOT IN ('pg_catalog', 'information_schema') AND NOT EXISTS ( SELECT 1 FROM information_schema.table_constraints tco WHERE tbl.table_schema = tco.table_schema AND tbl.table_name = tco.table_name AND tco.constraint_type = 'PRIMARY KEY' );
@rafaelsaboia9103 жыл бұрын
Excelent presentation congratulation...
@Sakipette3 жыл бұрын
First
@franckb.69363 жыл бұрын
trop fort.
@leo_ren4 жыл бұрын
Au top Philippe :)
@MrFrondoso4 жыл бұрын
Bonjour, pourrait-on avoir un index des conférences ? D'avance, merci.
@Dalibo4 жыл бұрын
Bonjour, Tout d'abord, merci beaucoup pour votre intérêt. À défaut de disposer d'un véritable index, vous pouvez retrouver toutes les présentations des PGSessions passées sur notre chaîne youtube (playlists) ou sur dali.bo/pgsessions_archives pour ce qui est des slides. Celles de cette année seront prochainement accessibles individuellement sur ces 2 sites. Pour compléter, une recherche par tag est aussi possible sur notre blog blog.dalibo.com/tags.html. À bientôt, L'équipe Dalibo
@karineillow28825 жыл бұрын
merci
@Dalibo5 жыл бұрын
Merci à vous pour votre commentaire. À l'année prochaine pour la pgsession13 ? ;)
@karineillow28825 жыл бұрын
@@Dalibo yes
@davebrunkow91945 жыл бұрын
Incredibly well done presentation. Most helpful explanation on pg_rewind I've ever heard.
@keniavergara29485 жыл бұрын
Honestly, pg_activity does not work for me. Apply the steps of the video and nothing happens. Similarly, I followed the steps of the repository and nothing happens github.com/julmon/pg_activity/
@keniavergara29485 жыл бұрын
Hello! First, change the super user permissions to the admin user, as shown below: ALTER ROLE admin WITH SUPERUSER; I opened a console and placed: sudo su su postgres pg_activity -h localhost -U admin -d database Then, in another console I placed: sudo su su postgres psql -h localhost -U admin -d database database= # SELECT * FROM person; But nothing is shown in pg_activity. Please help!
@jpargudo5 жыл бұрын
Bravo à toute l'équipe ! :-)
@keniavergara29485 жыл бұрын
Hi. I already installed pg_activity, but the user is not postgres, but admin. Please, how do I do in that case to be able to visualize the consumption of cpu and memory of each query that is executed? I would appreciate the help.
@Dalibo5 жыл бұрын
I would suggest you ask this question using our github repository -> github.com/julmon/pg_activity Thanks a lot for your interest :)
@keniavergara29485 жыл бұрын
@@Dalibo Hello! I already asked the question in the repository. I hope you answer me.
@kubernetes-3096 жыл бұрын
Could zalando patroni operator upgrade posgtresql from 9.x to 10.x without down?
@abdoulgoudoussysysavane54136 жыл бұрын
Merci pour ce Support. Tres bon Outil. Je pense qu'avec les retours d utilisation, tu vas mieux ameliorer l outil. En tout cas, j pense que c'est un bon Outil de Monitoring des Databases PostgreSQL.
@ditisnietpablo6 жыл бұрын
Good presentation, thank you!
@damienclochard6 жыл бұрын
Voici le lien vers le workshop "Les nouveauts de PostgreSQL 11" : dali.bo/workshop11
@smbatsargsyan42877 жыл бұрын
(Y) great
@Dalibo7 жыл бұрын
Thanks, take a look at the other Dalibo Labs tools for PostgreSQL, you can follow us on twitter @DaliboLabs not to miss any news or release ;)