CloudSQL with PostgreSQL very slow performance (compared to PostgreSQL performance on a physical machine, three times more slowly)
effective_io_concurrency has a default value of 1 and I would like change it but this parametr is not available as Cloud SQL flag, ALTER SYSTEM is not supported
alter system set effective_io_concurrency = 150
ERROR: must be superuser to execute ALTER SYSTEM command
Is possible create SUPERUSER in CloudSQL ?
I have found information:
"Unsupported features for Cloud SQL for PostgreSQL
-
Any features that require SUPERUSER privileges
An exception to this rule is made for the CREATE EXTENSION statement, but only for supported extensions.
-
Custom background workers
-
The psql client in Cloud Shell doesn’t support operations that require a reconnection, such as connecting to a different database using the \c command.
-
Low-Level Virtual Machine (LLVM) Just-in-Time (JIT) compilation.
Notable differences between PostgreSQL and Cloud SQL for PostgreSQL
-
Some PostgreSQL options and parameters aren’t enabled for editing as Cloud SQL flags.
To request the addition of a configurable Cloud SQL flag, use the Cloud SQL Discussion group.**"
How to increase storage efficiency or change effective_io_concurrency or create superuser ?