Skip to main content
Version: 8.5

Use Connectors in hybrid mode

note

Hybrid mode is supported as of the Connectors 0.23.0 release.

Hybrid mode is where you can run a Self-Managed Connector runtime instance attached to a Camunda SaaS cluster or another Self-Managed cluster that has another instance of the Connector runtime attached.

To name few use-cases where this approach might be useful:

  • When you deal with services that must be isolated within private network and must never be exposed to the public internet.
  • Infrastructure amendments need to be applied to the Connector runtime, such as SSL certificates, mounted volumes, etc.
  • Code modifications applied to Connector runtime, or specific connector logic.

How it works

Every Connector has its ID (type definition), and name. Every Connector element template has a hidden property that defines which Connector is to be used to execute with a given template.

For example, see a relation between Kafka element template and Kafka Connector.

For the hybrid Connector runtime to work properly, you must override the Connector type.

For the purpose of this guide, imagine you would like to override an HTTP REST Connector with type io.camunda:http-json:1. Refer to the element template and its related runtime.

Start Connector runtime in hybrid mode

Prerequisites

Ensure you have a running Camunda cluster, and a pair of Client ID/Client Secret with Zeebe and Operate scopes. Learn more about how to obtain required credentials.

To use secrets managed by the SaaS environment, add the Secrets scope.

Option 1: Get Connector runtime from Docker registry

When to use?

Use this option when you don't need to make any code modifications to either Connector runtime, or a specific Connector. This option allows you to start the Connector runtime bundle that runs all of Camunda's officially-supported Connectors.

Run the following script:

docker run --rm --name=HybridConnectorRuntime \
-e ZEEBE_CLIENT_SECURITY_PLAINTEXT=false \
-e ZEEBE_CLIENT_CLOUD_CLUSTER-ID='<YOUR_CLUSTER_ID>' \
-e ZEEBE_CLIENT_CLOUD_CLIENT-ID='<YOUR_CLIENT_ID>' \
-e ZEEBE_CLIENT_CLOUD_CLIENT-SECRET='<YOUR_CLIENT_SECRET>' \
-e ZEEBE_CLIENT_CLOUD_REGION='<YOUR_CLUSTER_REGION>' \
-e CAMUNDA_OPERATE_CLIENT_URL='https://<region>.operate.camunda.io/<cluster-id>' \
-e CONNECTOR_HTTP_REST_TYPE='io.camunda:http-json:local' \
camunda/connectors-bundle:<desired-version>

Option 2: Build your own runtime

When to use?

Use this option when you make modifications to the original Connector runtime, existing Connectors, or other related changes. This option allows you to start the Connector runtime bundle with provided Connectors.

  1. Ensure docker is installed.
  2. Clone https://github.com/camunda/connectors.
  3. Go to <connectors-root>/bundle/default-bundle.
  4. Build a Connector image, e.g. docker build -f Dockerfile -t myorg/my-connectors-bundle:<desired-version> ..
  5. Run the same docker run ... command as in Option 1.

Explanation

Note the line -e CONNECTOR_HTTP_REST_TYPE='io.camunda:http-json:local'. This line means we have to override CONNECTOR_X_TYPE with a given type. In this case, we want to register a local Self-Managed HTTP REST Connector as io.camunda:http-json:local.

The X is normalized to the environment variable Connector name. For example, the HTTP REST Connector HTTP REST name becomes HTTP_REST, or the Kafka Consumer Connector name becomes KAFKA_CONSUMER. Therefore, to override it one would need to pass in the CONNECTOR_KAFKA_CONSUMER_TYPE=xxx environment variable.

Using SaaS secrets

If you add the Secrets scope to your API client, you can access cluster secrets in a hybrid setup.

Enable the SaaS secret provider via an environment variable or in your application config file:

Environment variable:

CAMUNDA_CONNECTOR_SECRETPROVIDER_CONSOLE_ENABLED = true

Properties file:

camunda.connector.secretprovider.console.enabled = true

After enabling Console, secret provider secrets used in an external Connectors runtime will be resolved by fetching them from Console.

Preparing element template for hybrid mode

As mentioned, to relate Connector element templates with Connector runtime, you must modify the task definition type.

To do this, take the following steps:

  1. Obtain a copy of the element template you wish to override. All latest versions of the official element templates can be found in the official Connectors repository at path connectors/<desired connector>/element-templates/.
  2. Modify the value to the desired new type of the property. Use zeebe:taskDefinition:type for outbound Connectors, or inbound.type for inbound ones.
  3. Publish the new element template, and use it in your BPMN diagram.

There are several options to deliver element templates to the target user:

Option 1: Hide task definition type value

Use this option when you plan to clearly indicate that a specific Connector will only be used in a specific use-case. Otherwise, users might be confused between two of the same Connector types.

For example, if you defined CONNECTOR_HTTP_REST_TYPE='io.camunda:http-json:local' argument variable when running Connectors runtime, you must implement the following in the element template for it to function properly:

{
"type": "Hidden",
"value": "io.camunda:http-json:local",
"binding": {
"type": "zeebe:taskDefinition:type"
}
}

Option 2: Expose task definition type as plain text

Use this option when the target user building a BPMN process is deciding which Connector to use, or you have more than one dedicated Self-Managed Connector instance.

Be mindful that the user will be dealing with different task definition types and has to know which is what. For example, if you defined CONNECTOR_HTTP_REST_TYPE='io.camunda:http-json:local' in runtime, you must implement the following in the element template for it to function properly:

{
"type": "String",
"label": "Task definition type",
"value": "io.camunda:http-json:local",
"binding": {
"type": "zeebe:taskDefinition:type"
}
}

However, the target user can change the value back to the original "value": "io.camunda:http-json:1", to execute the process in a SaaS environment. You can also add this field to a group for UX purposes.

Option 3: Expose task definition type as dropdown

Use this option if you would like to achieve the most user-friendly experience. However, this approach may take a larger time investment in modifying element templates, plus additional time to support whenever you launch a new Connector runtime or disable an old one.

The following example demonstrates this approach:

{
"label": "Task definition type",
"type": "Dropdown",
"value": "io.camunda:http-json:1",
"choices": [
{
"name": "SaaS environment",
"value": "io.camunda:http-json:1"
},
{
"name": "SM environment 1",
"value": "io.camunda:http-json:local1"
},
{
"name": "SM environment 2",
"value": "io.camunda:http-json:local2"
}
],
"binding": {
"type": "zeebe:taskDefinition:type"
}
}

Appendix

See ready-to-use hybrid element templates examples for HTTP REST and Kafka Consumer.