Skip to content

camunda-community-hub/zeebe-cherry-runtime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Community badge: Incubating Community extension badge Compatible with: Camunda Platform 8

What is the Cherry Runtime?

The Cherry Runtime is dedicated to executing Camunda 8 Connectors and Workers.

It provides

  • Administrative pages

    • to monitor the activity of connectors/workers: speed, number of execution
    • To stop/restart the execution
  • A connector can be uploaded

    • From the UI,
    • From a shared folder
    • Download it from the marketplace or a GitHub repository (soon)
  • Element template can be downloaded

  • A farm of runtime, all are managed from one single page

Cherry Runtime Overview

The Cherry runtime accepts any OUTBOUND connector.

This documentation gives information:

  • for administrators to start and administrate connector
  • for BPM Designer, to access documentation and download Element-Template in your modeler
  • For developers, which information can be added during the development, to propose more information for administrators and BPM Designer

Administrator

Any connectors OUTBOUND can be executable by the runtime. INBOUND connectors are not supported for the moment.

A connector can be available:

  • as a JAR file, downloaded from a GitHub repository
  • from the Camunda Marketplace. Then, it's possible to access the JAR file or to download the connector directly from the Cherry administration page (SOON)

What do you need to do to start the runtime?

Check the Installation guide for more information.

Check the Administration guide.md for an explanation of the functions available.

In a short overview, to enable a Cherry runtime in your cluster:

Download the application

Download the Docker Image, or use the docker-compose given in the docker-Cherry The image is available here.

ghcr.io/camunda-community-hub/zeebe-cherry-runtime:latest

Configure the application

Cherry needs:

  • to connect to Zeebe to get jobs
  • to save connectors and statistics

Check the application.yaml file to see all parameters.

The connection use this approach https:/camunda-community-hub/spring-zeebe?tab=readme-ov-file#configuring-camunda-8-connection

Saas

Use

camunda:
  client:
    mode: saas
    auth:
      client-id: <your client id>
      client-secret: <your client secret>
    cluster-id: <your cluster id>
    region: <your cluster region>

Self manage without Identity

camunda:
  client:
    mode: simple
    auth:
      username: demo
      password: demo
    zeebe:
      enabled: true
      gateway-url: http://localhost:26500
      base-url: http://localhost:8080
      prefer-rest-over-grpc: false

Self manage with Identity

camunda:
  client:
    mode: oidc
    auth:
      client-id: <your client id>
      client-secret: <your client secret>
    zeebe:
      enabled: true
      gateway-url: http://localhost:26500
      base-url: http://localhost:8080
      prefer-rest-over-grpc: false

Use parameter

It is possible to pass parameters as a variable, for example.

`` Environment:

  • CAMUNDA_CLIENT_MODE=saas `` To connect a local engine in the same cluster.

Database

An H2 database is configured by default to save information. Use a SQL database for a robust database. Looks docker-compose-cherry-postgres.yaml to see an example.

Using an SQL database allows you to configure one Cherry pod and a farm of pods. Each pod accesses the same database, and statistics are shared between all pots through connectors.

Start the application

Start the application, and check the main page. The port number is 9081 by default in the application.yaml file

Cherry Main Page

On this page, connectors/workers are visible with statistics. The administrator can stop a connector/worker and change the number of threads dedicated to the execution pool.

Loads connectors

Connect to the Administration page and navigate to the Content page. Upload a JAR file via the page.

LoadConnector.png

BPMN Designer

Connectors can be accessible via the Cherry Definition page.

Multiple functions are available if the connectors come from the marketplace or additional Cherry methods are implemented.

Documentation

Access the Definition page CherryDefinitionPage.png

Click on a connector. Different tabs are visible. If the connector defines the additional Cherry method, Inputs, Outputs, and Errors are visible in the tab.

Input tab

Element template

The element template can be downloaded if the connector defines the additional Cherry methods or comes from the MarketPlace.

Open the ZIP file, and upload content on the Desktop modeler, path `resources\element-templates. ModelerElementTemplate.png

It's possible to upload the file on the Web Modeler.

For the Developer

Cherry runtime can run any connector. The connector must include some extra methods to allow the Business Developers to access new functions, like the documentation.

The second advantage of implementing this method is element-template generation. When Inputs and Outputs are explained, the Cherry runtime can generate the element template and hide the complexity.

Cherry runtime has more critical features for the developers:

  • The Cherry runtime controls the contract. If a variable is mandatory, the Framework controls its existence. On the Execute() method, the developer does not need to worry about the variable.
  • if the connector declares a BPMN Error, the glue between the code and the throw is taken in charge by the Cherry runtime.

The Cherry runtime manages execution, and many administrative functions are included: starting/stopping, changing the number of threads, and getting statistics on execution.

Check the Developer guide

Internal tip

Create the Docker image

Because the library contains Java and React script, to deploy it, the machine must have two environments

.github/workflows/mvn-build.yml

    - name: Set up JDK
      uses: actions/setup-java@v3
      with:
          java-version: '17'
          distribution: 'adopt'
    - name: Set up NPM
      uses: actions/setup-node@v3

    - name: Build with Maven
      run:  CI=false mvn --batch-mode --update-snapshots package

CI=false; otherwise, any warning will stop the construction.

The docker image is then available in the package https:/camunda-community-hub/zeebe-cherry-runtime/pkgs/container/zeebe-cherry-runtime

Build

The project is configured to publish the JAR file automatically to Maven Central and docker package a Docker image.

If you want to build a local maven image, use

mvn spring-boot:build-image

Maven Central repository

See .github/workflows/mvn-release.yml

Visit https:/camunda-community-hub/community-action-maven-release/tree/main

Deploy manually the image

Rebuilt the image via

mvn clean install
mvn springboot:build-image

The docker image is built using the Dockerfile present on the root level.

Push the image to

ghcr.io/camunda-community-hub/zeebe-cherry-runtime:

Detail

Run command

mvn clean install

Now, create a docker image.

docker build -t pierre-yves-monnet/zeebe-cherry-runtime:3.3.0 .

Push the image to the Camunda hub (you must be login first to the docker registry)

docker tag pierre-yves-monnet/zeebe-cherry-runtime:3.3.0 ghcr.io/camunda-community-hub/zeebe-cherry-runtime:3.3.0
docker push ghcr.io/camunda-community-hub/zeebe-cherry-runtime:3.3.0

Tag as the latest:

docker tag pierre-yves-monnet/zeebe-cherry-runtime:3.3.0 ghcr.io/camunda-community-hub/zeebe-cherry-runtime:latest
docker push ghcr.io/camunda-community-hub/zeebe-cherry-runtime:latest

Check on https:/camunda-community-hub/zeebe-cherry-runtime/pkgs/container/process-execution-automator