From dabd8678222a2c141cc623094534304883530e7e Mon Sep 17 00:00:00 2001 From: Martin Zurowietz Date: Fri, 18 Jul 2025 14:26:30 +0200 Subject: [PATCH 1/2] Add warning on shared Redis connection References https://github.com/laravel/pulse/issues/457 --- pulse.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pulse.md b/pulse.md index 215b7fb2b16..051a1553500 100644 --- a/pulse.md +++ b/pulse.md @@ -486,6 +486,9 @@ Pulse will use your default [Redis connection](/docs/{{version}}/redis#configura PULSE_REDIS_CONNECTION=pulse ``` +> [!WARNING] +> When Pulse uses the same Redis connection than your queue and the Pulse queue recorder is enabled, calls to `Bus::batch()` may produce an error. You should configure Pulse to use a different Redis connection in this case. + When using the Redis ingest, you will need to run the `pulse:work` command to monitor the stream and move entries from Redis into Pulse's database tables. ```php From 17a2799953e2d7473cc48c3f3890a51d6037ae6c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 18 Jul 2025 10:51:51 -0500 Subject: [PATCH 2/2] Update pulse.md --- pulse.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulse.md b/pulse.md index 051a1553500..25e6db4b189 100644 --- a/pulse.md +++ b/pulse.md @@ -487,7 +487,7 @@ PULSE_REDIS_CONNECTION=pulse ``` > [!WARNING] -> When Pulse uses the same Redis connection than your queue and the Pulse queue recorder is enabled, calls to `Bus::batch()` may produce an error. You should configure Pulse to use a different Redis connection in this case. +> When using the Redis ingest driver, your Pulse installation should always use a different Redis connection than your Redis powered queue, if applicable. When using the Redis ingest, you will need to run the `pulse:work` command to monitor the stream and move entries from Redis into Pulse's database tables.