From 14799ff41ff2a06b2d868609bfea5eac8a55dca5 Mon Sep 17 00:00:00 2001 From: Juri Dispan Date: Sat, 28 Dec 2024 14:36:38 +0100 Subject: [PATCH] dbx: add page (#15345) * dbx: add page * fix syntax * missing dot * Update pages/common/dbx.md Co-authored-by: K.B.Dharun Krishna --------- Co-authored-by: K.B.Dharun Krishna --- pages/common/dbx.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/dbx.md diff --git a/pages/common/dbx.md b/pages/common/dbx.md new file mode 100644 index 0000000000..4ada140160 --- /dev/null +++ b/pages/common/dbx.md @@ -0,0 +1,21 @@ +# dbx + +> Interact with the Databricks platform. +> Note: this tool has been retired and it is recommended to use Databricks Asset Bundles instead. +> More information: . + +- Create a new `dbx` project in the current working directory: + +`dbx configure --profile {{DEFAULT}}` + +- Sync local files from the specified path to DBFS and watch for changes: + +`dbx sync dbfs --source {{path/to/directory}} --dest {{path/to/remote_directory}}` + +- Deploy the specified workflow to artifact storage: + +`dbx deploy {{workflow_name}}` + +- Launch the specified workflow after deploying it: + +`dbx launch {{workflow_name}}`