dask_awkward.to_parquet
dask_awkward.to_parquet¶
- dask_awkward.to_parquet(data, path, storage_options=None, write_metadata=False, compute=True, prefix=None)[source]¶
Write data to Parquet format.
- Parameters
data (dask_awkward.Array) – Array to write to parquet.
path (str) – Root directory of location to write to
storage_options (dict) – Arguments to pass to fsspec for creating the filesystem (see
fsspecdocumentation).write_metadata (bool) – Whether to create _metadata and _common_metadata files
compute (bool) – Whether to immediately start writing or to return the dask collection which can be computed at the user’s discression.
- Returns
If compute is
False, adask_awkward.Scalarrepresenting the process will be returned, if compute isTruethen the return isNone.- Return type
None or dask_awkward.Scalar