amazon web services - Does retrieving less attributes consume less read unit on DynamoDB -


assuming each item greater 4kb, retrieving less attributes using projection expressions (so returned items less 4kb each) save on read units?

as jaredhatfield pointed out, not.

the use projections that, instead of getting item attributes back, ask dynamodb return of them. might save network bandwidth , make client-side processing bit simpler.

relevant documentation here.