Skip to content

Latest commit

 

History

History
303 lines (221 loc) · 16.2 KB

File metadata and controls

303 lines (221 loc) · 16.2 KB

micronaut-camunda-external-client

This open source project allows you to easily integrate Camunda 's External Task Clients into Micronaut projects.

Micronaut is known for its efficient use of resources. With this integration you can easily implement an external client which to process external tasks. If you use GraalVM you have startup times of about 20 to 30ms!

The integration is preconfigured with sensible defaults, so that you can get started with minimal configuration: simply add a dependency in your Micronaut project!

If you also want to run the Camunda Workflow Engine on Micronaut, have a look at the open source project micronaut-camunda-bpm.


We're not aware of all installations of our Open Source project. However, we love

  • listening to your feedback,
  • discussing possible use cases with you,
  • aligning the roadmap to your needs!

📨 Please contact us!


Do you want to try it out? Please jump to the Getting Started section.

Do you want to contribute to our open source project? Please read the Contribution Guidelines and contact us.

Micronaut + Camunda = ❤️

Release License Continuous Integration GitHub Discussions

Table of Contents

✨Features

  • Camunda external client can be integrated by simply adding a dependency to your project.
  • A worker can subscribe to multiple topics.
  • The worker's external task client can be configured with properties and programmatically.

🚀Getting Started

This section describes what needs to be done to use micronaut-camunda-external-client-feature in a Micronaut project.

Here are some example applications:

Supported JDKs

We officially support the following JDKs:

  • JDK 8 (LTS)
  • JDK 11 (LTS)
  • JDK 15 (the latest version supported by Micronaut)

Dependency Management

The Camunda integration works with both Gradle and Maven, but we recommend using Gradle because it has better Micronaut Support.

Click to show Gradle configuration
  1. Optional: Create an empty Micronaut project using Micronaut Launch or alternatively with the CLI: mn create-app my-example.
  2. Add the dependency to the build.gradle:
implementation("info.novatec:micronaut-camunda-external-client-feature:0.2.0")
Click to show Maven configuration
  1. Optional: Create an empty Micronaut using Micronaut Launch or alternatively with the CLI: mn create-app my-example --build=maven.
  2. Add the dependency to the pom.xml:
<dependency>
  <groupId>info.novatec</groupId>
  <artifactId>micronaut-camunda-external-client-feature</artifactId>
  <version>0.2.0</version>
</dependency>

Note: The module micronaut-camunda-external-client-feature includes the dependency org.camunda.bpm:camunda-external-task-client which will be resolved transitively.

Creating a Client

The minimal configuration requires you to provide a handler for a specific topic and a configuration that points to the Camunda REST API. You can register multiple handlers in this way for different topics. To register a handler you just need to add the annotation ExternalTaskSubscription and specify the topic to listen to. On start of the application the external task client will automatically connect to the specified Camunda REST API and start fetching tasks.

Example configuration in application.yml

camunda.external-client:
  base-url: http://localhost:8080/engine-rest

Example handler:

import info.novatec.micronaut.camunda.external.client.feature.ExternalTaskSubscription;
import org.camunda.bpm.client.task.ExternalTask;
import org.camunda.bpm.client.task.ExternalTaskHandler;
import org.camunda.bpm.client.task.ExternalTaskService;

import javax.inject.Singleton;

@Singleton
@ExternalTaskSubscription(topicName = "my-topic")
public class ExampleHandler implements ExternalTaskHandler {

    @Override
    public void execute(ExternalTask externalTask, ExternalTaskService externalTaskService) {
        // Put your business logic here
        
        externalTaskService.complete(externalTask);
    }
}

ExternalTaskSubscription Annotation

The annotation accepts the following properties:

Property Default Description
topicName The mandatory topic name the client subscribes to.
lockDuration 20000 Lock duration in milliseconds to lock external tasks. Must be greater than zero.
variables The name of the variables that are supposed to be retrieved.
localVariables false Whether or not variables from greater scope than the external task should be fetched. false means all variables visible in the scope of the external task will be fetched, true means only local variables (to the scope of the external task) will be fetched.
businessKey A business key to filter for external tasks that are supposed to be fetched and locked.
processDefinitionId A process definition id to filter for external tasks that are supposed to be fetched and locked.
processDefinitionIdIn Process definition ids to filter for external tasks that are supposed to be fetched and locked.
processDefinitionKey A process definition key to filter for external tasks that are supposed to be fetched and locked.
processDefinitionKeyIn Process definition keys to filter for external tasks that are supposed to be fetched and locked.
processDefinitionVersionTag Process definition version tag to filter for external tasks that are supposed to be fetched and locked.
withoutTenantId false Filter for external tasks without tenant.
tenantIdIn Tenant ids to filter for external tasks that are supposed to be fetched and locked.
includeExtensionProperties false Whether or not to include custom extension properties for fetched external tasks. true means all extensionProperties defined in the external task activity will be provided. false means custom extension properties are not available within the external-task-client

Configuration

You may use the following properties (typically in application.yml) to configure the external task client.

