I need to support a use case where i need to search all attributes that are INPUT given by the user. As DynamoDB doesn't supports regular expression and a full scan is not possible overtime on that attributes. How should i move forward. Users will be calling that functionality quiet often.
Asked
Active
Viewed 152 times
0

John Rotenstein
- 241,921
- 22
- 380
- 470

user1747819
- 301
- 1
- 5
- 11
-
Keep a copy of the data in ElasticSearch? You aren't going to have fun trying to build that functionality onto DynamoDB. – Mark B Aug 10 '16 at 19:36
-
@MarkB : If using streams and Lambda we move Data to Elastic Search. what will be the average latency for programatic 'get' on various indexes in ELastic search? – user1747819 Aug 11 '16 at 06:06
-
I've been working on a PoC of this for something at my job, I'm seeing a delay of at most a couple seconds. But we have a slightly more complex pipe than just DDB -λ-> ES. – John Jones Feb 01 '17 at 20:26