DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
Ignite ignite = ...
IgniteCompute compute = ignite.compute(ignite.cluster().forServers());
// Running compute with the provided jars.
compute.withClasspath("superapp_v1").() -> {
MyLibClass libClass = MyLibClass.getInstance();
// other code.
};
ServiceConfiguration serviceCfg = new ServiceConfiguration();
serviceCfg.setName("mysuperappService_v1");
serviceCfg.setService(new MySuperappServiceImpl());
serviceCfg.setIgniteClasspath("mysuperapp_v1");
ignite.services().deploy(serviceCfg); |
...
Provides a special tool - spark-submit to deploy and execute jobs inside cluster.
It supports --jars argument to list jar files required by job. (1)
...