All Projects → viadee → camunda-kafka-polling-client

viadee / camunda-kafka-polling-client

Licence: BSD-3-Clause license
Stream your process history to Kafka

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to camunda-kafka-polling-client

micronaut-camunda-bpm
Integration between Micronaut and Camunda (Workflow Engine). We configure Camunda with sensible defaults, so that you can get started with minimum configuration: simply add a dependency in your Micronaut project to embed the workflow engine!
Stars: ✭ 73 (+160.71%)
Mutual labels:  bpmn, camunda
camunda-client-go
Camunda REST API client for golang
Stars: ✭ 95 (+239.29%)
Mutual labels:  bpmn, camunda
camunda-bpm-migration
Fluent Java API for Camunda Platform 7 process instance migration
Stars: ✭ 18 (-35.71%)
Mutual labels:  bpmn, camunda
awesome-camunda
a curated list of awesome Camunda BPM projects, libraries, tools, documentations, forum posts, etc.
Stars: ✭ 93 (+232.14%)
Mutual labels:  bpmn, camunda
camunda-formio-plugin
Integration for Drag and Drop Formio Form Builder and Renderer with Camunda Tasklist App
Stars: ✭ 61 (+117.86%)
Mutual labels:  camunda
Redux Undo
♻️ higher order reducer to add undo/redo functionality to redux state containers
Stars: ✭ 2,744 (+9700%)
Mutual labels:  history
Delete My Hisroy In Tieba
删除在百度贴吧的回复、主题帖、关注等(其实就是黑历史啦ww)
Stars: ✭ 235 (+739.29%)
Mutual labels:  history
Jshistory Cn
🇨🇳 《JavaScript 二十年》中文版
Stars: ✭ 3,686 (+13064.29%)
Mutual labels:  history
microsoft-opensource
An unofficial timeline of Microsoft's transition towards open source
Stars: ✭ 83 (+196.43%)
Mutual labels:  history
telegram-bot-dumper
🔪 Dumper & ripper for Telegram bots by token
Stars: ✭ 82 (+192.86%)
Mutual labels:  history
shell-history
Visualize your shell usage with Highcharts!
Stars: ✭ 100 (+257.14%)
Mutual labels:  history
React Router Last Location
Provides access to the last location in react + react-router (v4.x, v5.x) applications. ❤️ Using hooks? useLastLocation | 💉 Using HOC? withLastLocation
Stars: ✭ 251 (+796.43%)
Mutual labels:  history
bpmn-spec
A tool to run tests for BPMN processes on Zeebe
Stars: ✭ 28 (+0%)
Mutual labels:  bpmn
Hstr
bash and zsh shell history suggest box - easily view, navigate, search and manage your command history.
Stars: ✭ 2,909 (+10289.29%)
Mutual labels:  history
cli-cube-timer
Time your solves, without leaving the terminal
Stars: ✭ 19 (-32.14%)
Mutual labels:  history
Wordpress Simple History
🔍🕵️‍♀️ WordPress audit log that track user changes in WordPress admin using a nice activity feed.
Stars: ✭ 232 (+728.57%)
Mutual labels:  history
micronaut-camunda-external-client
This open source project allows you to easily integrate Camunda's External Task Clients into Micronaut projects: simply add a dependency in your Micronaut project
Stars: ✭ 19 (-32.14%)
Mutual labels:  camunda
activiti-examples
Alfresco Process Services powered by Activiti Examples.
Stars: ✭ 58 (+107.14%)
Mutual labels:  bpmn
webextensions-history-browser
🕘 Browse your firefox history like a boss.
Stars: ✭ 19 (-32.14%)
Mutual labels:  history
Victoria-2-Cold-War-Enhancement-Mod-CWE
CWE brings Victoria 2 into the Cold War era and beyond. This is the ultimate Cold War mod with a slew of special features such as ideological blocs, dynamic international institutions and decolonisation chains to accurately simulate the Cold War and Post-Cold War world.
Stars: ✭ 114 (+307.14%)
Mutual labels:  history

The Camunda-Kafka Polling Client

