Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python Wheel Install Command #286

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Commits on Apr 1, 2020

  1. Python Wheel Install Command

    Allows installation of wheels onto databricks clusters by using standard Python setuptools framework. E.g.
    
    ```
    python setup.py databricks_install --cluster-id abcd --databricks-cli-profile staging
    ```
    
    will do the following:
    
    1) build wheel
    2) use `staging` profile from CLI or throw error with instructions to configre
    3) upload it to DBFS location (configurable as well)
    4) install it on cluster `abcd` as `whl` library
    
    TODO:
    1) wait until library is successfully installed or throw error
    2) install library on cluster by name
    3) install library on clusters by tag (e.g. team tags)
    nfx committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    5d830ee View commit details
    Browse the repository at this point in the history
  2. Fix tests

    nfx committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    d5174fd View commit details
    Browse the repository at this point in the history
  3. Fixed linters

    nfx committed Apr 1, 2020
    Configuration menu
    Copy the full SHA
    a1e7fe3 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2020

  1. Last line style fix

    nfx committed Apr 2, 2020
    Configuration menu
    Copy the full SHA
    4a85751 View commit details
    Browse the repository at this point in the history