Do GSI not projected attributes use WRU?

0

I'm new to AWS and NoSQL/DynamoDB. I was wondering if having a GSI with projection type KEYS_ONLY whould use WRU or incur in extra cost when modifying non-key attributes in the original table.

For example if a table with PK "id" and GSI-PK "email" would get extra WRU used or cost added when modifying the attribute "city" in the original table.

Thank you in advance.

1 Respuesta
4
Respuesta aceptada

This is where item size comes into play. Each write request to DynamoDB is rounded up to the nearest 1KB. So lets first assume the items in your table is less than 1KB:

A write to the base table will consume 1 WCU and replication to a GSI will consume 1 WCU. That replicated write to the GSI will consume 1WCU regardless if you use KEYS_ONLY or ALL projection, as the minimum consumption is 1 WCU.

Now consider your item size is 4KB: A write to the base table will consume 4 WCU and replication to a GSI will consume 4 WCU if using ALL projection. However, if you use KEYS_ONLY you will only consume 1 WCU from your GSI which is 1/4 of the cost of using ALL.

The second factor for using KEYS_ONLY is storage costs, only storing the keys of the item can significantly reduce storage costs as your table scales to TB's.

For example if a table with PK "id" and GSI-PK "email" would get extra WRU used or cost added when modifying the attribute "city" in the original table.

Using KEYS_ONLY would not consume GSI capacity in this instance, as you have made no changes to the indexed item.

profile pictureAWS
EXPERTO
respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas