Enabling Workflows
The provided application.yml
enables workflow 0 and 1. To enable additional workflows, define the following properties in the application.yml
, where <workflow-id>
is a value between [0-19]
:
spring:
cloud:
stream:
bindings: # Workflow bindings
input-<workflow-id>:
destination: <input-destination> # Table name
binder: pgcdc # Input system
output-<workflow-id>:
destination: <output-destination> # Queue or Topic name
binder: solace # Output system
solace:
connector:
workflows:
<workflow-id>:
enabled: true
The connector only supports workflows in the direction of:
-
PostgreSQL → Solace
For more information about Spring Cloud Stream and the PubSub+ binder, see: