public interface DeploymentSpi extends IgniteSpi
Class loaders that are in charge of loading task classes (and other classes)
can be deployed directly by calling register(ClassLoader, Class)
method or
by SPI itself, for example by asynchronously scanning some folder for new tasks.
When method findResource(String)
is called by the system, SPI must return a
class loader associated with given class. Every time a class loader
gets (re)deployed or released, callbacks
DeploymentListener.onUnregistered(ClassLoader)
} must be called by SPI.
If peer class loading is enabled (which is default behavior, see
IgniteConfiguration.isPeerClassLoadingEnabled()
), then it is usually
enough to deploy class loader only on one grid node. Once a task starts executing
on the grid, all other nodes will automatically load all task classes from
the node that initiated the execution. Hot redeployment is also supported
with peer class loading. Every time a task changes and gets redeployed on a
node, all other nodes will detect it and will redeploy this task as well.
Note that peer class loading comes into effect only if a task was
not locally deployed, otherwise, preference will always be given to
local deployment.
Ignite provides following GridDeploymentSpi
implementations out of the box:
Ignite.configuration()
method to check its configuration properties or call other non-SPI
methods. Note again that calling methods from this interface on the obtained instance can lead
to undefined behavior and explicitly not supported.Modifier and Type | Method and Description |
---|---|
DeploymentResource |
findResource(String rsrcName)
Finds class loader for the given class.
|
boolean |
register(ClassLoader ldr,
Class<?> rsrc)
Registers a class loader with this SPI.
|
void |
setListener(@Nullable DeploymentListener lsnr)
Sets or unsets deployment event listener.
|
boolean |
unregister(String rsrcName)
Unregisters all class loaders that have a class with given name or have
a class with give
ComputeTaskName value. |
getName, getNodeAttributes, onClientDisconnected, onClientReconnected, onContextDestroyed, onContextInitialized, spiStart, spiStop
DeploymentResource findResource(String rsrcName)
rsrcName
- Class name or class alias to find class loader for.null
if not deployed.boolean register(ClassLoader ldr, Class<?> rsrc) throws IgniteSpiException
The array of classes passed in should be checked for presence of
ComputeTaskName
annotations. The classes that have this annotation
should be accessible by this name from findResource(String)
method.
ldr
- Class loader to register.rsrc
- Class that should be checked for aliases.
Currently the only alias in the system is ComputeTaskName
for
task classes; in future, there may be others.True
if resource was registered.IgniteSpiException
- If registration failed.boolean unregister(String rsrcName)
ComputeTaskName
value.rsrcName
- Either class name or ComputeTaskName
value for a class
whose class loader needs to be unregistered.True
if resource was unregistered.void setListener(@Nullable @Nullable DeploymentListener lsnr)
lsnr
- Listener for deployment events. null
to unset the listener.
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.7.2 Release Date : February 6 2019