DeltaTableDataset¶
DeltaTableDataset loads and saves data to/from Delta tables using pandas.
kedro_datasets.pandas.DeltaTableDataset ¶
DeltaTableDataset(
*,
filepath=None,
catalog_type=None,
catalog_name=None,
database=None,
table=None,
load_args=None,
save_args=None,
credentials=None,
fs_args=None
)
Bases: AbstractDataset
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.
Examples:
Using the YAML API:
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
Using 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]})
>>>
>>> dataset = DeltaTableDataset(filepath=tmp_path / "test")
>>> dataset.save(data)
>>> reloaded = dataset.load()
>>> assert data.equals(reloaded)
>>>
>>> new_data = pd.DataFrame({"col1": [7, 8], "col2": [9, 10], "col3": [11, 12]})
>>> dataset.save(new_data)
>>> assert isinstance(dataset.get_loaded_version(), int)
Parameters:
-
filepath(str, default:None) –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,fileprotocol (local filesystem) will be used. -
catalog_type((DataCatalog, Optional), default:None) –AWSorUNITYif filepath is not provided. Defaults to None. -
catalog_name((str, Optional), default:None) –the name of catalog in AWS Glue or Databricks Unity. Defaults to None.
-
database((str, Optional), default:None) –the name of the database (also referred to as schema). Defaults to None.
-
table((str, Optional), default:None) –the name of the table.
-
load_args((Dict[str, Any], Optional), default:None) –Additional options for loading file(s) into DeltaTableDataset.
load_argsacceptsversionto load the appropriate version when loading from a filesystem. -
save_args((Dict[str, Any], Optional), default:None) –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), default:None) –Credentials required to get access to the underlying filesystem. E.g. for
GCSFileSystemit should look like{"token": None}. -
fs_args((Dict[str, Any], Optional), default:None) –Extra arguments to pass into underlying filesystem class constructor. (e.g.
{"project": "my-project"}forGCSFileSystem).
Raises: DatasetError: Invalid configuration supplied (through DeltaTableDataset validation)
Source code in kedro_datasets/pandas/deltatable_dataset.py
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 | |
ACCEPTED_WRITE_MODES
class-attribute
instance-attribute
¶
ACCEPTED_WRITE_MODES = ('overwrite', 'append')
DEFAULT_SAVE_ARGS
class-attribute
instance-attribute
¶
DEFAULT_SAVE_ARGS = {'mode': DEFAULT_WRITE_MODE}
_delta_table
instance-attribute
¶
_delta_table = DeltaTable(
table_uri=_filepath,
storage_options=fs_args,
version=_version,
)
history
property
¶
history
Returns the history of actions on DeltaTableDataset as a list of dictionaries.
metadata
property
¶
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.
_describe ¶
_describe()
Source code in kedro_datasets/pandas/deltatable_dataset.py
252 253 254 255 256 257 258 259 260 261 262 | |
get_loaded_version ¶
get_loaded_version()
Returns the version of the DeltaTableDataset that is currently loaded.
Source code in kedro_datasets/pandas/deltatable_dataset.py
222 223 224 | |
load ¶
load()
Source code in kedro_datasets/pandas/deltatable_dataset.py
226 227 | |
save ¶
save(data)
Source code in kedro_datasets/pandas/deltatable_dataset.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | |