Describe the issue
Currently, there is no benchmark coverage for ExecutorEventHandler.HandleEntityEvent, which makes it difficult to understand its performance characteristics such as throughput and memory allocation behavior.
Since event handling is a core part of the engine, having a baseline benchmark would help identify bottlenecks and track performance over time.
Why this matters
- Provides visibility into execution time and allocation patterns
- Helps detect performance regressions in future changes
- Useful for evaluating tradeoffs (e.g., concurrency and context handling)
Proposed solution
Add benchmark tests for HandleEntityEvent, including:
- a sequential benchmark for baseline performance
- a parallel benchmark to simulate concurrent workloads
Additional context
This is particularly relevant in light of recent discussions around throughput and event processing behavior in the engine.
Describe the issue
Currently, there is no benchmark coverage for
ExecutorEventHandler.HandleEntityEvent, which makes it difficult to understand its performance characteristics such as throughput and memory allocation behavior.Since event handling is a core part of the engine, having a baseline benchmark would help identify bottlenecks and track performance over time.
Why this matters
Proposed solution
Add benchmark tests for
HandleEntityEvent, including:Additional context
This is particularly relevant in light of recent discussions around throughput and event processing behavior in the engine.