Cloud SQL with MySQL as I can run it locally and know its queries will be expressive enough (where I am uncertain about Firestore, for instance). - Source: Reddit / 2 months ago
For example, a Cloud Run Container is a provider for Services, whereas a Cloud SQL Server is a provider for databases. The providers are wrapped in parent containers that encapsulate the capabilities of their children. - Source: dev.to / 5 months ago
For the database, I used Cloud SQL, which is a managed database service from Google Cloud Platform (GCP). This GCP product provides a cloud-based alternative to MySQL, PostgreSQL and SQL Server databases. The great advantage of Cloud SQL is that it is a managed service, that is, you do not have to worry about some tasks related to the infrastructure where the database will run, tasks such as backups, maintenance... - Source: dev.to / 9 months ago
The normal way: set up a transactional database like PostgreSQL or MySQL, maybe through CloudSQL since we're dealing with the Google Cloud Platform. Use it as application's storage backend. Setup redundancy and backup strategy. Sort out IAM permissions. Query configuration data from BigQuery via federated queries. All of this will of course cost you some extra dollars. - Source: dev.to / about 1 year ago
MySQL database: Cloud SQL. No free tier. Cost depends on CPU, RAM, etc. More details here. - Source: Reddit / over 1 year ago
Cloud SQL is a fully managed relational database service for MySQL, PostgreSQL, and SQL Server. Run the same relational databases you know with their rich extension collections, configuration flags and developer ecosystem, but without the hassle of self management. - Source: dev.to / over 1 year ago
The cloud allows us to focus on the essentials. We use SaaS where possible. We do not build our own load-balancers or start hosting a SQL database ourselves. We replace hand-crafted assets with cloud products. E.g., use Google’s Cloud SQL instead of our own PostgreSQL instance. This reduces complexity and allows us to put more energy into our products. We are more efficient. - Source: dev.to / over 1 year ago
And then, as an example, Cloud SQL gives the tracing information into the Google Cloud Trace. And so that gives the information around slow query on a Cloud Trace. But now, Sqlcommenter is merged into OpenTelemetry. So other tracing libraries can collaborate with our RDBMS solutions. So if the RDBMS backend can provide the tracing information of a specific query to the trace visualizer such as Jaeger and Zipkin,... - Source: dev.to / over 1 year ago
As for a free SQL database online, I would look into Google Cloud's solution, but it also requires a credit card. - Source: Reddit / over 1 year ago
2) Without knowing more about the project my default would be to use https://cloud.google.com/sql for your database. But I have yet to try "Firestore in Native mode". - Source: Reddit / over 1 year ago
Check out https://cloud.google.com/sql. - Source: Reddit / almost 2 years ago
Sadly there’s no free hosting of databases, but https://cloud.google.com/sql offers free 3 months, applicable to other Google Cloud services too, https://aws.amazon.com/rds/ offers free 12 months (applicable to other services too) and is the cheapest since it only bills you for the time only db is used. - Source: Reddit / almost 2 years ago
Do you know an article comparing Google Cloud SQL to other products?
Suggest a link to a post with product alternatives.