Skip to content

featurebyte.DatabricksDetails

class DatabricksDetails(
*,
host: str,
http_path: str,
catalog_name: str,
schema_name: str,
storage_path: str
)

Description

Model for details used to connect to a Databricks data source.

Parameters

  • host: str
    Databricks host. This is typically the URL you use to go to to access your databricks environment.

  • http_path: str
    Databricks compute resource URL.

  • catalog_name: str
    The name of the catalog to use for creation of output tables.

  • schema_name: str
    The name of the schema to use for creation of output tables.

  • storage_path: str
    DBFS path to use for file storage.

Examples

>>> details = fb.DatabricksDetails(
...     host="<host_name>",
...     http_path="<http_path>",
...     catalog_name="hive_metastore",
...     schema_name="<schema_name>",
...     storage_path="dbfs:/FileStore/<schema_name>",
... )