Getting Started |
The API for .NET can run on multiple job schedulers, either in a cluster or embedded mode. Choose a job scheduler from below for instructions to get started.
The API for .NET offers two ways to run parallel jobs. The cluster job scheduler allows jobs to run across machines on the network. The embedded job scheduler allows jobs to run as child processes of the client application. The design of IJobScheduler offers a common interface that can target multiple types of job schedulers. Code written once against the IJobScheduler interface can be deployed on a variety of job schedulers in the future.
Note |
---|
Switching between the cluster job scheduler and embedded job scheduler can be very useful. For instance, targeting the embedded job scheduler can ensure an application works locally on one machine. When you are ready to deploy and test if your code works on multiple machines, you can switch to the cluster scheduler. See instructions on how to do this. |
Advantages:
Disadvantages:
Advantages:
Disadvantages:
Note |
---|
Throughout the help system, we will note features that are only available on the cluster job scheduler and not available in the embedded job scheduler. |
STK Parallel Computing Server 2.9 API for .NET