opensearch-project/OpenSearch

[Feature Request] Migrate gRPC transport executor to ForkJoinPool for improved performance

Open

#19.370 aperta il 22 set 2025

Vedi su GitHub
 (3 commenti) (0 reazioni) (2 assegnatari)Java (1505 fork)batch import
Search:Performanceenhancementgood first issue

Metriche repository

Star
 (8123 star)
Metriche merge PR
 (Merge medio 5g 9h) (266 PR mergiate in 30 g)

Descrizione

Is your feature request related to a problem? Please describe

The gRPC transport currently uses a FixedExecutorBuilder for processing gRPC service calls. While this provides significant improvements over the previous directExecutor() approach, ForkJoinPool would offer even greater performance benefits, such as better load balancing through built-in mechanisms like work-stealing.

Describe the solution you'd like

Once PR #19008 to add ForkJoinPool support is merged, the gRPC transport should migrate from using FixedExecutorBuilder to ForkJoinPoolExecutorBuilder.

Related component

Search:Performance

Describe alternatives you've considered

No response

Additional context

No response

Guida contributor