OneLake Shortcut Tools is library to help enable using OneLake Shortcuts in Microsoft Fabric.
- Databricks Delta Table Compatibility Checker: Quickly determine the compatibility of Databricks Delta tables with different Fabric runtime versions. Classification of read vs. write compatibility and whether or not droppable features exist which can allow for the table to be read or written to via Fabric Spark.
pip install onelake-shortcut-tools
from onelake_shortcut_tools.compatibility_checker import CompatibilityChecker
df = CompatibilityChecker(
catalog_names=['catalog1', 'catalog2'],
schema_names=[],
fabric_runtime='1.2'
).evaluate()
display(df)
- Databricks Unity Catalog is currently required for the beta release. Support for
hive_metastore
objects will be added in the next release. - Apache Spark Runtime for Fabric 1.2 and 1.3 Preview are currently supported.