Prefix Property Default Description
camunda.external-client .base-url Mandatory base url of the Camunda Platform REST API.
.worker-id Generated out of hostname + 128 Bit UUID A custom worker id the Workflow Engine is aware of.
.max-tasks 10 Maximum amount of tasks that will be fetched with each request.
.use-priority true Specifies whether tasks should be fetched based on their priority or arbitrarily.
.default-serialization-format application/json Specifies the serialization format that is used to serialize objects when no specific format is requested.
.date-format Specifies the date format to de-/serialize date variables.
.async-response-timeout Asynchronous response (long polling) is enabled if a timeout is given. Specifies the maximum waiting time for the response of fetched and locked external tasks. The response is performed immediately, if external tasks are available in the moment of the request. Unless a timeout is given, fetch and lock responses are synchronous.
.lock-duration 20000 (milliseconds) Lock duration in milliseconds to lock external tasks. Must be greater than zero. This gets overridden by the lock duration configured on a topic subscription
.disable-auto-fetching false Disables immediate fetching for external tasks after creating the client. To start fetching ExternalTaskClient.start() must be called.
.disable-backoff-strategy false Disables the client-side backoff strategy. On invocation, the configuration option backoffStrategy is ignored. Please bear in mind that disabling the client-side backoff can lead to heavy load situations on engine side. To avoid this, please specify an appropriate long async-response-timeout.

🏆Advanced Topics

Customize the External Task Client

With the following bean it is possible to customize the external task client, e.g. to implement custom backoff strategies or register a client request interceptor.

import info.novatec.micronaut.camunda.external.client.feature.ExternalClientCustomizer;
import io.micronaut.context.annotation.Replaces;
import org.camunda.bpm.client.ExternalTaskClientBuilder;
import javax.inject.Singleton;
import org.camunda.bpm.client.backoff.BackoffStrategy;
import org.camunda.bpm.client.interceptor.ClientRequestInterceptor;

@Singleton
@Replaces(ExternalClientCustomizer.class)
public class MyExternalClientCustomizer implements ExternalClientCustomizer {

    @Override
    public void customize(ExternalTaskClientBuilder builder) {
        // Do your customization here e.g.:
        BackoffStrategy backoffStrategy = ...;
        ClientRequestInterceptor interceptor = ...;
 
        builder.backoffStrategy(backoffStrategy)
          .addInterceptor(interceptor);
    }
}

Important: the values set within your customizer have higher priority than the properties set in your configuration file.

GraalVM

With GraalVM you can reduce start-up time and memory usage even more! For example, on a developer environment the start-up time will drop to about 35ms!

The following instructions are based on macOS - other operating systems will probably be similar. Feel free to create a pull request with updated instructions for other operating systems.

Initial Setup

Install the gu executable to be able to install native-image based on instructions: https://www.graalvm.org/docs/getting-started/macos/

tar -xvf graalvm-ce-java11-darwin-amd64-21.0.0.2.tar.gz
sudo mv graalvm-ce-java11-21.0.0.2 /Library/Java/JavaVirtualMachines
/usr/libexec/java_home -V
gu install native-image

Install GraalVM

Install GraalVM using SDKMAN!:

curl -s "https://get.sdkman.io" | bash
sdk install java 21.0.0.2.r11-grl

Initialize Environment

sdk use java 21.0.0.2.r11-grl
export PATH=/Library/Java/JavaVirtualMachines/graalvm-ce-java11-21.0.0.2/Contents/Home/bin:$PATH
export JAVA_HOME=/Library/Java/JavaVirtualMachines/graalvm-ce-java11-21.0.0.2/Contents/Home

Create Reflection Configuration

cd micronaut-camunda-external-client-example
../gradlew build
mkdir -p src/main/resources/META-INF/native-image/info/novatec/micronaut/camunda/external/client/example
java -agentlib:native-image-agent=config-output-dir=src/main/resources/META-INF/native-image/info/novatec/micronaut/camunda/external/client/example -jar build/libs/micronaut-camunda-external-client-example-0.0.1-SNAPSHOT-all.jar

and cancel the client with Ctrl-C once you see that the client is running when it repeatedly logs Completed external task.

Build Image

Now build the native image - note: this will take a few minutes:

../gradlew clean nativeImage

Start Native Client

You can then start the external client (Note: Server must be running):

build/native-image/application

The application will be up and processing the first tasks in about 35ms (!):

INFO  io.micronaut.runtime.Micronaut - Startup completed in 33ms. Server Running: http://localhost:8888
INFO  i.n.m.c.e.c.example.SimpleHandler - Completed external task
INFO  i.n.m.c.e.c.example.SimpleHandler - Completed external task
INFO  i.n.m.c.e.c.example.SimpleHandler - Completed external task

📚Releases

The list of releases contains a detailed changelog.

We use Semantic Versioning which does allow incompatible changes before release 1.0.0, but we try to minimize them.

The following compatibility matrix shows the officially supported Micronaut and Camunda versions for each release. Other combinations might also work but have not been tested. The current release of the external client will probably work with a server running on Camunda 7.9.0 and newer.

Release Micronaut Camunda
0.2.0 2.4.2 7.15.0
Click to see older releases
Release Micronaut Camunda
0.1.0 2.4.2 7.14.0

Download of Releases:

📨Contact

This open source project is being developed by Novatec Consulting GmbH with the support of the open source community.

If you have any questions or ideas feel free to create an issue or contact us via GitHub Discussions or mail.

We love listening to your feedback, and of course also discussing the project roadmap and possible use cases with you!

You can reach us: