databricks-cli
databricks-cli copied to clipboard
(Legacy) Command Line Interface for Databricks
Must be missing something obvious here but how do i capture the errors, with a view to handling them during scripting from the Databricks CLI please? i.e. ``` databricks workspace...
Hi there! I noticed that [PyPi has a Wheel file available for Python 2.7](https://pypi.org/project/databricks-cli/#files). Would it be possible to also have a Wheel file for Python 3?
On using the command `databricks configure --token` after the user has entered the link to the databricks workspace and the token, a message should pop up telling whether this operation...
Using Databricks CLI 0.16.2 with Python3.10 I get the following error: ``` ❯ ~/.local/bin/databricks configure --token Traceback (most recent call last): File "/home/ben/.local/bin/databricks", line 5, in from databricks_cli.cli import cli...
I am using the Databricks CLI programmatically, behind a corporate proxy. Since the CLI is based upon the `requests` module, I am guessing (not sure?) that I can set a...
Currently methods `ClusterService.create_cluster()`, `ClusterService.edit_cluster()`, `InstancePoolService.create_instance_pool()`, and `InstancePoolService.edit_instance_pool()` only support API calls to AWS-based databricks workspaces. I'd recommend adding `azure_attributes` and `gcp_attributes` as parameters to these functions to support API calls...
When you run "databricks configure --token" and provide host + token in the prompts, authentication details are stored in %%USERPROFILE%%\.databrickscfg file. However, the token is stored incorrectly:  In order...
`list` command says it shows groups in a workspace, but actually tries to show groups in entire organization, and fails with token scope not high enough. what i would like...
If you forget to put `https://` in the host here: ``` api_client = ApiClient( host = "SOMETHING_WITHOUT_HTTPS://", token = os.getenv('DATABRICKS_TOKEN') ) ``` You'll get this exception as `self.url` is broken:...
The CLI comes pre-installed in recent runtimes, like 10.4 LTS. However, no credentials are set up by default:  When running the CLI on a cluster this _could_ get sensible...