I am building webservice integration in AWS lambda (Java) to perform financial transactions.
This application will get around 5 transactions/sec and response time is expected to be around 500 milliseconds.
Currently the response time varies from 2 seconds to 8 seconds.
Same code in Springboot application with embedded tomcat gives a response time of around 500 milliseconds
I have tried increasing memory for AWS Lambda function but still cant achieve 500 milliseconds response
My questions are as follows
- Is AWS Lambda ideal for financial transaction with quick response time (i.e. 500 millisecs) ?
- What type of application is AWS Lambda suitable for ?