Skip to content

Rapidly deploy asynchronous tasks

Notifications You must be signed in to change notification settings

mre/multinode

 
 

Repository files navigation

What is Multinode?

Multinode lets you rapidly deploy cloud applications that perform asynchronous tasks.

Consider using Multinode if your application runs tasks that:

  • are triggered on demand by the user of the application;
  • take of the order of minutes or hours to complete;
  • require expensive hardware that should be provisioned only when required.

For example, Multinode can be used within:

  • a document/image/video processing app
  • a data analytics app
  • a scientific computing app

The main benefits of Multinode are:

  • Minimal boilerplate: Cloud API calls, cloud permissions, task lifecycle management and task data storage are abstracted away.
  • Responsive scaling: Compute resources are spun up as soon as a task is created, and torn down as soon as the task is complete.

Quick start

Deploy the Multinode control plane into your AWS account. (Instructions and Terraform code provided in the aws-infra folder.)

Install the Multinode Python package and authenticate with the Multinode control plane.

pip install multinode
multinode login

Define the task as a Python function.

# File: tasks/main.py

from multinode import Multinode

mn = Multinode()

@mn.function(cpu=4.0, memory="16 GiB")
def run_expensive_task(x):
    out =  # ... details of the task ...
    return out

Register the function with the Multinode control plane.

multinode deploy tasks/ --project-name=my_project

Implement the rest of the application, invoking the function when needed.

# File: application/main.py
# NB can be a different codebase from tasks/

from multinode import get_deployed_function

run_expensive_task = get_deployed_function(
    project_name="my_project",
    function_name="run_expensive_task"
)

# ... other code ...

# Start a task invocation.
# The computation runs on *remote* hardware, which is *provisioned on demand*.
invocation_id = run_expensive_task.start(x=10000)

# ... other code ...

# Get the status of the task invocation, and the result (if available)
invocation = run_expensive_task.get(invocation_id)
print(invocation.status)  # e.g. PENDING, RUNNING, SUCCEEDED
print(invocation.result)  # e.g. 12345 (if available), or None (if still running)

Further functionality

In addition to the above basic functionality, Multinode allows you to:

  • Expose progress updates from an in-flight task.
  • Cancel a task programmatically.
  • Implement retries in case of code errors or hardware failures.
  • Configure timeouts and concurrency limits.
  • Spawn subtasks from a parent task.
  • Inspect task logs.
  • Add custom Python dependencies and environment variables.
  • Manage the lifecycle of the deployed application.

For further details, see the reference guide or the worked example.

Approaches to scaling: When to use Multinode?

Multinode's approach: Direct resource provisioning. Multinode makes direct API calls to the cloud provider, to provision a new worker for each new task.

Alternative approach: Autoscaling a warm worker pool. Popular alternative frameworks for asynchronous tasks include Celery and Kafka consumers. Applications written in these frameworks usually run on a warm pool of workers. Each worker stays alive between task executions. The number of workers is autoscaled according to some metric (e.g. the number of pending tasks).

Advantages of Multinode's approach:

  • Scales up immediately when new tasks are created; scales down immediately when a task finishes.
  • No risk of interrupting a task execution when scaling down.

Advantages of the alternative warm-pool-based approach:

  • More suitable for processing a higher volume of shorter-lived tasks.
  • Can maintain spare capacity to mitigate against cold starts.

Architecture

Currently, Multinode runs on AWS, using ECS/Fargate for the asynchronous tasks.

A (slightly simplified) architecture diagram is shown below

architecture

With minimal API changes, the framework can be extended to other AWS compute engines (e.g. EC2 with GPUs), to other cloud providers, and to Kubernetes.

We may implement these extensions if there is demand. We also welcome contributions from the open source community in this regard.

Currently, you need to deploy Multinode in your own AWS account. (Terraform is provided in the aws-infra folder.) We may offer Multinode as a managed service in the future.

Programming language support

Python is the only supported language at the moment.

If you need to invoke a deployed Python function from an application written in another language such as Javascript, then you will need to use the REST API. (Or you can contribute a Javascript client!)

Let us know if you want to define your functions in other languages.

About

Rapidly deploy asynchronous tasks

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.7%
  • HCL 4.1%
  • Other 0.2%