-
Notifications
You must be signed in to change notification settings - Fork 511
Closed
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Description
Microsoft recently released "in great fanfare" OneLake which is a managed lakehouse offering based on ADLS Gen2.
Reading works fine but writing generate an error, the Parquet is written but in the log, we get a tmp json file
using Polars writer which is based on Deltalake writer I believe get this error
ldf.write_delta("/lakehouse/default/Files/regionn")
PyDeltaTableError Traceback (most recent call last)
Cell In[26], line 1
----> 1 ldf.write_delta("/lakehouse/default/Files/regionn")
File ~/cluster-env/trident_env/lib/python3.10/site-packages/polars/dataframe/frame.py:3363, in DataFrame.write_delta(self, target, mode, overwrite_schema, storage_options, delta_write_options)
3360 if data_schema == table_schema.to_pyarrow(as_large_types=True):
3361 data_schema = table_schema.to_pyarrow()
-> 3363 write_deltalake(
3364 table_or_uri=target,
3365 data=data,
3366 mode=mode,
3367 schema=data_schema,
3368 overwrite_schema=overwrite_schema,
3369 storage_options=storage_options,
3370 **delta_write_options,
3371 )
File ~/cluster-env/trident_env/lib/python3.10/site-packages/deltalake/writer.py:322, in write_deltalake(table_or_uri, data, schema, partition_by, filesystem, mode, file_options, max_partitions, max_open_files, max_rows_per_file, min_rows_per_group, max_rows_per_group, name, description, configuration, overwrite_schema, storage_options, partition_filters)
302 ds.write_dataset(
303 data,
304 base_dir="/",
(...)
318 max_partitions=max_partitions,
319 )
321 if table is None:
--> 322 _write_new_deltalake(
323 table_uri,
324 schema,
325 add_actions,
326 mode,
327 partition_by or [],
328 name,
329 description,
330 configuration,
331 storage_options,
332 )
333 else:
334 table._table.create_write_transaction(
335 add_actions,
336 mode,
(...)
339 partition_filters,
340 )
PyDeltaTableError: Failed to read delta log object: Generic LocalFileSystem error: Unable to rename file: No such file or directory (os error 2)
cnolanminich, sdebruyn, keen85 and romeucampos
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request