Kafka + AWS lambda

后端 未结 6 1232
夕颜
夕颜 2021-01-31 18:36

Is it possible to integrate AWS Lambda with Apache Kafka ? I want to put a consumer in a lambda function. When a consumer receive a message the lambda function execute.

6条回答
  •  悲&欢浪女
    2021-01-31 19:19

    Yes it is very much possible to have a Kafka consumer in AWS Lambda function.

    However note that you would not be able to invoke the lambda using some sort of notification. You will rather have to poll the Kafka topic. And the easiest way can be to use a Scheduled Lambda

提交回复
热议问题