I have a dynamoDB table that I'm populating with PutDynamoDB, no problems, it has a hash key of "userid" and a range key of "timestamp", the epoch time of the event. Is it possible, using the GetDynamoDB processor, to get back all or part of the set of range keys associated with the hash ID? That is, if user 1 posts 5 times, I want to be able to issue a GetDynamoDB call with the userid value of 1, and get back an array of all 5 post times by user 1. If I only want the 3 posts made yesterday, I want to supply a greater than and less than value to the lookup query, so that I only recover those 3 records.
I've tried simply querying without a range key value, and have not had any luck. In dynamoDB's interface, I can issue a hash key with a "between" range for the sort key. Is it possible to do the same in nifi?