DynamoDB

 0    18 tarjetas    pablojakub
descargar mp3 imprimir jugar test de práctica
 
término definición
What is dynamoDB consist of?
empezar lección
Tables, items and attributes
How is called cache and when it is suitable?
DynamoDB
empezar lección
DynamoDB Accelerator (DAX), it is suitable for ready heave workloads
In which two cases DAX is not suitable?
empezar lección
For strong consistent read and for write heavy apps
What is default consistency?
DynamoDB
empezar lección
Eventual consistency
For eventual consistency what is the throughput?
empezar lección
2 reads of 4KB per second
For strong consistency what is the throughput?
empezar lección
1 read of 4KB per second
Can you have indexes on non-primary keys?
DynamoDB
empezar lección
Yes you can
What is local secondary index?
empezar lección
Index that has same partition key and different sort key. Must be created at creation time!
Primary key consist of
empezar lección
Partition key and sort key
What is global secondary index?
empezar lección
Index that has different partition key and different sort key. Can be created at any time
What is provisioned throughput?
DynamoDB
empezar lección
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?
empezar lección
1 write of 1KB per second
How is called a feature that enables to access individual records instead of whole tables?
DynamoDB
empezar lección
IAM Condition
What types of querying we have in DynamoDB?
empezar lección
Scan, query, api call
In scans how are data returned?
DynamoDB
empezar lección
With all attributes and based on filtering attributes
If you don't want to get all attributes in scans in DynamoDB you should use
empezar lección
Projection Expression
In query how are data returned?
DynamoDB
empezar lección
Based on partition key
Give me a use case for scan
DynamoDB
empezar lección
You are looking for user by email. You don't know his ID and partitionKey is userID.

Debes iniciar sesión para poder comentar.