Package org.apache.ignite.compute
Annotation Type ComputeTaskSpis
- 
 @Documented @Retention(RUNTIME) @Target(TYPE) public @interface ComputeTaskSpis This annotation allows task to specify what SPIs it wants to use. Starting withIgnite 2.1you can start multiple instances ofLoadBalancingSpi,FailoverSpi, andCheckpointSpi. If you do that, you need to tell a task which SPI to use (by default it will use the fist SPI in the list).
- 
- 
Optional Element SummaryOptional Elements Modifier and Type Optional Element Description StringcheckpointSpiStringfailoverSpiStringloadBalancingSpi
 
- 
- 
- 
Element Detail- 
loadBalancingSpiString loadBalancingSpi - Returns:
- Optional load balancing SPI name. By default, SPI name is equal
 to the name of the SPI class. You can change SPI name by explicitly
 supplying IgniteSpi.getName()parameter in grid configuration.
 - Default:
- ""
 
 
- 
 - 
- 
failoverSpiString failoverSpi - Returns:
- Optional failover SPI name. By default, SPI name is equal
 to the name of the SPI class. You can change SPI name by explicitly
 supplying IgniteSpi.getName()parameter in grid configuration.
 - Default:
- ""
 
 
- 
 - 
- 
checkpointSpiString checkpointSpi - Returns:
- Optional checkpoint SPI name. By default, SPI name is equal
 to the name of the SPI class. You can change SPI name by explicitly
 supplying IgniteSpi.getName()parameter in grid configuration.
 - Default:
- ""
 
 
- 
 
-