Which of the following is the main reason to use NoSQL databases on Google Cloud Platform instead of traditional SQL databases?
Think about how data changes over time and how databases handle that.
NoSQL databases on GCP are designed to handle flexible, evolving data structures by allowing schema changes without downtime. This is unlike traditional SQL databases that require fixed schemas.
You want to build a globally distributed application with low-latency data access and automatic scaling. Which GCP NoSQL service fits best?
Consider which service is designed for mobile and web apps with global reach.
Cloud Firestore in Native mode is a NoSQL document database designed for global distribution with low latency and automatic scaling, ideal for mobile and web apps.
What happens when you add nodes to a Cloud Bigtable cluster?
Think about how a big table keeps performance smooth as it grows.
Cloud Bigtable automatically redistributes data when nodes are added to balance the load and maintain performance without downtime.
Which GCP feature helps protect NoSQL data by controlling who can read or write documents in Cloud Firestore?
Think about how you control user permissions in GCP.
Cloud IAM roles and policies let you control access to Cloud Firestore data by defining who can read or write documents.
You want your Cloud Firestore database to remain available even if a whole GCP region goes down. What is the best practice to achieve this?
Consider built-in multi-region support for automatic failover.
Firestore in Native mode with multi-region configuration automatically replicates data across multiple regions to provide high availability and resilience to regional failures.