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
The Fluvio benchmark tool currently stores all generated records in memory during benchmarking. When running benchmarks with a high num-records value, this approach can quickly exhaust available memory, causing system instability or crashes.
Suggested Improvements:
Write records to a temporary file instead of keeping them entirely in memory.
Alternatively, generate records on-the-fly during benchmarking, avoiding large memory allocations.