-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] Enable support for Serverless Compute (#165)
* remove Cluster dependency for Notebook / default Brickflow task black * add warnings for notebook tasks * environments * temporary disable tests in pre-commit * drop "baseEnvironment" key * bump to latest CLI version * update model and bundles to use 0.228.0 version of Databricks CLI * handle absence of git_conf in the local deployments * fix model generator * fix existing tests TODO: new bundle tests for serverless TODO: deploy classic and serverless workflows TODO: validate backwards compatibility * update params * example workflow tests * too-many-lines * rename project * update tests * update tests * finally fixed tests * --extra-index-url and tests * exclude nones during bundle generation * serverless faq --------- Co-authored-by: Maxim Mityutko <[email protected]>
- Loading branch information
1 parent
039b74c
commit d5715f1
Showing
25 changed files
with
1,640 additions
and
615 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
examples/brickflow_serverless_examples/.brickflow-project-root.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# DO NOT MODIFY THIS FILE - IT IS AUTO GENERATED BY BRICKFLOW AND RESERVED FOR FUTURE USAGE | ||
projects: | ||
brickflow-serverless-demo: | ||
brickflow_version: auto | ||
deployment_mode: bundle | ||
enable_plugins: true | ||
name: brickflow-serverless-demo | ||
path_from_repo_root_to_project_root: . | ||
path_project_root_to_workflows_dir: workflows | ||
version: v1 |
Oops, something went wrong.