Hello, I use delta on my local machine and I would like to clone a table, however the cloning is not working.I have the last version of delta installed (delta-spark==2.0.0) but the clone method does not exist in the python module.With this code :delt...
Hi, I would like to use Delta Sharing but I have not understood how to configure the Delta Sharing Server. Is that fully managed by Databricks ? If so I tried to share a table :%sql
create share first_shareand I got the following error message with t...
Hi, I would like to import a python file to Databricks with a Azure DevOps Release Pipeline.Within the pipeline I execute a python script which contains this code :import sys
import os
import base64
import requests
dbw_url = sys.argv[1] # https://a...
Hi,I would like to import a python notebook to my databricks workspace from my local machine using a python script.I manages to create the folder but then I have a status code 400 when I try to import a file :create_folder = requests.post(
'{}/api/...
Hi, How is that possible to disable SSL Certification.With databricks API I got this error :SSLCertVerificationError
SSLCertVerificationError: ("hostname 'https' doesn't match either of '*.numericable.fr', 'numericable.fr'",)
MaxRetryError: HTTPS...
I finally found. What I needed was there :from databricks_cli.jobs.api import JobsApi
from databricks_cli.sdk.api_client import ApiClientBut I had to guess based on what you told me about databricks_cli.workspace.api
Hi @Hubert Dudek ,Do you know where I can find the documentation about the pythno api for databricks ?Besides, do you know how to launch a job or notebook remotely with python api ?Thanks