Fabric OneLake Connector¶
FabricLakehouseConnector ¶
Bases: Connector
Connector for Microsoft Fabric Lakehouses via OneLake URIs.
Accepts either onelake://...
URIs or abfss://...@onelake.dfs.fabric.microsoft.com/...
.
Supports Delta (default), Parquet, and CSV.
read ¶
read(spark: SparkSession, source: Any, *, fmt: Optional[str] = None, schema: Optional[Any] = None, source_config: Optional[Mapping[str, Any]] = None, options: Optional[Mapping[str, Any]] = None, **kwargs: Any) -> DataFrame
Read a dataset from a Fabric OneLake-backed location.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
spark
|
SparkSession
|
Active |
required |
source
|
Any
|
OneLake or abfss-on-OneLake path. |
required |
fmt
|
Optional[str]
|
Optional format override: |
None
|
schema
|
Optional[Any]
|
Optional schema to enforce when reading structured data. |
None
|
source_config
|
Optional[Mapping[str, Any]]
|
Unused for Fabric, accepted for interface compatibility. |
None
|
options
|
Optional[Mapping[str, Any]]
|
Additional Spark read options. |
None
|
Source code in src/spark_fuse/io/fabric.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
|
validate_path ¶
validate_path(path: str) -> bool
Return True if the path looks like a valid OneLake URI.
Source code in src/spark_fuse/io/fabric.py
28 29 30 |
|
write ¶
write(df: DataFrame, path: str, *, fmt: Optional[str] = None, mode: str = 'error', **options: Any) -> None
Write a dataset to a Fabric OneLake-backed location.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df
|
DataFrame
|
DataFrame to write. |
required |
path
|
str
|
Output OneLake path. |
required |
fmt
|
Optional[str]
|
Optional format override: |
None
|
mode
|
str
|
Save mode, e.g. |
'error'
|
**options
|
Any
|
Additional Spark write options. |
{}
|
Source code in src/spark_fuse/io/fabric.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|