Uses of Class
com.pervasive.datarush.operators.ParallelismStrategy
-
Packages that use ParallelismStrategy Package Description com.pervasive.datarush.operators Provides classes and interfaces for developing dataflow operators. -
-
Uses of ParallelismStrategy in com.pervasive.datarush.operators
Fields in com.pervasive.datarush.operators declared as ParallelismStrategy Modifier and Type Field Description static ParallelismStrategy
ParallelismStrategy. ACCEPT_SOURCE
Uses the maximum of the input ports' parallelism as this operator's max parallelism.static ParallelismStrategy
ParallelismStrategy. CONFIGURED
Indicates that the operator should use whatever parallelism has been explicitly configured viaOperatorSettings.getMaxParallelism()
, defaulting toEngineConfig#getParallelism()
.static ParallelismStrategy
ParallelismStrategy. NEGOTIATE_BASED_ON_SOURCE
Uses the maximum of the input ports' parallelism as this operator's max parallelism.static ParallelismStrategy
ParallelismStrategy. NON_PARALLELIZABLE
Indicates that the operator is non-parallelizable.Methods in com.pervasive.datarush.operators with parameters of type ParallelismStrategy Modifier and Type Method Description void
IterativeMetadataContext. parallelize(ParallelismStrategy strategy)
Controls the parallelism of the ports of this operator.void
StreamingMetadataContext. parallelize(ParallelismStrategy strategy)
Controls the parallelism of this operator.
-