mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
22a5f5258d
In a multi-main setup, we have the following issue. The user's client connects to main A and runs a test webhook, so main A starts listening for a webhook call. A third-party service sends a request to the test webhook URL. The request is forwarded by the load balancer to main B, who is not listening for this webhook call. Therefore, the webhook call is unhandled. To start addressing this, cache test webhook registrations, using Redis for queue mode and in-memory for regular mode. When the third-party service sends a request to the test webhook URL, the request is forwarded by the load balancer to main B, who fetches test webhooks from the cache and, if it finds a match, executes the test webhook. This should be transparent - test webhook behavior should remain the same as so far. Notes: - Test webhook timeouts are not cached. A timeout is only relevant to the process it was created in, so another process retrieving from Redis a "foreign" timeout will be unable to act on it. A timeout also has circular references, so `cache-manager-ioredis-yet` is unable to serialize it. - In a single-main scenario, the timeout remains in the single process and is cleared on test webhook expiration, successful execution, and manual cancellation - all as usual. - In a multi-main scenario, we will need to have the process who received the webhook call send a message to the process who created the webhook directing this originating process to clear the timeout. This will likely be implemented via execution lifecycle hooks and Redis channel messages checking session ID. This implementation is out of scope for this PR and will come next. - Additional data in test webhooks is not cached. From what I can tell, additional data is not needed for test webhooks to be executed. Additional data also has circular references, so `cache-manager-ioredis-yet` is unable to serialize it. Follow-up to: #8155 |
||
---|---|---|
.. | ||
collaboration | ||
controllers | ||
databases/utils | ||
decorators | ||
execution-lifecyle | ||
ExternalSecrets | ||
license | ||
middleware | ||
push | ||
repositories | ||
services | ||
shared | ||
shutdown | ||
utilities | ||
ActiveExecutions.test.ts | ||
CredentialsHelper.test.ts | ||
CredentialTypes.test.ts | ||
CurlConverterHelper.test.ts | ||
Helpers.ts | ||
InternalHooks.test.ts | ||
License.test.ts | ||
PermissionChecker.test.ts | ||
PostHog.test.ts | ||
SourceControl.test.ts | ||
Telemetry.test.ts | ||
TestWebhooks.test.ts | ||
UserManagementMailer.test.ts | ||
utils.test.ts | ||
WebhookHelpers.test.ts | ||
webhooks.test.ts | ||
WorkflowExecuteAdditionalData.test.ts | ||
WorkflowHelpers.test.ts | ||
workflowHistoryHelper.test.ts | ||
WorkflowRunner.test.ts |