-
Notifications
You must be signed in to change notification settings - Fork 40
CloudSQL
Cloud SQL is a fully managed service that makes it easy to set up, manage, and administer relational SQL databases: PostgreSQL, MySQL, and SQL Server.
https://cloud.google.com/sql/docs/mysql
https://cloud.google.com/sql/docs/postgres
https://cloud.google.com/blog/products/databases/sql-server-performance-analysis-and-query-tuning
https://medium.com/google-cloud/going-cloud-with-sql-server-google-cloud-options-6cd44bb52bef
https://cloud.google.com/sql/docs/sqlserver/db-audit
https://cloud.google.com/blog/products/databases/alloydb-for-postgresql-intelligent-scalable-storage
https://medium.com/@bvjebin/connecting-to-alloydb-from-your-local-39ca8f326ea9
Database Migration Service (DMS) makes it easy to migrate your production databases to Cloud SQL with minimal downtime. This serverless offering eliminates the manual hassle of provisioning, managing, and monitoring migration-specific resources. DMS leverages the native replication capabilities of MySQL and PostgreSQL to maximize the fidelity and reliability of your migration. And it’s available at no additional charge for native like-to-like migrations to Cloud SQL.
https://cloud.google.com/blog/products/databases/migrate-oracle-to-postgresql
https://cloud.google.com/blog/products/databases/cloud-sql-launches-support-for-in-place-upgrades
HA features reduce downtime when a zone or instance becomes unavailable which might happen during a zonal outage, or when an instance becomes corrupted.
https://cloud.google.com/blog/products/databases/managing-high-availability-with-cloud-sql-features/
https://cloud.google.com/solutions/backup-dr
https://cloud.google.com/sql/docs/mysql/import-export
https://cloud.google.com/sql/docs/mysql/add-manage-iam-users
https://cloud.google.com/sql/docs/mysql/authentication
https://cloud.google.com/sql/docs/mysql/sql-proxy
https://cloud.google.com/sql/docs/mysql/best-practices
Replication is the ability to create copies of a Cloud SQL instance or an on-premises database, and offload work to the copies.
https://cloud.google.com/sql/docs/mysql/replication
You use a read replica to offload work from a Cloud SQL instance. The read replica is an exact copy of the primary instance. Data and other changes on the primary instance are updated in almost real time on the read replica.
Read replicas are read-only; you cannot write to them. The read replica processes queries, read requests, and analytics traffic, thus reducing the load on the primary instance. You can have up to 10 read replicas per primary instance.
Cross-region replication lets you create a read replica in a different region from the primary instance. You create a cross-region read replica the same way as you create an in-region replica.
External read replicas are external MySQL instances that replicate from a Cloud SQL primary instance. For example, a MySQL instance running on Compute Engine is considered an external instance.
https://cloud.google.com/sql/docs/mysql/replication#external-read-replicas https://cloud.google.com/sql/docs/mysql/replication#cross-region-read-replicas
https://cloud.google.com/sql/docs/mysql/backup-recovery/backups
https://cloud.google.com/architecture/intro-to-cloud-sql-disaster-recovery
https://dev.to/mark_saward/cloud-sql-is-not-great-38ae
https://cloud.google.com/sql/docs/postgres/high-availability
https://cloud.google.com/compute/docs/instances/sql-server/configure-failover-cluster-instance
https://cloud.google.com/blog/products/databases/mysql-database-performance-monitoring
https://dev.to/hunghvu/random-configuration-tips-for-google-cloud-sql-2lg4
https://cloud.google.com/sql/docs/mysql/self-service-maintenance
https://cloud.google.com/sql/docs/media
https://cloud.google.com/community/tutorials/setting-up-postgres
https://cloud.google.com/community/tutorials/setting-up-postgres-data-disk
https://cloud.google.com/community/tutorials/setting-up-postgres-hot-standby
https://medium.com/@jason19930803/gcp-restore-cloud-sql-to-instance-in-another-project-631cb82d82c5