fastflowtransform.table_formats.spark_delta¶
DeltaFormatHandler ¶
Bases: SparkFormatHandler
Delta Lake format handler using delta-spark's DeltaTable API.
Responsibilities
- save_df_as_table() with format("delta").
- incremental_insert(): default SparkFormatHandler implementation (INSERT INTO).
- incremental_merge(): uses DeltaTable.merge() with whenMatchedUpdateAll / whenNotMatchedInsertAll.
Source code in src/fastflowtransform/table_formats/spark_delta.py
28 29 30 31 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 71 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |
save_df_as_table ¶
save_df_as_table(table_name, df)
Save DataFrame as a managed Delta table.
For existing tables we bypass Hive's ALTER TABLE path by overwriting the physical Delta location directly (with schema overwrite) and refreshing the table metadata. New tables go through saveAsTable so they are registered in the metastore.
Source code in src/fastflowtransform/table_formats/spark_delta.py
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | |
incremental_merge ¶
incremental_merge(table_name, select_body_sql, unique_key)
Delta MERGE implementation using DeltaTable.merge API.
Semantics
- If unique_key is empty -> falls back to insert-only semantics.
- Otherwise:
MERGE INTO table AS t
USING (
) AS s ON AND-joined equality on unique_key WHEN MATCHED THEN UPDATE SET * WHEN NOT MATCHED THEN INSERT *
Source code in src/fastflowtransform/table_formats/spark_delta.py
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |
run_sql ¶
run_sql(sql)
Execute SQL via the injected runner (guardable in the executor).
Source code in src/fastflowtransform/table_formats/base.py
45 46 47 | |
qualify_identifier ¶
qualify_identifier(table_name, *, database=None)
Return the physical table identifier for Spark APIs (unquoted).
Source code in src/fastflowtransform/table_formats/base.py
50 51 52 | |
format_identifier_for_sql ¶
format_identifier_for_sql(table_name, *, database=None)
Return a SQL-safe identifier (per-part quoted) for the table.
Source code in src/fastflowtransform/table_formats/base.py
54 55 56 57 58 59 60 | |
allows_unmanaged_paths ¶
allows_unmanaged_paths()
Whether storage.path overrides should be honored for this format.
Source code in src/fastflowtransform/table_formats/base.py
69 70 71 | |