-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(datasets): Added
DeltaTableDataSet
(#243)
* feat: added delta table dataset Signed-off-by: Afaque Ahmad <[email protected]> * test: lint Signed-off-by: k9 <[email protected]> * chore: adjusted docstring line length Signed-off-by: Afaque Ahmad <[email protected]> * chore: fix requirements order Signed-off-by: k9 <[email protected]> * chore: add .pylintrc to ignore line too long for url Signed-off-by: k9 <[email protected]> * chore: remove invalid noqa comment Signed-off-by: k9 <[email protected]> * fix: do not import TableNotFoundError from private module to avoid pylint complains Signed-off-by: k9 <[email protected]> * fix: fixed linting issues Signed-off-by: Afaque Ahmad <[email protected]> * Move pylintrc to pyproject.toml Signed-off-by: Nok <[email protected]> * Fix pylint config Signed-off-by: Nok <[email protected]> * test: use mocker fixture to replace unittest.mock Signed-off-by: k9 <[email protected]> * chore: lint for line too long Signed-off-by: k9 <[email protected]> * test: increase coverage for pandas delta table dataset Signed-off-by: Kyle Chung <[email protected]> * chore: lint Signed-off-by: Kyle Chung <[email protected]> --------- Signed-off-by: Afaque Ahmad <[email protected]> Signed-off-by: k9 <[email protected]> Signed-off-by: Afaque Ahmad <[email protected]> Signed-off-by: Nok <[email protected]> Signed-off-by: Kyle Chung <[email protected]> Co-authored-by: k9 <[email protected]> Co-authored-by: Nok <[email protected]>
- Loading branch information
1 parent
73262bc
commit 8fb01ef
Showing
4 changed files
with
433 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
258 changes: 258 additions & 0 deletions
258
kedro-datasets/kedro_datasets/pandas/deltatable_dataset.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
"""``DeltaTableDataSet`` loads/saves delta tables from/to a filesystem (e.g.: local, | ||
S3, GCS), Databricks unity catalog and AWS Glue catalog respectively. It handles | ||
load and save using a pandas dataframe. | ||
""" | ||
from copy import deepcopy | ||
from typing import Any, Dict, List, Optional | ||
|
||
import pandas as pd | ||
from deltalake import DataCatalog, DeltaTable, Metadata | ||
from deltalake.exceptions import TableNotFoundError | ||
from deltalake.writer import write_deltalake | ||
from kedro.io.core import AbstractDataSet, DataSetError | ||
|
||
|
||
class DeltaTableDataSet(AbstractDataSet): # pylint:disable=too-many-instance-attributes | ||
"""``DeltaTableDataSet`` loads/saves delta tables from/to a filesystem (e.g.: local, | ||
S3, GCS), Databricks unity catalog and AWS Glue catalog respectively. It handles | ||
load and save using a pandas dataframe. When saving data, you can specify one of two | ||
modes: overwrite(default), append. If you wish to alter the schema as a part of | ||
overwrite, pass overwrite_schema=True. You can overwrite a specific partition by using | ||
mode=overwrite together with partition_filters. This will remove all files within the | ||
matching partition and insert your data as new files. | ||
Example usage for the `YAML API`_: | ||
.. code-block:: yaml | ||
boats_filesystem: | ||
type: pandas.DeltaTableDataSet | ||
filepath: data/01_raw/boats | ||
credentials: dev_creds | ||
load_args: | ||
version: 7 | ||
save_args: | ||
mode: overwrite | ||
boats_databricks_unity_catalog: | ||
type: pandas.DeltaTableDataSet | ||
credentials: dev_creds | ||
catalog_type: UNITY | ||
database: simple_database | ||
table: simple_table | ||
save_args: | ||
mode: overwrite | ||
trucks_aws_glue_catalog: | ||
type: pandas.DeltaTableDataSet | ||
credentials: dev_creds | ||
catalog_type: AWS | ||
catalog_name: main | ||
database: db_schema | ||
table: db_table | ||
save_args: | ||
mode: overwrite | ||
Example usage for the `Python API`_: | ||
:: | ||
>>> from kedro_datasets.pandas import DeltaTableDataSet | ||
>>> import pandas as pd | ||
>>> | ||
>>> data = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5], 'col3': [5, 6]}) | ||
>>> data_set = DeltaTableDataSet(filepath="test") | ||
>>> | ||
>>> data_set.save(data) | ||
>>> reloaded = data_set.load() | ||
>>> assert data.equals(reloaded) | ||
>>> | ||
>>> new_data = pd.DataFrame({'col1': [7, 8], 'col2': [9, 10], 'col3': [11, 12]}) | ||
>>> data_set.save(new_data) | ||
>>> data_set.get_loaded_version() | ||
""" | ||
|
||
DEFAULT_WRITE_MODE = "overwrite" | ||
ACCEPTED_WRITE_MODES = ("overwrite", "append") | ||
|
||
DEFAULT_LOAD_ARGS: Dict[str, Any] = {} | ||
DEFAULT_SAVE_ARGS: Dict[str, Any] = {"mode": DEFAULT_WRITE_MODE} | ||
|
||
def __init__( # pylint: disable=too-many-arguments | ||
self, | ||
filepath: Optional[str] = None, | ||
catalog_type: Optional[DataCatalog] = None, | ||
catalog_name: Optional[str] = None, | ||
database: Optional[str] = None, | ||
table: Optional[str] = None, | ||
load_args: Optional[Dict[str, Any]] = None, | ||
save_args: Optional[Dict[str, Any]] = None, | ||
credentials: Optional[Dict[str, Any]] = None, | ||
fs_args: Optional[Dict[str, Any]] = None, | ||
) -> None: | ||
"""Creates a new instance of ``DeltaTableDataSet`` | ||
Args: | ||
filepath (str): Filepath to a delta lake file with the following accepted protocol: | ||
``S3``: | ||
`s3://<bucket>/<path>` | ||
`s3a://<bucket>/<path>` | ||
``Azure``: | ||
`az://<container>/<path>` | ||
`adl://<container>/<path>` | ||
`abfs://<container>/<path>` | ||
``GCS``: | ||
`gs://<bucket>/<path>` | ||
If any of the prefix above is not provided, `file` protocol (local filesystem) | ||
will be used. | ||
catalog_type (DataCatalog, optional): `AWS` or `UNITY` if filepath is not provided. | ||
Defaults to None. | ||
catalog_name (str, optional): the name of catalog in AWS Glue or Databricks Unity. | ||
Defaults to None. | ||
database (str, optional): the name of the database (also referred to as schema). | ||
Defaults to None. | ||
table (str, optional): the name of the table. | ||
load_args (Dict[str, Any], optional): Additional options for loading file(s) | ||
into DeltaTableDataSet. `load_args` accepts `version` to load the appropriate | ||
version when loading from a filesystem. | ||
save_args (Dict[str, Any], optional): Additional saving options for saving into | ||
Delta lake. Here you can find all available arguments: | ||
https://delta-io.github.io/delta-rs/python/api_reference.html#writing-deltatables | ||
credentials (Dict[str, Any], optional): Credentials required to get access to | ||
the underlying filesystem. E.g. for ``GCSFileSystem`` it should look like | ||
`{"token": None}`. | ||
fs_args (Dict[str, Any], optional): Extra arguments to pass into underlying | ||
filesystem class constructor. | ||
(e.g. `{"project": "my-project"}` for ``GCSFileSystem``). | ||
Raises: | ||
DataSetError: Invalid configuration supplied (through DeltaTableDataSet validation) | ||
""" | ||
self._filepath = filepath | ||
self._catalog_type = catalog_type | ||
self._catalog_name = catalog_name | ||
self._database = database | ||
self._table = table | ||
self._fs_args = deepcopy(fs_args) or {} | ||
self._credentials = deepcopy(credentials) or {} | ||
|
||
# DeltaTable cannot be instantiated from an empty directory | ||
# for the first time creation from filepath, we need to delay the instantiation | ||
self.is_empty_dir: bool = False | ||
self._delta_table: Optional[DeltaTable] = None | ||
|
||
self._load_args = deepcopy(self.DEFAULT_LOAD_ARGS) | ||
if load_args: | ||
self._load_args.update(load_args) | ||
|
||
self._save_args = deepcopy(self.DEFAULT_SAVE_ARGS) | ||
if save_args: | ||
self._save_args.update(save_args) | ||
|
||
write_mode = self._save_args.get("mode", None) | ||
if write_mode not in self.ACCEPTED_WRITE_MODES: | ||
raise DataSetError( | ||
f"Write mode {write_mode} is not supported, " | ||
f"Please use any of the following accepted modes " | ||
f"{self.ACCEPTED_WRITE_MODES}" | ||
) | ||
|
||
self._version = self._load_args.get("version", None) | ||
|
||
if self._filepath and self._catalog_type: | ||
raise DataSetError( | ||
"DeltaTableDataSet can either load from " | ||
"filepath or catalog_type. Please provide " | ||
"one of either filepath or catalog_type." | ||
) | ||
|
||
if self._filepath: | ||
try: | ||
self._delta_table = DeltaTable( | ||
table_uri=self._filepath, | ||
storage_options=self.fs_args, | ||
version=self._version, | ||
) | ||
except TableNotFoundError: | ||
self.is_empty_dir = True | ||
else: | ||
self._delta_table = DeltaTable.from_data_catalog( | ||
data_catalog=DataCatalog[self._catalog_type], | ||
data_catalog_id=self._catalog_name, | ||
database_name=self._database, | ||
table_name=self._table, | ||
) | ||
|
||
@property | ||
def fs_args(self) -> Dict[str, Any]: | ||
"""Appends and returns filesystem credentials to fs_args.""" | ||
fs_args = deepcopy(self._fs_args) | ||
fs_args.update(self._credentials) | ||
return fs_args | ||
|
||
@property | ||
def schema(self) -> Dict[str, Any]: | ||
"""Returns the schema of the DeltaTableDataSet as a dictionary.""" | ||
return self._delta_table.schema().json() | ||
|
||
@property | ||
def metadata(self) -> Metadata: | ||
"""Returns the metadata of the DeltaTableDataSet as a dictionary. | ||
Metadata contains the following: | ||
1. A unique id | ||
2. A name, if provided | ||
3. A description, if provided | ||
4. The list of partition_columns. | ||
5. The created_time of the table | ||
6. A map of table configuration. This includes fields such as delta.appendOnly, | ||
which if true indicates the table is not meant to have data deleted from it. | ||
Returns: Metadata object containing the above metadata attributes. | ||
""" | ||
return self._delta_table.metadata() | ||
|
||
@property | ||
def history(self) -> List[Dict[str, Any]]: | ||
"""Returns the history of actions on DeltaTableDataSet as a list of dictionaries.""" | ||
return self._delta_table.history() | ||
|
||
def get_loaded_version(self) -> int: | ||
"""Returns the version of the DeltaTableDataSet that is currently loaded.""" | ||
return self._delta_table.version() | ||
|
||
def _load(self) -> pd.DataFrame: | ||
return self._delta_table.to_pandas() | ||
|
||
def _save(self, data: pd.DataFrame) -> None: | ||
if self.is_empty_dir: | ||
# first time creation of delta table | ||
write_deltalake( | ||
self._filepath, | ||
data, | ||
storage_options=self.fs_args, | ||
**self._save_args, | ||
) | ||
self.is_empty_dir = False | ||
self._delta_table = DeltaTable( | ||
table_uri=self._filepath, | ||
storage_options=self.fs_args, | ||
version=self._version, | ||
) | ||
else: | ||
write_deltalake( | ||
self._delta_table, | ||
data, | ||
storage_options=self.fs_args, | ||
**self._save_args, | ||
) | ||
|
||
def _describe(self) -> Dict[str, Any]: | ||
return { | ||
"filepath": self._filepath, | ||
"catalog_type": self._catalog_type, | ||
"catalog_name": self._catalog_name, | ||
"database": self._database, | ||
"table": self._table, | ||
"load_args": self._load_args, | ||
"save_args": self._save_args, | ||
"version": self._version, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.