Reputation: 1
I've just started to use AWS, I have a question. I'm trying to send data from DynamoDB (Account A) to Athena (Account B).
What I would like to do is,
Do you have any solution ? Thanks a lot !
Upvotes: 0
Views: 516
Reputation: 2285
Note that we can not transfer data to Athena, which does not hold data itself.
If the query data source is in the same account, Athena Federated Query would be useful, but it does not seem to be supported cross-account yet.
So for your case, export DynamoDB table to S3 like this aws blog.
Then query S3 data using Athena.
Amazon EventBridge can be used for everyday scheduled actions.
Upvotes: 1