17 Haziran 2022 Cuma

patronictl komutu - Patroni Replication Monitoring İçindir

Giriş
Açıklaması şöyle
Patroni provide all functionality to setup, monitor and fix the replica DB using reinit command.


Zalando Operator ile kullanılıyor

patronictl komutu

list seçeneği
Örnek
Şöyle yaparız
$ kubectl exec -it rlwy-postgres-1 -n rlwy02-pgo -- /bin/bash
Defaulted container "postgres" out of: postgres, exporter

 ____        _ _
/ ___| _ __ (_) | ___
\___ \| '_ \| | |/ _ \
 ___) | |_) | | | (_) |
|____/| .__/|_|_|\___/
      |_|

This container is managed by runit, when stopping/starting services use sv

Examples:

sv stop cron
sv restart patroni

Current status: (sv status /etc/service/*)

root@rlwy-postgres-1:/home/postgres# patronictl list
2022-06-17 07:10:35,333 - WARNING - Listing members: No cluster names were provided

16 Haziran 2022 Perşembe

9 Haziran 2022 Perşembe

Sütun Tipleri - IDENTITY (Otomatik Sayı Üretir)

Giriş
Açıklaması şöyle
It is recommended to use IDENTITY instead since SERIAL has some weird behaviors.
Bu sütunlara NOT NULL + PRIMARY KEY + UNIQUE gibi özellikler de atanabilir.

Örnek
Şöyle yaparız
CREATE TABLE IF NOT EXISTS entity (
    id BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
    ...
)

# To see the sequence
SELECT * FROM pg_sequence WHERE seqrelid = 'entity_id_seq'::regclass;
IDENTITY Kullanımının Bazı Dezavantajları
Not : Bazıları IDENTITY yerine UUID kullanılması öneriyor. 
1. İki tane tablonun birleştirilmesinde problem oluyor. Bir açıklama şöyle
I’ve seen this over and over for the last 30 years, people let the database set the ID or Primary Key of a table from the database, at first glance this sounds simple and everyone knows you should let the database do the heavy lifting, with a numeric “Sequence” number you need to let the database do the work since there may be multiple applications or threads creating new records in the table. DON”T DO IT!

First, if and when you need to merge two databases that now have the same Primary Key ID values for the same table, your screwed. You have to come up with a scheme to change the ID’s, maybe adding 10,000 to each ID, what if you have more than 10,000 rows? The you also have to update all children records, maybe not that easy if you have constraints defined in the database.
2. Güvenlik Açıkları
Eğer bir Primary Key değerinin 100 olduğunu biliyorsam bir sonrakinin de 101 olacağını biliyorum. Bunu sorgulayarak bir güvenlik açığından faydalanabilirim.