I have an environment where my DynamoDB table is central to a few services (a couple of lambdas, kinesis and firehoses). All of that is managed by AWS's CloudFormation/Typescript CDK.
This table has PITR enabled and, as far as I know, it's only possible to do a PITR by dumping the recovered data into a new table. Here is where the pain begins:
- AWS's documentation after the creation of the new table is INEXISTENT!
- How can I update the references for the new table on all other services?
- Should I just 'erase' my old table and import the recovered ones?
- Wouldn't this means that I would need to take my service down to recover it?
- What is the "standard" or "best practice" here?
Thanks a lot community! :D