HN user

vishesh92

420 karma
Posts98
Comments17
View on HN
www.shapeblue.com 3mo ago

GPU Support in Apache CloudStack

vishesh92
3pts0
github.com 3mo ago

OpenHalo: Use MySQL Syntax over PostgreSQL

vishesh92
2pts0
aider.chat 1y ago

Aider: AI pair programming in your terminal

vishesh92
21pts3
cloudstack.apache.org 2y ago

Apache CloudStack 4.19.0.0 Released

vishesh92
4pts0
github.com 3y ago

Show HN: pg-primer - Beginner's guide to administering/managing PostgreSQL

vishesh92
58pts7
github.com 3y ago

Pg-primer – Beginner's guide to administering/managing PostgreSQL

vishesh92
5pts0
haystack.deepset.ai 3y ago

Introducing Agents in Haystack: Make LLMs resolve complex tasks

vishesh92
202pts102
haystack.deepset.ai 3y ago

Haystack: An NLP Framework to Use Transformers in Your Applications

vishesh92
2pts1
www.shapeblue.com 3y ago

What’s New in Apache CloudStack 4.18

vishesh92
1pts0
eventmesh.apache.org 4y ago

Apache Eventmesh (Incubating)

vishesh92
1pts0
sloth.dev 4y ago

Sloth: Fast, easy and reliable Prometheus SLO generator

vishesh92
1pts0
www.postgresql.fastware.com 4y ago

PostgreSQL 14: Logical Replication Tablesync Workers

vishesh92
3pts0
troubleshoot.sh 5y ago

Troubleshoot: A kubectl plugin providing diagnostic tools for k8s applications

vishesh92
2pts0
lambda.grofers.com 5y ago

Setting up a Docker registry cache to reduce data transfer costs

vishesh92
2pts0
github.blog 5y ago

GitHub Dark Mode in public beta

vishesh92
1pts0
lambda.grofers.com 5y ago

AWS Cost Optimization to reduce AWS bill by 40%

vishesh92
2pts0
aws.amazon.com 5y ago

Amazon S3 Storage Lens – Organization-Wide Visibility into Object Storage

vishesh92
3pts0
lambda.grofers.com 5y ago

How Covid-19 pushed us to reduce our AWS cost by half

vishesh92
10pts1
saurabhjha.github.io 5y ago

DevOps from a Noob’s Perspective(2016)

vishesh92
1pts0
build.affinity.co 5y ago

3000x speedup using Postgres extended statistics

vishesh92
3pts0
lambda.grofers.com 5y ago

Reducing AWS Data Transfer Cost: Migration from Multi-AZ to Single AZ

vishesh92
1pts0
aws.amazon.com 5y ago

In the Works – AWS Region in Hyderabad, India

vishesh92
3pts0
techcrunch.com 6y ago

India’s richest man takes on Zoom

vishesh92
4pts1
www.forbes.com 6y ago

Apple’s MacBook Pro Has a Serious Problem

vishesh92
3pts0
www.sciencealert.com 6y ago

Probing a Cloud of the Fifth State of Matter (Bose-Einstein Condensate) on ISS

vishesh92
55pts2
www.sciencealert.com 6y ago

Scientists Have Used Fast Radio Bursts to Find the Universe's Missing Matter

vishesh92
2pts0
cdk8s.io 6y ago

Kubernetes native apps and abstractions using object-oriented programming

vishesh92
1pts1
www.bbc.com 6y ago

Can India replace China as world's factory?

vishesh92
6pts4
www.thehindu.com 6y ago

Indian Govt. work from home draft: 15 days work from home a year

vishesh92
1pts0
medium.com 6y ago

How the ‘Magic: The Gathering’ Color Wheel Explains Humanity (2018)

vishesh92
1pts0

Apache CloudStack.

It supports multiple hypervisors including VMWare, KVM, XCP-ng, etc. I haven't tried but it has some features to allow users to migrate from VMWare to Apache CloudStack with KVM and/or XCP-ng.

We also have no evidence that user data was compromised as a result of this downtime.

I am not sure why they had to mention this specifically. This makes it sound like an external attack.

Thanks for this. As I mentioned in previous comment, I couldn't find much about Stolon. One of things I likee in stolon is the proxy, it enforce connections to the right PostgreSQL master and forcibly closes connections to unelected masters. Which is not present in Patroni, but I guess it should be doable using consul's service discovery and dynamic DNS. (I am not sure if this can be done using etcd and zookeper).

I am not really sure Patroni has anything to do with the persistence of data. It just uses etcd, zookeper or consul to elect a master in case of a failover and uses their key value store to save the information about the current master. Its upto you whether you keep your database on a container or not. And how the data is managed by the container. This talk by Josh Berkus explains how Patroni works pretty well. https://www.youtube.com/watch?v=OH9WSEiMsAw

As per my understanding, Postgres-XL is not comparable to Patroni. Postgres-XL is comparable to PostgreSQL. Postgres-XL shards the data across multiple data nodes. Where as Patroni uses etcd, consul or zookeeper to provide HA for any Postgres cluster using replication (Data is written only to a single instance and replicated further).

I think you meant Stolon. Stolon is quite comparable to Patroni and has more features than Patroni, but I am not sure how many people are using it. I found more resources for Patroni as compared to stolon.