Properties reference
Properties for the Camunda Spring SDK.
Properties
camunda.client
Properties for the Camunda client.
Configuration Property/Environment Variable | Type | Default value | Description |
---|---|---|---|
camunda.client.ca-certificate-path CAMUNDA_CLIENT_CACERTIFICATEPATH | string | null | The path to a root Certificate Authority (CA) certificate to use instead of the certificate in the default store. |
camunda.client.enabled CAMUNDA_CLIENT_ENABLED | boolean | true | Enable or disable the Camunda client. If disabled, the client bean is not created. |
camunda.client.execution-threads CAMUNDA_CLIENT_EXECUTIONTHREADS | integer | 1 | The number of threads for invocation of job workers. |
camunda.client.grpc-address CAMUNDA_CLIENT_GRPCADDRESS | url | "http://0.0.0.0:26500" | The gRPC address of Camunda that the client can connect to. The address must be an absolute URL, including the scheme. An alternative default is set by both |
camunda.client.keep-alive CAMUNDA_CLIENT_KEEPALIVE | duration | null | The time interval between keep-alive messages sent to the gateway. |
camunda.client.max-message-size CAMUNDA_CLIENT_MAXMESSAGESIZE | dataSize | "5MB" | A custom |
camunda.client.max-metadata-size CAMUNDA_CLIENT_MAXMETADATASIZE | dataSize | "16KB" | A custom |
camunda.client.message-time-to-live CAMUNDA_CLIENT_MESSAGETIMETOLIVE | duration | "PT1H" | The default time-to-live for a message when no value is provided. |
camunda.client.mode CAMUNDA_CLIENT_MODE | enum[self-managed, saas] | null | The client mode to use. If not set, |
camunda.client.override-authority CAMUNDA_CLIENT_OVERRIDEAUTHORITY | string | null | Overrides the authority used with TLS virtual hosting to change hostname verification during the TLS handshake. It does not change the actual host connected to. |
camunda.client.prefer-rest-over-grpc CAMUNDA_CLIENT_PREFERRESTOVERGRPC | boolean | false | If |
camunda.client.request-timeout CAMUNDA_CLIENT_REQUESTTIMEOUT | duration | "PT10S" | The request timeout to use when not overridden by a specific command. |
camunda.client.request-timeout-offset CAMUNDA_CLIENT_REQUESTTIMEOUTOFFSET | duration | "PT1S" | The request timeout client offset applies to commands that also pass the request timeout to the server. It ensures the client timeout occurs after the server timeout. For these commands, the client-side timeout equals the request timeout plus the offset. |
camunda.client.rest-address CAMUNDA_CLIENT_RESTADDRESS | url | "http://0.0.0.0:8080" | The REST API address of the Camunda instance that the client can connect to. The address must be an absolute URL, including the scheme. An alternative default is set by both |
camunda.client.tenant-id CAMUNDA_CLIENT_TENANTID | string | "<default>" | The tenant ID used for tenant-aware commands when no tenant ID is set. |
camunda.client.auth
Properties for authenticating the Camunda client.
Configuration Property/Environment Variable | Type | Default value | Description |
---|---|---|---|
camunda.client.auth.audience CAMUNDA_CLIENT_AUTH_AUDIENCE | string | null | The resource for which the access token must be valid. A default is set by |
camunda.client.auth.client-id CAMUNDA_CLIENT_AUTH_CLIENTID | string | null | The client ID to use when requesting an access token from the OAuth authorization server. |
camunda.client.auth.client-secret CAMUNDA_CLIENT_AUTH_CLIENTSECRET | string | null | The client secret to use when requesting an access token from the OAuth authorization server. |
camunda.client.auth.connect-timeout CAMUNDA_CLIENT_AUTH_CONNECTTIMEOUT | duration | "PT5S" | The connection timeout for requests to the OAuth credentials provider. |
camunda.client.auth.credentials-cache-path CAMUNDA_CLIENT_AUTH_CREDENTIALSCACHEPATH | string | "$HOME/.camunda/credentials" | The path to the credentials cache file. |
camunda.client.auth.keystore-key-password CAMUNDA_CLIENT_AUTH_KEYSTOREKEYPASSWORD | string | null | The keystore key password for the OAuth identity provider. |
camunda.client.auth.keystore-password CAMUNDA_CLIENT_AUTH_KEYSTOREPASSWORD | string | null | The keystore password for the OAuth identity provider. |
camunda.client.auth.keystore-path CAMUNDA_CLIENT_AUTH_KEYSTOREPATH | file | null | The path to the keystore for the OAuth identity provider. |
camunda.client.auth.method CAMUNDA_CLIENT_AUTH_METHOD | enum[none, basic, oidc] | null | The authentication method to use. If not set, it is detected based on the presence of a username, password, client ID, and client secret. A default is set by |
camunda.client.auth.password CAMUNDA_CLIENT_AUTH_PASSWORD | string | null | The password to be use for basic authentication. A default is set by |
camunda.client.auth.read-timeout CAMUNDA_CLIENT_AUTH_READTIMEOUT | duration | "PT5S" | The data read timeout for requests to the OAuth credentials provider. |
camunda.client.auth.resource CAMUNDA_CLIENT_AUTH_RESOURCE | string | null | The resource for which the access token must be valid. |
camunda.client.auth.scope CAMUNDA_CLIENT_AUTH_SCOPE | string | null | The scopes of the access token. |
camunda.client.auth.token-url CAMUNDA_CLIENT_AUTH_TOKENURL | url | null | The authorization server URL from which to request the access token. A default is set by |
camunda.client.auth.truststore-password CAMUNDA_CLIENT_AUTH_TRUSTSTOREPASSWORD | string | null | The truststore password for the OAuth identity provider. |
camunda.client.auth.truststore-path CAMUNDA_CLIENT_AUTH_TRUSTSTOREPATH | file | null | The path to the truststore for the OAuth identity provider. |
camunda.client.auth.username CAMUNDA_CLIENT_AUTH_USERNAME | string | null | The username to use for basic authentication. A default is set by |
camunda.client.auth.client-assertion
Properties for OIDC authentication using a client assertion instead of a client secret.
Configuration Property/Environment Variable | Type | Default value | Description |
---|---|---|---|
camunda.client.auth.client-assertion.keystore-key-alias CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREKEYALIAS | string | null | The alias of the key containing the certificate used to sign the client assertion certificate. If not set, the first alias from the keystore is used. |
camunda.client.auth.client-assertion.keystore-key-password CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREKEYPASSWORD | string | null | The password of the key referenced by the alias. If not set, the keystore password is used. |
camunda.client.auth.client-assertion.keystore-password CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREPASSWORD | string | null | The password of the referenced keystore. |
camunda.client.auth.client-assertion.keystore-path CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREPATH | file | null | The path to the keystore where the client assertion certificate is stored. |
camunda.client.cloud
Properties for connecting the Camunda client to SaaS. These are used to compose default connection details when the client is configured to camunda.client.mode: saas
.
Configuration Property/Environment Variable | Type | Default value | Description |
---|---|---|---|
camunda.client.cloud.cluster-id CAMUNDA_CLIENT_CLOUD_CLUSTERID | string | null | The cluster ID the Camunda client connects to. |
camunda.client.cloud.domain CAMUNDA_CLIENT_CLOUD_DOMAIN | string | null | The domain the Camunda client connects to. Change this to connect to a non-production instance of Camunda Cloud. |
camunda.client.cloud.port CAMUNDA_CLIENT_CLOUD_PORT | integer | null | The port the Camunda client connects to. |
camunda.client.cloud.region CAMUNDA_CLIENT_CLOUD_REGION | string | null | The region the Camunda client connects to. |
camunda.client.deployment
Properties for automatic deployment at startup.
Configuration Property/Environment Variable | Type | Default value | Description |
---|---|---|---|
camunda.client.deployment.enabled CAMUNDA_CLIENT_DEPLOYMENT_ENABLED | boolean | true | Indicates if deployment uses the |
camunda.client.worker.defaults
Global default properties for job workers registered to the Camunda client.
Configuration Property/Environment Variable | Type | Default value | Description |
---|---|---|---|
camunda.client.worker.defaults.auto-complete CAMUNDA_CLIENT_WORKER_DEFAULTS_AUTOCOMPLETE | boolean | null | Enable or disable automatic job completion after method invocation. |
camunda.client.worker.defaults.enabled CAMUNDA_CLIENT_WORKER_DEFAULTS_ENABLED | boolean | null | Enable or disable the job worker. |
camunda.client.worker.defaults.fetch-variables CAMUNDA_CLIENT_WORKER_DEFAULTS_FETCHVARIABLES | array[string] | null | List of variable names to fetch on job activation. When set in defaults, it extends the list of variables to fetch from the annotation. When set in an override, it replaces the list of variables to fetch. |
camunda.client.worker.defaults.force-fetch-all-variables CAMUNDA_CLIENT_WORKER_DEFAULTS_FORCEFETCHALLVARIABLES | boolean | null | Sets whether all variables are fetched. Overrides |
camunda.client.worker.defaults.max-jobs-active CAMUNDA_CLIENT_WORKER_DEFAULTS_MAXJOBSACTIVE | integer | 32 | The maximum number of jobs exclusively activated for this worker at the same time. |
camunda.client.worker.defaults.max-retries CAMUNDA_CLIENT_WORKER_DEFAULTS_MAXRETRIES | integer | null | The maximum number of retries before automatic responses (complete, fail, bpmn error) for jobs are no longer attempted. |
camunda.client.worker.defaults.name CAMUNDA_CLIENT_WORKER_DEFAULTS_NAME | string | "default" | The name of the worker owner. If set to default, it is generated as |
camunda.client.worker.defaults.poll-interval CAMUNDA_CLIENT_WORKER_DEFAULTS_POLLINTERVAL | duration | "PT0.1S" | The maximal interval between polls for new jobs. |
camunda.client.worker.defaults.request-timeout CAMUNDA_CLIENT_WORKER_DEFAULTS_REQUESTTIMEOUT | duration | null | The request timeout for the activate job request used to poll for new jobs. |
camunda.client.worker.defaults.stream-enabled CAMUNDA_CLIENT_WORKER_DEFAULTS_STREAMENABLED | boolean | false | Opt-in feature flag that enables job streaming. When enabled, the job worker uses both streaming and polling to activate jobs. A long-lived stream eagerly pushes new jobs, and polling retrieves jobs created before any streams were opened. |
camunda.client.worker.defaults.stream-timeout CAMUNDA_CLIENT_WORKER_DEFAULTS_STREAMTIMEOUT | duration | null | If streaming is enabled, sets the maximum lifetime for a stream. When this timeout is reached, the stream closes, and no more jobs are activated or received. If the worker is still open, a new stream opens immediately. |
camunda.client.worker.defaults.tenant-ids CAMUNDA_CLIENT_WORKER_DEFAULTS_TENANTIDS | array[string] | ["<default>"] | Sets the tenants for which the job worker is registered. When set in defaults, it extends the list of tenant IDs from the annotation. When set in override, it replaces the list of tenant IDs. |
camunda.client.worker.defaults.timeout CAMUNDA_CLIENT_WORKER_DEFAULTS_TIMEOUT | duration | "PT5M" | The time a job remains exclusively assigned to the worker. |
camunda.client.worker.defaults.type CAMUNDA_CLIENT_WORKER_DEFAULTS_TYPE | string | null | The type of jobs to work on. |
camunda.client.worker.override
Properties for overriding settings of individual job workers registered to the Camunda client. Overrides are specified as key-value pairs, where the key is the worker's job type and the values have the same properties as camunda.client.worker.defaults
each: camunda.client.worker.override.<job-type>.<property-name>: <property-value>
.
Deprecated properties
The following properties are deprecated. See the replacement property and related hints.
The deprecated properties are still effective if their replacement is not used yet. The SDK hints on the usage of deprecated properties by logging warn statements during startup.
camunda.client
Deprecated properties for the Camunda client.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.cluster-id CAMUNDA_CLIENT_CLUSTERID | string | camunda.client.cloud.cluster-id | |
camunda.client.region CAMUNDA_CLIENT_REGION | string | camunda.client.cloud.region | |
camunda.client.tenant-ids CAMUNDA_CLIENT_TENANTIDS | array[string] | camunda.client.worker.defaults.tenant-ids |
camunda.client.auth
Deprecated properties for authenticating the Camunda client.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.auth.issuer CAMUNDA_CLIENT_AUTH_ISSUER | url | camunda.client.auth.token-url |
camunda.client.cloud
Deprecated properties for connecting the Camunda client to SaaS. These are used to compose default connection details when the client is configured to camunda.client.mode: saas
.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.cloud.base-url CAMUNDA_CLIENT_CLOUD_BASEURL | string | camunda.client.cloud.domain |
camunda.client.identity
Deprecated properties for identity settings.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.identity.audience CAMUNDA_CLIENT_IDENTITY_AUDIENCE | string | camunda.client.auth.audience | Identity is now part of Camunda. |
camunda.client.identity.base-url CAMUNDA_CLIENT_IDENTITY_BASEURL | url | Identity is now part of Camunda. | |
camunda.client.identity.enabled CAMUNDA_CLIENT_IDENTITY_ENABLED | boolean | camunda.client.enabled | Identity is now part of Camunda. |
camunda.client.identity.scope CAMUNDA_CLIENT_IDENTITY_SCOPE | string | camunda.client.auth.scope | Identity is now part of Camunda. |
camunda.client.zeebe
Deprecated properties for Zeebe client settings.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.zeebe.audience CAMUNDA_CLIENT_ZEEBE_AUDIENCE | string | camunda.client.auth.audience | |
camunda.client.zeebe.base-url CAMUNDA_CLIENT_ZEEBE_BASEURL | url | camunda.client.rest-address | |
camunda.client.zeebe.ca-certificate-path CAMUNDA_CLIENT_ZEEBE_CACERTIFICATEPATH | string | camunda.client.ca-certificate-path | |
camunda.client.zeebe.enabled CAMUNDA_CLIENT_ZEEBE_ENABLED | boolean | camunda.client.enabled | |
camunda.client.zeebe.execution-threads CAMUNDA_CLIENT_ZEEBE_EXECUTIONTHREADS | integer | camunda.client.execution-threads | |
camunda.client.zeebe.grpc-address CAMUNDA_CLIENT_ZEEBE_GRPCADDRESS | url | camunda.client.grpc-address | |
camunda.client.zeebe.keep-alive CAMUNDA_CLIENT_ZEEBE_KEEPALIVE | duration | camunda.client.keep-alive | |
camunda.client.zeebe.max-message-size CAMUNDA_CLIENT_ZEEBE_MAXMESSAGESIZE | dataSize | camunda.client.max-message-size | |
camunda.client.zeebe.max-metadata-size CAMUNDA_CLIENT_ZEEBE_MAXMETADATASIZE | dataSize | camunda.client.max-metadata-size | |
camunda.client.zeebe.message-time-to-live CAMUNDA_CLIENT_ZEEBE_MESSAGETIMETOLIVE | duration | camunda.client.message-time-to-live | |
camunda.client.zeebe.override-authority CAMUNDA_CLIENT_ZEEBE_OVERRIDEAUTHORITY | string | camunda.client.override-authority | |
camunda.client.zeebe.prefer-rest-over-grpc CAMUNDA_CLIENT_ZEEBE_PREFERRESTOVERGRPC | boolean | camunda.client.prefer-rest-over-grpc | |
camunda.client.zeebe.request-timeout CAMUNDA_CLIENT_ZEEBE_REQUESTTIMEOUT | duration | camunda.client.request-timeout | |
camunda.client.zeebe.rest-address CAMUNDA_CLIENT_ZEEBE_RESTADDRESS | url | camunda.client.rest-address | |
camunda.client.zeebe.scope CAMUNDA_CLIENT_ZEEBE_SCOPE | string | camunda.client.auth.scope |
camunda.client.zeebe.defaults
Deprecated default properties for Zeebe job workers.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.zeebe.defaults.auto-complete CAMUNDA_CLIENT_ZEEBE_DEFAULTS_AUTOCOMPLETE | boolean | camunda.client.worker.defaults.auto-complete | |
camunda.client.zeebe.defaults.enabled CAMUNDA_CLIENT_ZEEBE_DEFAULTS_ENABLED | boolean | camunda.client.worker.defaults.enabled | |
camunda.client.zeebe.defaults.fetch-variables CAMUNDA_CLIENT_ZEEBE_DEFAULTS_FETCHVARIABLES | array[string] | camunda.client.worker.defaults.fetch-variables | |
camunda.client.zeebe.defaults.force-fetch-all-variables CAMUNDA_CLIENT_ZEEBE_DEFAULTS_FORCEFETCHALLVARIABLES | boolean | camunda.client.worker.defaults.force-fetch-all-variables | |
camunda.client.zeebe.defaults.max-jobs-active CAMUNDA_CLIENT_ZEEBE_DEFAULTS_MAXJOBSACTIVE | integer | camunda.client.worker.defaults.max-jobs-active | |
camunda.client.zeebe.defaults.max-retries CAMUNDA_CLIENT_ZEEBE_DEFAULTS_MAXRETRIES | integer | camunda.client.worker.defaults.max-retries | |
camunda.client.zeebe.defaults.name CAMUNDA_CLIENT_ZEEBE_DEFAULTS_NAME | string | camunda.client.worker.defaults.name | |
camunda.client.zeebe.defaults.poll-interval CAMUNDA_CLIENT_ZEEBE_DEFAULTS_POLLINTERVAL | duration | camunda.client.worker.defaults.poll-interval | |
camunda.client.zeebe.defaults.request-timeout CAMUNDA_CLIENT_ZEEBE_DEFAULTS_REQUESTTIMEOUT | duration | camunda.client.worker.defaults.request-timeout | |
camunda.client.zeebe.defaults.stream-enabled CAMUNDA_CLIENT_ZEEBE_DEFAULTS_STREAMENABLED | boolean | camunda.client.worker.defaults.stream-enabled | |
camunda.client.zeebe.defaults.stream-timeout CAMUNDA_CLIENT_ZEEBE_DEFAULTS_STREAMTIMEOUT | duration | camunda.client.worker.defaults.stream-timeout | |
camunda.client.zeebe.defaults.tenant-ids CAMUNDA_CLIENT_ZEEBE_DEFAULTS_TENANTIDS | array[string] | camunda.client.worker.defaults.tenant-ids | |
camunda.client.zeebe.defaults.timeout CAMUNDA_CLIENT_ZEEBE_DEFAULTS_TIMEOUT | duration | camunda.client.worker.defaults.timeout | |
camunda.client.zeebe.defaults.type CAMUNDA_CLIENT_ZEEBE_DEFAULTS_TYPE | string | camunda.client.worker.defaults.type |
camunda.client.zeebe.deployment
Deprecated deployment properties for Zeebe.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
camunda.client.zeebe.deployment.enabled CAMUNDA_CLIENT_ZEEBE_DEPLOYMENT_ENABLED | boolean | camunda.client.deployment.enabled |
camunda.client.zeebe.override
Deprecated properties for overriding individual job workers registered to the Camunda client. Replaced by camunda.client.worker.override
.
common
Deprecated common client properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
common.auth-url COMMON_AUTHURL | string | camunda.client.auth.token-url | |
common.base-url COMMON_BASEURL | string | camunda.client.rest-address | |
common.client-id COMMON_CLIENTID | string | camunda.client.auth.client-id | |
common.client-secret COMMON_CLIENTSECRET | string | camunda.client.auth.client-secret | |
common.enabled COMMON_ENABLED | boolean | camunda.client.enabled | |
common.password COMMON_PASSWORD | string | camunda.client.auth.password | |
common.url COMMON_URL | string | camunda.client.rest-address | The REST address is the unified endpoint for all interaction with Camunda. |
common.username COMMON_USERNAME | string | camunda.client.auth.username |
common.keycloak
Deprecated Keycloak-specific properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
common.keycloak.realm COMMON_KEYCLOAK_REALM | string | There is no keycloak-specific configuration for Camunda; the issuer is provided as a URL. | |
common.keycloak.token-url COMMON_KEYCLOAK_TOKENURL | string | camunda.client.auth.token-url | There is no keycloak-specific configuration for Camunda; the issuer is provided as a URL. |
common.keycloak.url COMMON_KEYCLOAK_URL | string | camunda.client.auth.token-url | There is no keycloak-specific configuration for Camunda; the issuer is provided as a URL. |
zeebe.client
Deprecated Zeebe client properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.apply-environment-variable-overrides ZEEBE_CLIENT_APPLYENVIRONMENTVARIABLEOVERRIDES | boolean | Only the environment variables belonging to the Spring SDK are applied. | |
zeebe.client.connection-mode ZEEBE_CLIENT_CONNECTIONMODE | string | camunda.client.mode | Client modes are now available. |
zeebe.client.default-job-worker-stream-enabled ZEEBE_CLIENT_DEFAULTJOBWORKERSTREAMENABLED | boolean | camunda.client.worker.defaults.stream-enabled | |
zeebe.client.default-job-worker-tenant-ids ZEEBE_CLIENT_DEFAULTJOBWORKERTENANTIDS | array[string] | camunda.client.worker.defaults.tenant-ids | |
zeebe.client.default-tenant-id ZEEBE_CLIENT_DEFAULTTENANTID | string | camunda.client.tenant-id | |
zeebe.client.enabled ZEEBE_CLIENT_ENABLED | boolean | camunda.client.enabled | |
zeebe.client.request-timeout ZEEBE_CLIENT_REQUESTTIMEOUT | duration | camunda.client.request-timeout |
zeebe.client.broker
Deprecated Zeebe broker properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.broker.gateway-address ZEEBE_CLIENT_BROKER_GATEWAYADDRESS | string | camunda.client.grpc-address | |
zeebe.client.broker.grpc-address ZEEBE_CLIENT_BROKER_GRPCADDRESS | url | camunda.client.grpc-address | |
zeebe.client.broker.keep-alive ZEEBE_CLIENT_BROKER_KEEPALIVE | duration | camunda.client.keep-alive | |
zeebe.client.broker.rest-address ZEEBE_CLIENT_BROKER_RESTADDRESS | url | camunda.client.rest-address |
zeebe.client.cloud
Deprecated Zeebe cloud connection properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.cloud.auth-url ZEEBE_CLIENT_CLOUD_AUTHURL | string | camunda.client.auth.token-url | |
zeebe.client.cloud.base-url ZEEBE_CLIENT_CLOUD_BASEURL | string | camunda.client.cloud.domain | |
zeebe.client.cloud.client-id ZEEBE_CLIENT_CLOUD_CLIENTID | string | camunda.client.auth.client-id | |
zeebe.client.cloud.client-secret ZEEBE_CLIENT_CLOUD_CLIENTSECRET | string | camunda.client.auth.client-secret | |
zeebe.client.cloud.cluster-id ZEEBE_CLIENT_CLOUD_CLUSTERID | string | camunda.client.cloud.cluster-id | |
zeebe.client.cloud.credentials-cache-path ZEEBE_CLIENT_CLOUD_CREDENTIALSCACHEPATH | string | camunda.client.auth.credentials-cache-path | |
zeebe.client.cloud.port ZEEBE_CLIENT_CLOUD_PORT | integer | The Zeebe client URL is now configured as HTTP/HTTPS URL. | |
zeebe.client.cloud.region ZEEBE_CLIENT_CLOUD_REGION | string | camunda.client.cloud.region | |
zeebe.client.cloud.scope ZEEBE_CLIENT_CLOUD_SCOPE | string | camunda.client.auth.scope |
zeebe.client.job
Deprecated Zeebe job worker properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.job.poll-interval ZEEBE_CLIENT_JOB_POLLINTERVAL | duration | camunda.client.worker.defaults.poll-interval | |
zeebe.client.job.timeout ZEEBE_CLIENT_JOB_TIMEOUT | duration | camunda.client.worker.defaults.timeout |
zeebe.client.message
Deprecated Zeebe message properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.message.max-message-size ZEEBE_CLIENT_MESSAGE_MAXMESSAGESIZE | integer | camunda.client.max-message-size | |
zeebe.client.message.time-to-live ZEEBE_CLIENT_MESSAGE_TIMETOLIVE | duration | camunda.client.message-time-to-live |
zeebe.client.security
Deprecated Zeebe security properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.security.cert-path ZEEBE_CLIENT_SECURITY_CERTPATH | string | camunda.client.ca-certificate-path | |
zeebe.client.security.override-authority ZEEBE_CLIENT_SECURITY_OVERRIDEAUTHORITY | string | camunda.client.override-authority | |
zeebe.client.security.plaintext ZEEBE_CLIENT_SECURITY_PLAINTEXT | boolean | plaintext is now determined by the URL protocol (HTTP or HTTPS). |
zeebe.client.worker
Deprecated Zeebe job worker properties.
Configuration Property/Environment Variable | Type | Replacement | Hint |
---|---|---|---|
zeebe.client.worker.default-name ZEEBE_CLIENT_WORKER_DEFAULTNAME | string | camunda.client.worker.defaults.name | |
zeebe.client.worker.default-type ZEEBE_CLIENT_WORKER_DEFAULTTYPE | string | camunda.client.worker.defaults.type | |
zeebe.client.worker.max-jobs-active ZEEBE_CLIENT_WORKER_MAXJOBSACTIVE | integer | camunda.client.worker.defaults.max-jobs-active | |
zeebe.client.worker.threads ZEEBE_CLIENT_WORKER_THREADS | integer | camunda.client.execution-threads |
zeebe.client.worker.override
Deprecated properties to override the individual job workers registered with the Camunda client. Replaced by camunda.client.worker.override
.