If it’s async, don’t you think it’s not real-time replication or considered it as near real-time replication?

Asynchronous replication is real-time replication. The significant difference between Asynchronous and Synchronous replication is, Synchronous replication would wait for confirmation from the standby server that it has received all the WAL changes, and then only commit confirmation is given for the corresponding transaction, whereas in async replication master database does not wait for confirmation from

By |2021-07-22T13:26:59+08:00July 22nd, 2021||Comments Off on If it’s async, don’t you think it’s not real-time replication or considered it as near real-time replication?

Suppose my barman server is installed on PG version 9.6.is Postgres 13 version server. Can we configure on Barman the server running on 9.6.is it compatible?

BARMAN is a backup tool, so it does not need the Postgres database to install it. Barman documentation gives information about which minimum version of Postgres it supports, and accordingly, you need to install BARMAN software. However, it's always advisable to use the latest version of BARMAN.

By |2021-07-22T13:22:31+08:00July 22nd, 2021||Comments Off on Suppose my barman server is installed on PG version 9.6.is Postgres 13 version server. Can we configure on Barman the server running on 9.6.is it compatible?

With this multi-cloud, how do you guarantee the performance is the same on both Clouds?

There's no specific or standard computation on Postgres database performance running On-Prem and Cloud. It depends on the workload. Most of the cloud vendor provides pre-configured setup in terms of number of CPU, RAM, Storage, Network Bandwidth, etc. Usually, doing a performance or load testing will give the optimal configuration to meet the performance requirement.

By |2021-07-22T13:17:38+08:00July 22nd, 2021||Comments Off on With this multi-cloud, how do you guarantee the performance is the same on both Clouds?

How big a database can be handled with PostgreSQL?

There is no limitation of the database size. However, there are customer cases where Postgres is being used for storing Petabyte's size of data. Like any other proprietary database in the market, PostgreSQL can handle TBs of data. The hardware layer is one of the critical components in database sizing.

By |2021-07-22T13:37:32+08:00July 22nd, 2021||Comments Off on How big a database can be handled with PostgreSQL?

How will BDR help in synching data the way in Hybrid Model?

Bi-Directional Replication (BDR) is an asynchronous multi-master replication system for PostgreSQL, specifically designed to allow geographically distributed clusters. Multi-Master Replication in BDR allows efficient replication for both DDL and DML with automatic conflict resolution. It also offers Conflict-free Replicated Data Types (CRDTs), which support merging values from concurrently modified rows.

By |2021-07-22T13:02:41+08:00July 22nd, 2021||Comments Off on How will BDR help in synching data the way in Hybrid Model?
Go to Top