-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Open
Labels
lifecycle/staletype/bugThe PR fixed a bug or issue reported a bugThe PR fixed a bug or issue reported a bug
Description
Describe the bug
The storage space of partition is much larger than 4G and entries is much larger than 50000 (managedLedgerMaxSizePerLedgerMbytes=4096, managedLedgerMaxEntriesPerLedger=50000 in broker.conf).
broker.conf
managedLedgerMaxEntriesPerLedger=50000
managedLedgerMaxSizePerLedgerMbytes=4096
producer code:
producer = client.newProducer(Schema.STRING)
.topic(topic)
.producerName(producerName)
.sendTimeout(0, TimeUnit.SECONDS)
.enableBatching(true)
.batchingMaxMessages(1000)
.compressionType(CompressionType.ZSTD)
.blockIfQueueFull(true)
.create();
To Reproduce
Steps to reproduce the behavior:
- Start producer
- View the segmented storage of the partition in pulsar manager
- The storage space of partition is much larger than 4G
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
lifecycle/staletype/bugThe PR fixed a bug or issue reported a bugThe PR fixed a bug or issue reported a bug