License CI Build Maven Central

The Polling Client is a useful tool for the extraction of Camunda process data and their permanent storage in Apache Kafka. As such it is used in the projects bpmn.ai or vPW, that aim to open up standard process data for data mining and exploration.

Two different polling modes are supported: Polling via JDBC access from a Camunda database using an embedded Camunda engine and polling via the Camunda engines own REST API from an existing Camunda instance.

Configuration

We provide a pre-configured docker image on Amazon Elastic Container Registry (ECR).

The polling mode selection is done by using Spring profiles. The polling client can be configured on several levels, i.e. directly via the applications properties files or by setting environment variables.

Data Store Configuration

Property Value Example
KAFKA_BOOTSTRAP_SERVERS name:port 127.0.0.1:19092

Depending on its retention policy your Kafka server might discard messages after a defined time period. You can set the retention policy for the broker by adjusting the value for the key log.retention.hours.

bin/kafka-configs.sh --bootstrap-server localhost:9092 --entity-type brokers --entity-default --alter --add-config log.retention.hours=1073741824

REST Polling

Property Value Example
SPRING_PROFILES_ACTIVE rest rest
CAMUNDA_REST_URL url to camunda rest api http://localhost:8080/engine-rest/
CAMUNDA_REST_USERNAME (optional) username for authentication demo
CAMUNDA_REST_PASSWORD (optional) password for authentication demo
CAMUNDA_REST_SOURCE_TIME_ZONE (optional) Time zone used for formatting timestamps provided to camunda rest api (Default: System timezone) CEST
CAMUNDA_REST_DATE_FORMAT_PATERN (optional) Format string used for formatting timestamps provided to camunda rest api (Default: See example) yyyy-MM-dd'T'HH:mm:ss.SSSZ

JDBC Polling

Property Value Example
SPRING_PROFILES_ACTIVE jdbc jdbc
CAMUNDA_JDBC_URL jdbc url
CAMUNDA_JDBC_USERNAME db username demo
CAMUNDA_JDBC_PASSWORD db password demo

Polling start time configuration

Property Value Example
POLLING_RUNTIME_DATA_INITIAL_TIMESTAMP (optional) initial start time the polling of runtime data (only relevant for initial polling);
format: "yyyy-MM-dd HH:mm:ss".
Default is the current time.
2018-01-01 00:00:00
POLLING_REPOSITORY_DATA_INITIAL_TIMESTAMP (optional) initial start time the polling of repository data (only relevant for initial polling);
format: "yyyy-MM-dd HH:mm:ss.
Default is the current time."
2018-01-01 00:00:00

Further configurations

Further configurations can be made via the application.properties file, e.g. setting the polling interval (default: every 30000 ms).

Docker Tags

There are several tags available on Amazon Elastic Container Registry (ECR) and docker hub:

  • Version tags (e.g. 1.0.2) are build from corresponding release tags and reflect the release version which is also available from maven central.
  • latest refers the latest version.

Extending Docker Image

All data is stored in /data. This is also the working directory and the only directory with write permissions.

All JAR files available in /app/lib are included in applications classpath. Adding e.g. an additional jdbc driver can thus be done by just adding the driver library to /app/lib.

Collaboration

The project is operated and further developed by the viadee Consulting AG in Münster, Westphalia.

  • Community contributions to the project are welcome: Please open Github-Issues with suggestions (or PR), which we can then edit in the team. For contribution please take account of our contributing guidelines.
  • We are also looking for further partners who have interesting process data to refine our tooling as well as partners that are simply interested in a discussion about AI and data warehouses in the context of business process automation.

Commitments

This library will remain under an open source licence indefinately.

We follow the semantic versioning scheme (2.0.0).

In the sense of semantic versioning, the resulting JSON outputs are the only public "API" provided here. We will keep these as stable as possible.

Roadmap

This software component is considered to be stable and ready for production use. However, we plan to extend on it if there is demand or if the Camunda APIs change.

License

This project is licensed under the BSD 3-Clause "New" or "Revised" License - see the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].