help wantedtype/bug
Métricas do repositório
- Stars
- (13.697 stars)
- Métricas de merge de PR
- (Mesclagem média 3d 10h) (146 fundiu PRs em 30d)
Description
Describe the bug Delayed messages to shared topic breaks subsequence of messages and delivered earlier than expected.
To Reproduce Steps to reproduce the behavior:
- Setup local standalone pulsar
- Send messages every 20ms with the same deliverAt timestamp 10000ms and with payload of millisecond when sending was started.
- Log received messages payload.
I start receiving all messages after 9 seconds and it I have in log:
9001ms
1ms
21ms
41ms
61ms
81ms
...
8981ms
(here should be 9001ms)
9021ms
9041ms
...
Expected behavior Two expectations:
- Most important I expect first message to be received is message '1ms' and message '9001ms' after '8981ms'.
- I expect start receiving messages after 10 seconds
Issue is reproduced in 2.8.0 and 2.9.1