Databricks
flyteplugins-databricks
This plugin provides Databricks integration for Flyte, enabling you to run Spark jobs on Databricks as Flyte tasks.
pip install flyteplugins-databricksQuick Start(example, may need adjustment)
See full examplespip install flyteplugins-databricks
from flytekit import task, workflow
from flyteplugins.databricks import Databricks, DatabricksConnector
config = Databricks(...)
@task
def my_task() -> None:
...
@workflow
def my_workflow() -> None:
my_task()Available Imports (2)
Configuration for a Databricks task.
extends dataclass — configuration or data structure for plugin setup
from flyteplugins.databricks import Databricks
Backend connector for Databricks.
from flyteplugins.databricks import DatabricksConnector
Related Plugins
AWS Batch
Flyte backend can be connected with AWS batch. Once enabled, it allows you to run flyte task on AWS batch service
Memory Machine Cloud
Flyte Connector plugin to allow executing Flyte tasks using MemVerge Memory Machine Cloud.
AWS Athena
Flyte backend can be connected with Athena. Once enabled, it allows you to query AWS Athena service (Presto + ANSI SQL Support) and retrieve typed schema (optionally).
AWS SageMaker
The plugin currently features a SageMaker deployment connector.