I\'m using Dynamo DB pretty heavily for a service I\'m building. A new client request has come in that requires cloud search. I see that a cloud search domain can be created
I'm not so clear on how Lambda would always keep the data in sync with the data in dynamoDB. Consider the following flow:
Lambda triggers are not guaranteed to start ONLY after previous invocation is complete (Correct if wrong, and provide me link)
As we can see, the thing goes out of sync.
The closest I can think which will work is to use AWS Kinesis Streams, but those too with a single Shard (1MB ps limit ingestion). If that restriction works, then your consumer application can be written such that the record is first processed sequentially, i.e., only after previous record is put into CS, then the next record should be put.