Documentation Index
Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
Use this file to discover all available pages before exploring further.
Session.read_parquet(path, /, *, client_side_encryption=None, columns=frozendict({}), data_types=frozendict({}), default_values=frozendict({}), keys=frozenset({}), partitioning=None, table_name=None, **kwargs)
Read a Parquet file into a table. The alternative is:load() call inside a data_transaction().
- Parameters:
- client_side_encryption (ClientSideEncryptionConfig | None) – See
atoti_parquet.ParquetLoad.client_side_encryption. - columns (Mapping [str , ColumnName ]) – See
atoti_parquet.ParquetLoad.columns. - data_types (Mapping *[*ColumnName , DataType ]) – See
create_table()’s data_types. - default_values (Mapping *[*ColumnName , Constant | None ]) – See
create_table()’s default_values. - keys (AbstractSet *[*ColumnName ] | Sequence *[*ColumnName ]) – See
create_table()’s keys. - partitioning (str | None) – See
create_table()’s partitioning. - path (Path | str) – See
atoti_parquet.ParquetLoad.path. - table_name (TableName | None) – See
create_table()’s name. - kwargs (Unpack [ _ReadParquetPrivateParameters ])
- client_side_encryption (ClientSideEncryptionConfig | None) – See
- Return type: Table