Hello, I am working on SQS queue, i want to trigge...
# help
f
Hello, I am working on SQS queue, i want to trigger another lambda when the queue consumer received the message so i can handle the message from the queue, any idea how to do that?
f
Thanks, i already build the queue and the consumer and did received the messages. my idea how to pass the message form the consumer to another lambda function
t
Is there a reason you want a lambda to invoke another lambda? That's generally a sign of something being off
You can invoke one lambda from another if you really need to
f
i need it to do some query then save data in S3
t
You can do that inside the consumer function right?
f
umm, right, so no need to do than in another lambda
r
Yeah, just run the query from within the consumer