GCP Datastore Flashcards
What is GCP Datastore?
It is a noSQL document database,
- Terabyte capacity
- Fully Managed,
- NoSQL
- Built For Scale
- High Replication
- High Availability
- Has SQL like queries
- Shards for scale
- Transactions
Is GCP Datastore Fully Managed?
Yes
I need atomic transactions, is GCP Datastore an option?
Yes
I need scalability for a database, will GCP Datastore provide this?
Yes
How long does a write take in GCP Datastore?
It takes about 1sec to complete a write
I have to write to some type of datastore, I need to be able to write 4 transactions per second, is GCP Datastore and option for me?
No GCP Datastore requires 1second per write.
In GCP Datastore Are Global Queries consistent?
No, they are eventual consistent because of the query more than a single key.
In GCP Datastore, are Key Queries consistant?
Yes because the query is for a single key.
What type of consistency does GCP Datastore give you?
It gives you both eventual and strong consistancy.
Is GCP Datastore highly available?
Yes, 99.95% SLA
I need to ensure GCP Datastore database can withatand a regional failure, what are my options.
Locate your database and its application in a regions supporting multi-region replication. Data is replicatited to zones with in a region but also to another region. There is currently only 2 regions with multiregion capabilities, us-centeral and europe-west.
When creating a GCP Datastore database, how do I selected the region.
GCP Datastore selects the region based on the projects region.
When using multi-region replication for GCP Datastore, how many regions is the data replicated to? and how many replicas in each region?
3, Region 1 has two full replicas, region 2 has two full replicas and region 3 has one replica.
I need to export dat to Cloud Storage, is this possible?
Yes 100% you can export to CloudStorage
I need to import data fromCloud Storage, is this possible?
Yes 100% you can import from CloudStorage