Live data from Hacker News

Viewing profile — CyberDem0n

CyberDem0n

HN member
Joined
Mon, Feb 27, 2017, 12:27 PM UTC
HN karma
18
Public activity
15 items

About CyberDem0n

No profile information was provided.

Recent public activity

  1. comment
    Comment #29203416

    It's not enough to intercept `set search_path`, in fact any arbitrary function could change it, but Postgres doesn't report it back, unlike some other gucs.

  2. comment
    Comment #23362869

    Patroni was openly developed from day 0. The repo was created in early July 2015, but before that it was living as the fork of Compose Governor. The Spilo docker container which pa…

  3. comment
    Comment #15870431

    > if you accessing the DB but can't contact etcd/consul then you should stop accessing the DB because you might start doing unsafe writes. If patroni can't update leader lock in Et…

  4. comment
    Comment #15870389

    > well I think that is not the same what stolon-proxy actually provides. (actually I use patroni) but if your network gets split and you end up with two masters (one application wr…

  5. comment
    Comment #15868568

    It looks like you are talking here about postgres-operator by Crunchy Yeah, crunchy was a little faster with releasing it than Zalando, but try you look closer how they deploy post…

  6. comment
    Comment #15868495

    > I currently prefer Stolon over Patroni because statically typed languages make it easier to have less bugs (Stolon is Go, Patroni is Python) Sounds like a holy-war topic :) But l…

  7. comment
    Comment #14116859

    Correct. Writes need to be directed to master. May be not only writes but some reads as well. Only application can know which statement can be executed on replicas and which must b…

  8. comment
    Comment #14116641

    You also can have a look on slides of my talk about at PGConf.US 2017: https://www.slideshare.net/AlexanderKukushkin1/patroni-ha-po... Talk was also recorded but video is not yet p…

  9. comment
    Comment #14116500

    Patroni has REST API providing a health-checks for load-balancers. patroni:8008/replica will respond with http status code 200 only if node is running as replica. In the HAProxy co…

  10. comment
    Comment #14116039

    Compose guys are kind of happy with existing functionality of Governor and didn't really wanted to add something new. That was the main reason of making a fork. If you read a furth…

  11. comment
    Comment #14113699

    on-marked-down shutdown-sessions should do the trick

  12. comment
  13. comment
    Comment #14113661

    Doesn't HAProxy provide such functionality? Patroni has REST API which can be used by HAProxy for a health-check. patroni:8008/master will return http status code 200 only if the n…

  14. comment
    Comment #14113560

    > Stolon is quite comparable to Patroni and has more features than Patron. Let me as a question, what feature Stolon has and Patroni doesn't? Can you give an example? From my side …

  15. comment
    Comment #13743893

    Yes, one can reimplement it in Python, but don't forget: // This implementation does not guarantee that only one client is acting as a // leader (a.k.a. fencing). A client observes…