n8n/packages
Iván Ovejero 22a5f5258d
feat(core): Cache test webhook registrations (#8176)
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
2024-01-03 16:58:33 +01:00
..
@n8n 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00
@n8n_io/eslint-config ci: Disable import/no-extraneous-dependencies in frontend tests (no-changelog) (#8182) 2023-12-29 10:45:55 +01:00
cli feat(core): Cache test webhook registrations (#8176) 2024-01-03 16:58:33 +01:00
core 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00
design-system 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00
editor-ui 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00
node-dev 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00
nodes-base 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00
workflow 🚀 Release 1.23.0 (#8205) 2024-01-03 13:41:28 +01:00