Blueprints

Upload a Parquet file to Databricks

Source

yaml
id: upload-parquet-to-databricks
namespace: company.team

inputs:
  - id: my_file
    type: FILE

tasks:
  - id: upload_file
    type: io.kestra.plugin.databricks.dbfs.Upload
    authentication:
      token: "{{ secret('DATABRICKS_TOKEN') }}"
    host: "{{ secret('DATABRICKS_HOST') }}"
    from: "{{ inputs.my_file }}"
    to: /Shared/myFile.parquet

About this blueprint

Databricks

This flow will upload a local Parquet file to Databricks File System (DBFS).

Upload

More Related Blueprints

New to Kestra?

Use blueprints to kickstart your first workflows.

Get started with Kestra