I want to save UserTask information to PostgreSQL so that I can complete the UserTask using JobKey from my application. To achieve this I am planning to save the JobRecords using the Exporter class to DB. How can we make the Exporter class save to PostgreSQL using Spring? I am using Zeebe Broker 8.x & Java 17.
Camunda 8/Zeebe Exporter save record to PostgreSQL using Spring
277 Views Asked by HemantS At
1
There are 1 best solutions below
Related Questions in CAMUNDA
- How to specify which start event should be called from a BPMN callActivity
- How to make Camunda engine use standard logging?
- camunda-webapp and JAAS-authentication
- Cross-process synchronization in Camunda?
- How to trigger table changes in camunda (using grails)?
- Avoid history table explosion for long-running cyclic processes?
- Deploying to a camunda process engine
- Camunda - external connector for BPMN - CMMN - DMN with list of data incoming?
- How to run Camunda with HSQLDB?
- Can a task be created in Camunda Workflow outside of a process?
- Support for radio buttons in Camunda embedded forms
- camunda RestApi CaseDefinition not returning id
- Camunda Embedded Form: Angular 1.2.16 module config function not firing, can't inject factories or services
- How to setup conditionals for BPMN2 Exclusive Gateway
- Camunda BPMN - accessing variables inside a thread
Related Questions in EXPORTER
- Export scraping data in multiple formats using scrapy
- Sencha Grid Exporter fails when exporting to CSV or any other type other than xlsx?
- Export a hash from a module to a script
- Where does blackbox exporter store probe data?
- Grafana query parsing error with label_values
- How to export .3ds file for using RenderMonkey from 3dsMax?
- Getting error while trying to use env variable/variable in custom-metrics.toml
- Camunda 8/Zeebe Exporter save record to PostgreSQL using Spring
- Is there an Artifactory exporter/Datasource to Grafana, to create an Dashboard with information about artifactory folders (size files/subfolders etc)
- Extract Individual URL Request Counts
- How can I export a function with Moose::Exporter?
- Not able to Run celery-prometheus-exporter
- How can I send traces directly to webservice without using opentelemtry collector using oltp exporter in http protocol?
- Unable to export traces to OpenTelemetry Collector on Kubernetes
- Prometheus redis exporter
Related Questions in ZEEBE
- Camunda 8/Zeebe Exporter save record to PostgreSQL using Spring
- Error Starting up Camunda Zeebe 8.3.1 with docker-compose
- How to set expiry for Zeebe Workflow Instance
- Spring Boot Java Client not able to connect to Zeebe Docker
- zeebe as microservice orchestrator
- Does anyone know how to retrieve the list of tasks in Camunda 8, without using tasklist?
- Unable to set topic with camelCase name via Env variable
- Deploy zeebe with a elasticserch version 7
- Zeebe metrics monitoring using external prometheus
- Run Camunda Operate dockerized behind an nginx reverse proxy
- passing toml file name to spring context
- How to complete a “USER_TASK” in zeebe client of version 1.1.0 stable?
- aws camunda zeebe ClientStatusException: deadline exceeded after 19.999991631s
- Cannot create process instance after moving to camunda-cloud lib
- How to restart job in zeebe
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As mentioned also on the Camunda forum, the exporter needs to implement an interface and will be directly called by the broker. So it won't run as a spring boot application. See here for further information https://forum.camunda.io/t/zeebe-exporter-postgresql/48507/2