Questions about PostgreSQL
How to import data to a PostgreSQL database cluster in Managed Service for PostgreSQL?
Use the pg_dump
built-in tool to migrate data to a PostgreSQL cluster in Managed Service for PostgreSQL.
What PostgreSQL versions does Managed Service for PostgreSQL support?
Managed Service for PostgreSQL supports PostgreSQL 10, 11, and 12, as well as PostgreSQL 10 for 1C.
Is DB cluster backup enabled by default?
Yes, backup is enabled by default. For PostgreSQL clusters, a full backup is performed once a day, saving all the database cluster transaction logs. This allows you to restore the cluster state to any point in time during the backup storage period, except for the last 30 seconds.
Are PostgreSQL database cluster connections encrypted?
Connections between a database cluster and an application are always encrypted using SSL. You cannot disable cluster connection encryption.
What is a read-only replica in PostgreSQL?
A read-only replica is a host in a PostgreSQL DB cluster that can only be read. Its data is synced with the master host (applies only if the cluster has more than 1 host). You can use a read-only replica to reduce the load on the DB master host with a large number of read requests.
What PostgreSQL extensions are supported in Managed Service for PostgreSQL?
The list of supported PostgreSQL extensions is provided in Managing PostgreSQL extensions.
What limitations are imposed on PostgreSQL database clusters?
For more information about Managed Service for PostgreSQL limitations, see Quotas and limits. Characteristics of clusters that can be created using Managed Service for PostgreSQL are given in Host classes.
Which LC_COLLATE and LC_CTYPE values are set for databases by default?
When databases are created, LC_CTYPE=C
and LC_COLLATE=C
are set by default. You can't change these settings for the database you create along with the cluster. However, you can create a new database and set the values you need for it.