Camunda with SQS/SNS/S3 and REST with huge payloads

  1. Is there any way to integrate to AWS SQS/SNS directly from the Camunda modeler using connectors?
    Or is it best to implement those AWS service in the own microservice and call it using handlers/delegates or external tasks?

  2. I know connectors support REST calls directly from the engine (designed via modeler). But when the REST payloads and responses are complex and huge; is there any recommendation to use those complex REST calls/serialization/data mapping in Camunda or it is better to handle these kinds of REST calls in the java classes (using handlers, delegates or external service)

Thank you!!

Hello @Arnab_Naha ,

I would not recommend to use connectors. In this case, I would use a client implementation of the service I want to call and some glue code either as delegate or external task worker.

Hope this helps

Jonathan

Thanks @jonathan.lukas for your input. I guess that is true for both my points 1 and 2