feat: Add message size distribution support for realistic workload te… #443
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds support for variable message size distributions in the OpenMessaging Benchmark framework, enabling more realistic workload testing that mirrors production message size patterns.
it also bumps maven and lombok
Motivation
Real-world messaging workloads rarely have uniform message sizes. Production systems typically see a distribution of message sizes - many small messages, fewer medium-sized ones, and occasional large payloads. The existing benchmark framework only supports fixed message sizes, which can lead to misleading benchmark results that do not reflect actual production behavior.
Changes
New Feature:
messageSizeDistributionConfigurationInstead of specifying a single
messageSize, users can now define a weighted distribution of message sizes in their workload YAML:Key Implementation Details
MessageSizeDistributionclass (benchmark-framework/src/main/java/.../utils/payload/MessageSizeDistribution.java)B,KB,MBsuffixes)Workloadclass updatesmessageSizeDistributionfield (Map<String, Integer>)usesDistribution()helper methodmessageSizeDistributionandmessageSizeare mutually exclusive - if distribution is set, messageSize is ignoredWorkloadGeneratorupdatesLocalWorkerupdatesProducerWorkAssignmentupdatespayloadWeightsfield to transmit distribution weights to workersBackward Compatibility
messageSizecontinue to work unchangedpayloadWeightsis providedTesting
Added comprehensive unit tests in
MessageSizeDistributionTest.java:Files Changed
Workload.javamessageSizeDistributionfield andusesDistribution()methodWorkloadGenerator.javaMessageSizeDistribution.javaLocalWorker.javaProducerWorkAssignment.javapayloadWeightsfieldMessageSizeDistributionTest.javapom.xmlExample Usage