I have a use case where i need to get report by running a query. This report needs to be generated from two database, so basically two report and then both i have to sent in an email.
This report generation should be scheduled once in every day.
Running query to get report will take more than 15 minutes to 25 minutes not more than that and size of the report will not be ore than 5 MB.
One database in Mysql Aurora in AWS and other one is On-prem Oracle.
I need to run both query from AWS but i am looking for something serverless solution.
Lambda will not work because of 15 minutes limitation.
What else we can use to solve this without any EC2 solution?
Please suggest