Tensorlake Cloud provides robust Data Ingestion APIs and a platform to build and run data processing workflows.
Tensorlake Serverless Workflows allows to build, deploy, and scale data processing applications effortlessly and efficiently.
- Effortless Scalability: Automatically scale based on demand.
- Cost Efficiency: Pay only for compute resources used.
- Simplified Deployment: Focus on building AI applications, not infrastructure.
- High Availability: Built-in redundancy and fault tolerance.
- Seamless Integration: Integrate with existing tools and workflows.
Define a workflow by implementing its data transformation steps as Python functions decorated with @tensorlake_function()
.
Connect the outputs of a function to the inputs of another function using edges in a Graph
object, which represents the full workflow.
A function can do anything from calling a web service to loading a data model into a GPU and running inference on it. Tensorlake will provision the required compute resources and run as many copies of a function as needed.
The example below creates a workflow with the following steps:
- Generate a sequence of numbers from 0 to the supplied value.
- Compute square of each number.
- Sum all the squares.
- Send the sum to a web service.
Install Tensorlake SDK and CLI into your development environment:
pip install tensorlake
import os
import urllib.request
from typing import List, Optional
import click # Used for pretty printing to console.
from tensorlake import Graph, RemoteGraph, tensorlake_function
# Define a function for each workflow step
# 1. Generate a sequence of numbers from 0 to the supplied value.
@tensorlake_function()
def generate_sequence(last_sequence_number: int) -> List[int]:
# This function impelements a map operation because it returns a list.
return [i for i in range(last_sequence_number + 1)]
# 2. Compute square of each number.
@tensorlake_function()
def squared(number: int) -> int:
# This function transforms each element of the sequence because it accepts
# only a single int as a parameter.
return number * number
# 3. Sum all the squares.
@tensorlake_function(accumulate=int)
def sum_all(current_sum: int, number: int) -> int:
# This function implements a reduce operation.
# It is called for each element of the sequence. The returned value is passed
# to the next call in `current_sum` parameter. The first call gets `current_sum`=int()
# which is 0. The return value of the last call is the result of the reduce operation.
return current_sum + number
# 4. Send the sum to a web service.
@tensorlake_function()
def send_to_web_service(value: int) -> str:
# This function accepts the sum from the previous step and sends it to a web service.
url = f"https://example.com/?number={value}"
req = urllib.request.Request(url, method="GET")
with urllib.request.urlopen(req) as response:
return response.read()
# Define the full workflow using Graph object
def create_workflow() -> Graph:
g = Graph(
name="example_workflow",
start_node=generate_sequence,
description="Example workflow",
)
g.add_edge(generate_sequence, squared)
g.add_edge(squared, sum_all)
g.add_edge(sum_all, send_to_web_service)
return g
# Invoke the workflow for sequence [0..200].
def run_workflow(g: Graph) -> None:
invocation_id: str = g.run(last_sequence_number=200, block_until_done=True)
# Get the output of the the workflow (of its last step).
last_step_output: str = g.output(invocation_id, "send_to_web_service")
click.secho("Web service response:", fg="green", bold=True)
click.echo(last_step_output[0])
click.echo()
# Get the sum.
sum_output: str = g.output(invocation_id, "sum_all")
click.secho("Sum:", fg="green", bold=True)
click.echo(sum_output[0])
click.echo()
The workflow code is available at examples/readme_example.py. The following code was added there to create the workflow and run it locally on your computer:
if __name__ == "__main__":
local_workflow: Graph = create_workflow()
run_workflow(local_workflow)
Run the workflow locally:
python examples/readme_example.py
In console output you can see that the workflow computed the sum and got a response from the web service. Running a workflow locally is convenient during its development. There's no need to wait until the workflow gets deployed to see how it works.
To run the workflow on tensorlake cloud it first needs to get deployed there.
- Register at Tensorlake Cloud.
- Get an API key at API keys page.
- Set
TENSORLAKE_API_KEY
environment variable in your shell session:
export TENSORLAKE_API_KEY="Paste your API key here"
- Deploy the workflow to Tensorlake Cloud:
tensorlake-cli prepare examples/readme_example.py
tensorlake-cli deploy examples/readme_example.py
- The following code was added to the workflow file to run it on Tensorlake Cloud:
def fetch_workflow_from_cloud() -> Optional[RemoteGraph]:
return RemoteGraph.by_name("example_workflow")
if __name__ == "__main__":
cloud_workflow: RemoteGraph = fetch_workflow_from_cloud()
run_workflow(cloud_workflow)
- Run the workflow on Tensorlake Cloud:
python examples/readme_example.py
Tensorlake Cloud is based on Open Source Indexify and is fully compatible with it. You can setup your own Indexify cluster e.g. with Kubernetes and run workflows on it.
Running workflows on Tensorlake Cloud comes with the following benefits:
- Automatically scale compute resources to the required number of workflow invocations.
- Pay only for compute resources used by the workflow. No need to pay for idle resources.
- Automated workflow deployments using a few CLI commands.
- High availability of Tensorlake Cloud.