You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aidp_migration/databricks_to_aidp/README.md
+14-4Lines changed: 14 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,13 @@
1
1
# Databricks to AIDP migration utility
2
2
3
-
This utilities provides a sample implementation for exporting files and notebooks from a Databricks workspace to Oracle AI Data Platform (AIDP). It preserves the folder structure and converts notebooks to .ipynb format while supporting optional string replacement during the export process
3
+
Utility to Export Databricks files(non-data) and notebooks to Oracle AI Data Platform (AIDP)
4
+
* Preserves folder structure
5
+
* Converts notebooks to .ipynb
6
+
* No code translation; files are moved as-is
7
+
* Optional plain string replacement from a provided mapping. Replacement is simple find/replace (no parsing)
8
+
* This is not intended for Data Files.
4
9
10
+
Run this notebook from AIDP. The user must have read permission on Databricks Path and write permission on the AIDP destination path.
5
11
6
12
## Running the Samples
7
13
@@ -16,20 +22,24 @@ DATABRICKS_PATH: Source path in Databricks workspace to export
16
22
17
23
AIDP_PATH: Target directory path in AIDP
18
24
19
-
dbx_to_aidp_replacement_mappings: Optional String Replacement mappings if you need to modify content during export:
25
+
dbx_to_aidp_replacement_mappings: Optional string-replacement map used during export. Basic example could be to rewrite path prefixes of referenced files/notebooks.
20
26
21
27
## Documentation
22
28
23
29
### Recursive Export
24
30
Traverses nested directory structures in Databricks workspace
25
31
### Format Preservation
26
-
Exports notebooks as Jupyter.ipynbfiles
32
+
Exports notebooks as Jupyter(.ipynb) and other files as is.
27
33
### String Replacement
28
34
Supports source-to-target string mapping during export
29
35
### Structure Maintenance
30
36
Recreates the original folder hierarchy in AIDP
31
37
### Multiple File Types
32
-
Handles both notebooks and regular files
38
+
Handles both notebooks and regular files.
39
+
### No Code Conversion
40
+
It does not do any code conversion.
41
+
### Permissions
42
+
Need read permission on databricks and write permission on AIDP.
0 commit comments