We have a service that retrieves data from DynamoDB. Every day, we create a new DynamoDB table, created from scratch by pulling the latest data from downstream data sources.
Compared to the previous day's table, the new table can have some delta in different ways: some new items, some items with different attribute values, and some items no longer part of the table.
We want to use DAX to improve latency performance. Given that we have a new underlying DynamoDB table every day, what is the best way to set up and/or update a DAX cluster to start caching values for the new table when it is ready?