Viele
Viele

Reputation: 2336

Does retrieving less attributes consume less read unit on DynamoDB

Assuming each item is greater than 4Kb, does retrieving less attributes by using Projection Expressions (so that the returned items are less than 4Kb each) save on read units?

Upvotes: 0

Views: 91

Answers (1)

ketan vijayvargiya
ketan vijayvargiya

Reputation: 5659

As JaredHatfield pointed out, it does not.

The only use for Projections is that, instead of getting all item attributes back, you ask DynamoDB to return only some of them. This might save some network bandwidth and make client-side processing a bit simpler.

Relevant documentation here.

Upvotes: 1

Related Questions