You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AutoMQ provides the automq-perf-test.sh script to test performance under different scenarios. Currently, it supports testing "catch-up read" (cold read) scenarios by:
Sending a batch of messages.
Delaying consumption until messages have accumulated for a specified period.
Observing consumption throughput and its impact on producers.
However, the current implementation starts all consumers simultaneously, which does not reflect real-world scenarios where only a subset of topics experience catch-up reads at the same time.
Required Changes
Add a new optional command-line argument (e.g., --consumers-during-catchup) to the automq-perf-test.sh script to control the num of consumers activated during catch-up read scenarios.
The text was updated successfully, but these errors were encountered:
Background
AutoMQ provides the
automq-perf-test.sh
script to test performance under different scenarios. Currently, it supports testing "catch-up read" (cold read) scenarios by:However, the current implementation starts all consumers simultaneously, which does not reflect real-world scenarios where only a subset of topics experience catch-up reads at the same time.
Required Changes
Add a new optional command-line argument (e.g.,
--consumers-during-catchup
) to theautomq-perf-test.sh
script to control the num of consumers activated during catch-up read scenarios.The text was updated successfully, but these errors were encountered: