Default authentication
The Databricks SDK exposes a Workspace Client class that you will use throughout this course to interact with a Databricks workspace. By default, this class is instantiated without parameters, as the SDK automatically retrieves the environment variables needed to authenticate to a Databricks workspace.
The variable dbrx_host, containing the address of the Databricks host, has been preloaded.
Latihan ini merupakan bagian dari kursus
Databricks with the Python SDK
Instruksi latihan
- Import the class from the Databricks SDK that contains the Workspace Client.
- Use the
oslibrary to set the authentication environment variable to the predefineddbrx_host. - Create a Workspace Client object using default authentication.
Latihan interaktif langsung praktik
Cobalah latihan ini dengan melengkapi kode contoh ini.
import os
# Import the workspace client
from databricks.sdk import ____
# Set the Databricks authentication environment variables
os.environ['____'] = dbrx_host
# Instantiate the Workspace Client
workspace_client = ____()