withExecutionStrategy

Set the ExtractionExecutionStrategy used to dispatch the stateless per-chunk extraction stage of process.

Defaults to SerialExtractionStrategy (the fully sequential default). ParallelExtractionStrategy and BatchedExtractionStrategy only affect the extraction stage; the resolver-touching resolution stage always stays serial, so cross-chunk entity identity is preserved regardless of strategy.

Enabling Parallel/Batched(batchSize > 1) in production is gated on verifying extractor thread-safety — see ExtractionExecutionStrategy for the thread-safety verification requirement.

Return

A new pipeline instance with the strategy registered

Parameters

strategy

the execution strategy to use