DynamoDB

 0    18 schede    pablojakub
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
What is dynamoDB consist of?
inizia ad imparare
Tables, items and attributes
How is called cache and when it is suitable?
DynamoDB
inizia ad imparare
DynamoDB Accelerator (DAX), it is suitable for ready heave workloads
In which two cases DAX is not suitable?
inizia ad imparare
For strong consistent read and for write heavy apps
What is default consistency?
DynamoDB
inizia ad imparare
Eventual consistency
For eventual consistency what is the throughput?
inizia ad imparare
2 reads of 4KB per second
For strong consistency what is the throughput?
inizia ad imparare
1 read of 4KB per second
Can you have indexes on non-primary keys?
DynamoDB
inizia ad imparare
Yes you can
What is local secondary index?
inizia ad imparare
Index that has same partition key and different sort key. Must be created at creation time!
Primary key consist of
inizia ad imparare
Partition key and sort key
What is global secondary index?
inizia ad imparare
Index that has different partition key and different sort key. Can be created at any time
What is provisioned throughput?
DynamoDB
inizia ad imparare
It is a limit how many reads/writes on second dynamoDB can handle. Alterantive is on-demand
What is a Provisioned Throughtput for writes in DynamoDB?
inizia ad imparare
1 write of 1KB per second
How is called a feature that enables to access individual records instead of whole tables?
DynamoDB
inizia ad imparare
IAM Condition
What types of querying we have in DynamoDB?
inizia ad imparare
Scan, query, api call
In scans how are data returned?
DynamoDB
inizia ad imparare
With all attributes and based on filtering attributes
If you don't want to get all attributes in scans in DynamoDB you should use
inizia ad imparare
Projection Expression
In query how are data returned?
DynamoDB
inizia ad imparare
Based on partition key
Give me a use case for scan
DynamoDB
inizia ad imparare
You are looking for user by email. You don't know his ID and partitionKey is userID.

Devi essere accedere per pubblicare un commento.