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-toolsfrom onelake_shortcut_tools.compatibility_checker import CompatibilityChecker
df = CompatibilityChecker(
catalog_names=['catalog1', 'catalog2'],
schema_names=[],
fabric_runtime='1.3'
).evaluate()
display(df)- Databricks Unity Catalog is currently required.
hive_metastoresupport will be added if there's interest. Please submit and issue! - Apache Spark Runtime for Fabric 1.2, 1.3, and 2.0 EPP are currently supported.
