Concurrency control while configuring connectors

I am aware that we can add concurrency in job workers. Need to understand if we can add concurrency control on connectors.
For example. an http connector calling an external API. I need some type of configuration which will have some control over concurrency on connectors.

Hi @Aliakbar_Nathani , thanks for your question. Outbound connectors are based on Job Workers. You therefore have the same options in terms of concurrency by configuring the following properties in the Connector runtime:

zeebe.client.worker.max-jobs-active=32
zeebe.client.worker.threads=10

Inbound connectors are handled differently. Each element for each process definition will currently lead to one instance of an Inbound connector.

If you for example have one “Intermediate Catch Event” element using a Kafka Inbound connector and running a single Connector Runtime, it will lead to one instance of the connector with one Kafka client processing messages.