Lari Hotari
04/29/2026, 2:06 PMLari Hotari
04/30/2026, 7:22 PMSlackbot
05/08/2026, 9:58 AM่งๆๅฎข
05/14/2026, 7:05 AMAmanda
05/21/2026, 7:13 PMDaniel Kaminski
05/26/2026, 2:32 PMFabri
05/27/2026, 6:05 AMGrรฉgory (Kosmos)
05/28/2026, 5:07 PMdocker run -it -p 6650:6650 -p 8080:8080 -e TZ=Europe/Paris --mount source=pulsardata,target=/pulsar/data --mount source=pulsarconf,target=/pulsar/conf apachepulsar/pulsar:3.0.17 bin/pulsar standalone --advertised-address localhost
Then I have these 3 java files, I run SimpleConsumerWithRetry, and gets logs :
>> pulsar client created
>> pulsar DLQ consumer created
>> pulsar consumer created
Then I run SimpleProducer, here the logs
>> pulsar client created
>> pulsar producer created
deliver msg 9:1:-1, value:Message de 2026-05-28T19:00:43.731+02
Then I look at the log of SimpleConsumerWithRetry :
2026-05-28T19:00:43.798+02: receive msg 9:1:-1, value:Message de 2026-05-28T19:00:43.731+02
2026-05-28T19:00:45.902+02: receive msg 18:0:-1, value:Message de 2026-05-28T19:00:43.731+02
2026-05-28T19:00:48.899+02: receive msg 18:1:-1, value:Message de 2026-05-28T19:00:43.731+02
So far so good : 2 retries, with 2 seconds delay.
But the message is not send to the DLQ (at least, not the DLQ topic I'm listening).
If I ask the topic list curl --silent -XGET <http://localhost:8080/admin/v2/persistent/public/testns> there is only 2 topics (I was expected 3 : main, retry, dlq) : ["<persistent://public/testns/test>","<persistent://public/testns/test-subs-DLQ>"] .
I tried also to not listen to test-subs-DLQ (removing one consumer in the code) and there is only 1 topic created (test). Any clue ?Grรฉgory (Kosmos)
05/29/2026, 3:42 PMreconsumeLater. When I set delayTime to around 1 second (or less), the message is redelivered immediately. I wrote a small integration test to reproduce this behavior (the test requires a valid Docker installation to start a Pulsar container).
When running the TestReconsumeLater.java test, if the constant REDELIVER_DELAY is set to less than 1010 ms, the test fails because the message is redelivered in 34 ms instead of the expected delay:
java.lang.AssertionError:
Expected actual:
34L
to be greater than or equal to:
1009L
Is this a known limitation ? Is it documented anywhere ?Ali Ahmed
06/06/2026, 6:37 AMIn this work, we introduce Nexus, a transparent data management layer that sits between event streaming systems (e.g., Kafka, Pulsar, Pravega) and external storage (e.g., object stores). Nexus intercepts tiered storage operations and runs in-line programmable functions on chunks of stream data across the edge-cloud. This enables things like high data compression without impacting the hot path, semantic routing or labeling of stream data using AI, or caching/buffering stream data close to the edge. The policy-based, programmable nature of the system allows for exploring many other potential use cases.
any one head about this ?Lari Hotari
06/08/2026, 7:09 PMLari Hotari
06/08/2026, 7:10 PMLari Hotari
06/12/2026, 12:10 PMLari Hotari
06/16/2026, 10:13 PMAmanda
06/18/2026, 5:15 PMLari Hotari
06/18/2026, 9:35 PMLari Hotari
06/23/2026, 11:25 PMtopic:// topic type that sizes itself to its load. The broker splits hot key-range segments and merges cold ones at runtime, no downtime, no broken per-key ordering, and no partition count to pick up front.
โจ New V5 Java client (pulsar-client-v5) โ a clean-slate redesign with three purpose-built consumers (Stream, Queue, Checkpoint). Works with your existing topics, a consumer can subscribe to a whole namespace, and it's the only way to use Scalable Topics. The classic client API stays fully supported.
๐ข๏ธ Oxia is now the recommended metadata store for new clusters, with live zero-downtime migration from ZooKeeper. ZooKeeper is still fully supported; the etcd backend is removed in 5.0.
Also notable: structured (slog-style) logging, IO connectors in a dedicated repo, the javax.* โ jakarta.* migration, and a move from Maven to Gradle.
๐ Full announcement: https://pulsar.apache.org/blog/2026/06/23/announcing-apache-pulsar-5-0-m1/
โฌ๏ธ Download: https://pulsar.apache.org/download
๐ Release notes: https://pulsar.apache.org/release-notes/versioned/pulsar-5.0.0-M1/
Thanks to everyone who made this release possible! pulsarlogosindhushree
07/03/2026, 5:56 AMLari Hotari
07/06/2026, 11:41 AMLari Hotari
07/06/2026, 11:42 AMRyan Azzopardi
07/07/2026, 1:21 PMmaster version is now supporting components.function_worker (separate functions component instead of embedded functions in the broker). However this has not been published in the latest release 4.6.1 version yet. Are there any plans to release it please?
ThanksLari Hotari
07/13/2026, 1:07 PMsindhushree
07/15/2026, 7:18 AMLari Hotari
07/16/2026, 10:54 PMLari Hotari
08/03/2026, 9:21 PMLari Hotari
08/03/2026, 9:21 PMDaniel Kaminski
08/17/2026, 2:48 PMAmanda
08/20/2026, 3:06 PMAmanda
08/20/2026, 5:46 PMsindhushree
09/07/2026, 5:09 AM