You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pages/references/configuration.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ Global configurations are provided through env variables or a YAML file. ConfigM
41
41
|`AZURE_SERVICEBUS_RESOURCE_GROUP`| Azure resource group name |`nil`| Yes |
42
42
|`AZURE_SERVICEBUS_SUBSCRIPTION_ID`| Azure subscription ID |`nil`| Yes |
43
43
|`AZURE_SERVICEBUS_TENANT_ID`| Azure Active Directory tenant ID |`nil`| Yes |
44
-
|`DELIVERY_IDEMPOTENCY_KEY_TTL`| Time-to-live in seconds for delivery queue idempotency keys. Controls how long processed deliveries are remembered to prevent duplicate delivery attempts. Default: 86400 (24 hours). |`86400`| No |
44
+
|`DELIVERY_IDEMPOTENCY_KEY_TTL`| Time-to-live in seconds for delivery queue idempotency keys. Controls how long processed deliveries are remembered to prevent duplicate delivery attempts. Default: 3600 (1 hour). |`3600`| No |
45
45
|`DELIVERY_MAX_CONCURRENCY`| Maximum number of delivery attempts to process concurrently. |`1`| No |
46
46
|`DELIVERY_TIMEOUT_SECONDS`| Timeout in seconds for HTTP requests made during event delivery to webhook destinations. |`5`| No |
47
47
|`DEPLOYMENT_ID`| Optional deployment identifier for multi-tenancy. Enables multiple deployments to share the same infrastructure while maintaining data isolation. |`nil`| No |
@@ -106,7 +106,7 @@ Global configurations are provided through env variables or a YAML file. ConfigM
106
106
|`PUBLISH_GCP_PUBSUB_SERVICE_ACCOUNT_CREDENTIALS`| JSON string or path to a file containing GCP service account credentials for the Pub/Sub publish topic. Required if GCP Pub/Sub is chosen and not using implicit credentials. |`nil`| Conditional |
107
107
|`PUBLISH_GCP_PUBSUB_SUBSCRIPTION`| Name of the GCP Pub/Sub subscription to read published events from. Required if GCP Pub/Sub is the chosen publish MQ provider. |`nil`| Conditional |
108
108
|`PUBLISH_GCP_PUBSUB_TOPIC`| Name of the GCP Pub/Sub topic for publishing events. Required if GCP Pub/Sub is the chosen publish MQ provider. |`nil`| Conditional |
109
-
|`PUBLISH_IDEMPOTENCY_KEY_TTL`| Time-to-live in seconds for publish queue idempotency keys. Controls how long processed events are remembered to prevent duplicate processing. Default: 86400 (24 hours). |`86400`| No |
109
+
|`PUBLISH_IDEMPOTENCY_KEY_TTL`| Time-to-live in seconds for publish queue idempotency keys. Controls how long processed events are remembered to prevent duplicate processing. Default: 3600 (1 hour). |`3600`| No |
110
110
|`PUBLISH_MAX_CONCURRENCY`| Maximum number of messages to process concurrently from the publish queue. |`1`| No |
111
111
|`PUBLISH_RABBITMQ_EXCHANGE`| Name of the RabbitMQ exchange for the publish queue. |`nil`| No |
112
112
|`PUBLISH_RABBITMQ_QUEUE`| Name of the RabbitMQ queue for publishing events. Required if RabbitMQ is the chosen publish MQ provider. |`nil`| Conditional |
@@ -168,8 +168,8 @@ alert:
168
168
# Enables or disables audit logging for significant events.
169
169
audit_log: true
170
170
171
-
# Time-to-live in seconds for delivery queue idempotency keys. Controls how long processed deliveries are remembered to prevent duplicate delivery attempts. Default: 86400 (24 hours).
172
-
delivery_idempotency_key_ttl: 86400
171
+
# Time-to-live in seconds for delivery queue idempotency keys. Controls how long processed deliveries are remembered to prevent duplicate delivery attempts. Default: 3600 (1 hour).
172
+
delivery_idempotency_key_ttl: 3600
173
173
174
174
# Maximum number of delivery attempts to process concurrently.
175
175
delivery_max_concurrency: 1
@@ -456,8 +456,8 @@ portal:
456
456
# Required: Y
457
457
postgres: ""
458
458
459
-
# Time-to-live in seconds for publish queue idempotency keys. Controls how long processed events are remembered to prevent duplicate processing. Default: 86400 (24 hours).
460
-
publish_idempotency_key_ttl: 86400
459
+
# Time-to-live in seconds for publish queue idempotency keys. Controls how long processed events are remembered to prevent duplicate processing. Default: 3600 (1 hour).
460
+
publish_idempotency_key_ttl: 3600
461
461
462
462
publishmq:
463
463
# Configuration for using AWS SQS as the publish message queue. Only one publish MQ provider should be configured.
Copy file name to clipboardExpand all lines: internal/config/config.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -84,8 +84,8 @@ type Config struct {
84
84
DeliveryTimeoutSecondsint`yaml:"delivery_timeout_seconds" env:"DELIVERY_TIMEOUT_SECONDS" desc:"Timeout in seconds for HTTP requests made during event delivery to webhook destinations." required:"N"`
85
85
86
86
// Idempotency
87
-
PublishIdempotencyKeyTTLint`yaml:"publish_idempotency_key_ttl" env:"PUBLISH_IDEMPOTENCY_KEY_TTL" desc:"Time-to-live in seconds for publish queue idempotency keys. Controls how long processed events are remembered to prevent duplicate processing. Default: 86400 (24 hours)." required:"N"`
88
-
DeliveryIdempotencyKeyTTLint`yaml:"delivery_idempotency_key_ttl" env:"DELIVERY_IDEMPOTENCY_KEY_TTL" desc:"Time-to-live in seconds for delivery queue idempotency keys. Controls how long processed deliveries are remembered to prevent duplicate delivery attempts. Default: 86400 (24 hours)." required:"N"`
87
+
PublishIdempotencyKeyTTLint`yaml:"publish_idempotency_key_ttl" env:"PUBLISH_IDEMPOTENCY_KEY_TTL" desc:"Time-to-live in seconds for publish queue idempotency keys. Controls how long processed events are remembered to prevent duplicate processing. Default: 3600 (1 hour)." required:"N"`
88
+
DeliveryIdempotencyKeyTTLint`yaml:"delivery_idempotency_key_ttl" env:"DELIVERY_IDEMPOTENCY_KEY_TTL" desc:"Time-to-live in seconds for delivery queue idempotency keys. Controls how long processed deliveries are remembered to prevent duplicate delivery attempts. Default: 3600 (1 hour)." required:"N"`
89
89
90
90
// Destination Registry
91
91
DestinationMetadataPathstring`yaml:"destination_metadata_path" env:"DESTINATION_METADATA_PATH" desc:"Path to the directory containing custom destination type definitions. Overrides 'destinations.metadata_path' if set." required:"N"`
0 commit comments