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 回答
4
已接受的回答

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
专家
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则