I am trying to get all the keys from a DynamoDB table in an optimized way. There are millions of keys.
In Cassandra, I would probably create one row with a column for each key, which would eliminate the need for a full table scan. The 64k limit for DynamoDBs per element would seem to preclude this option.
Do I have a quick way to return all keys?
Thanks.
source share