Table of Contents

Enum JobExecutorType

Namespace
Apache.Ignite.Compute
Assembly
Apache.Ignite.dll

Job executor type.

public enum JobExecutorType

Fields

DotNetSidecar = 1

Side-car .NET job executor. Executes .NET jobs in a separate process.

Starts the process on demand. Requires .NET runtime to be installed.

JavaEmbedded = 0

Embedded Java job executor. Executes Java jobs in the same process and JVM where the Ignite node is running.

WasmEmbedded = 2

Embedded WASM job executor. Executes WASM jobs in the same process and JVM where the Ignite node is running.

JobClassName should contain function specification in the following format: <wasm_file_name>:<exported_function_name>:<result_type>:<calling_convention>. Use WasmJobDescriptor to create such a descriptor.

Allowed result types are: int8, int16, int32, int64, float32, float64, timestamp, string, bytes.

Allowed calling conventions are: generic, rust_wasm_bindgen, go_wasi_reactor, clang_wasi, generic_command.