Questions tagged [google-cloud-sql]

Google Cloud SQL is a service that allows you to create, configure, and use relational databases that operate from Google's Cloud Platform.

Google Cloud SQL is a service that allows you to create, configure, and use relational databases that operate from Google's Cloud Platform.

140 questions
2
votes
1 answer

Is Google Cloud SQL fault tolerant when there is replica?

I'm running a Google Cloud SQL instance ("mysql-master") and it has one replica. ("mysql-replica") Web apps on another servers read and write data on the Cloud SQL instance. While mysql-master is restarting, can app servers read and write data? I…
1
vote
2 answers

Save more then 7 days backup for Google Cloud SQL

In the following link https://cloud.google.com/sql/faq it says: MySQL Second Generation instances: The most recent 7 automated backups, and all on-demand backups, are retained. They are charged at the backup storage rate. Binary logs use storage…
1
vote
1 answer

Google Cloud SQL connectivity from External network

We have a requirement to directly load Cloud SQL postgres tables from On-premise server ETL solutions. What would be the recommended and secure way of doing this without migrating the ETL solution to Google cloud? Please advise. Can/should Cloud…
0
votes
1 answer

failed to delete a cloud sql instance

I failed to delete a cloud sql instance. gcloud sql instances delete $SQL_INSTANCE --quiet --project=$GCP_PROJECT ERROR: (gcloud.sql.instances.delete) HTTPError 409: Operation failed because another operation was already in progress. Even I…
0
votes
0 answers

Constantly Restarting of SQL Instances in GCP

I have 4 instances of SQL in GCP, all of this are restarting constantly. This is the log from one of this: From today this problem is happening, and they go 5 times on this day, I can not find more information. Please, any ideas of what I have to…
0
votes
2 answers

SSL connection error: unknown error number

Yesterday I was able to connect to my cloud SQL just fine. Today something changed, I keep getting an error saying failed to connect, SSL connection error: unknown error number. I am trying to connect using MySQL workbench. I tried to create a new…
ADL
  • 181
  • 2
  • 8
0
votes
0 answers

Google Cloud SQL Unavailable

I have a Google Cloud SQL 2nd Gen instance that last reported statistics (ie- Storage Usage, CPU Usage, etc...) at 10:09 this morning (~5.5 hours ago) In the 'Operations' tab I can see: Date/Time | Type | Status 6 Feb 2017, 10:11:03 | Update |…
Aeisor
  • 351
0
votes
1 answer

Are GCE instances connected to Google Cloud SQL via trusted network?

I want to connect Cloud SQL from PHP application on GCE instances. The PHP application cannot connect to Cloud SQL via SSL connection due to old library version. I'm considering to connect from GCE instance to Cloud SQL instance without SSL. In that…
0
votes
1 answer

1 million concurrent database connections

In https://cloud.google.com/sql/docs/quotas, it mentioned that "Cloud Run services are limited to 100 connections to a Cloud SQL database.". Assume I deploy my service as Cloud Run, what's the right way to handle 1 million concurrent connections?…