SparkDataset¶
SparkDataset loads and saves data using Apache Spark DataFrames.
kedro_datasets.spark.SparkDataset ¶
SparkDataset(
*,
filepath,
file_format="parquet",
load_args=None,
save_args=None,
version=None,
credentials=None,
metadata=None
)
Bases: AbstractVersionedDataset[DataFrame, DataFrame]
SparkDataset loads and saves Spark dataframes.
Examples:
Using the YAML API:
weather:
type: spark.SparkDataset
filepath: s3a://your_bucket/data/01_raw/weather/*
file_format: csv
load_args:
header: True
inferSchema: True
save_args:
sep: '|'
header: True
weather_with_schema:
type: spark.SparkDataset
filepath: s3a://your_bucket/data/01_raw/weather/*
file_format: csv
load_args:
header: True
schema:
filepath: path/to/schema.json
save_args:
sep: '|'
header: True
weather_cleaned:
type: spark.SparkDataset
filepath: data/02_intermediate/data.parquet
file_format: parquet
Using the Python API:
>>> from kedro_datasets.spark import SparkDataset
>>> from pyspark.sql import SparkSession
>>> from pyspark.sql.types import IntegerType, Row, StringType, StructField, StructType
>>>
>>> schema = StructType(
... [StructField("name", StringType(), True), StructField("age", IntegerType(), True)]
... )
>>> data = [("Alex", 31), ("Bob", 12), ("Clarke", 65), ("Dave", 29)]
>>> spark_df = SparkSession.builder.getOrCreate().createDataFrame(data, schema)
>>>
>>> dataset = SparkDataset(filepath=tmp_path / "test_data")
>>> dataset.save(spark_df)
>>> reloaded = dataset.load()
>>> assert Row(name="Bob", age=12) in reloaded.take(4)
Parameters:
-
filepath(str) –Filepath in POSIX format to a Spark dataframe. When using Databricks specify
filepaths starting with/dbfs/. -
file_format(str, default:'parquet') –File format used during load and save operations. These are formats supported by the running SparkContext include parquet, csv, delta. For a list of supported formats please refer to Apache Spark documentation at https://spark.apache.org/docs/latest/sql-programming-guide.html
-
load_args(dict[str, Any] | None, default:None) –Load args passed to Spark DataFrameReader load method. It is dependent on the selected file format. You can find a list of read options for each supported format in Spark DataFrame read documentation: https://spark.apache.org/docs/latest/api/python/getting_started/quickstart_df.html
-
save_args(dict[str, Any] | None, default:None) –Save args passed to Spark DataFrame write options. Similar to load_args this is dependent on the selected file format. You can pass
modeandpartitionByto specify your overwrite mode and partitioning respectively. You can find a list of options for each format in Spark DataFrame write documentation: https://spark.apache.org/docs/latest/api/python/getting_started/quickstart_df.html -
version(Version | None, default:None) –If specified, should be an instance of
kedro.io.core.Version. If itsloadattribute is None, the latest version will be loaded. If itssaveattribute is None, save version will be autogenerated. -
credentials(dict[str, Any] | None, default:None) –Credentials to access the S3 bucket, such as
key,secret, iffilepathprefix iss3a://ors3n://. Optional keyword arguments passed tohdfs.client.InsecureClientiffilepathprefix ishdfs://. Ignored otherwise. -
metadata(dict[str, Any] | None, default:None) –Any arbitrary metadata. This is ignored by Kedro, but may be consumed by users or external plugins.
Source code in kedro_datasets/spark/spark_dataset.py
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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | |
_describe ¶
_describe()
Source code in kedro_datasets/spark/spark_dataset.py
291 292 293 294 295 296 297 298 | |
_exists ¶
_exists()
Source code in kedro_datasets/spark/spark_dataset.py
314 315 316 317 318 319 320 321 322 323 324 325 | |
_handle_delta_format ¶
_handle_delta_format()
Source code in kedro_datasets/spark/spark_dataset.py
327 328 329 330 331 332 333 334 335 336 337 338 339 | |
_load_schema_from_file
staticmethod
¶
_load_schema_from_file(schema)
Source code in kedro_datasets/spark/spark_dataset.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | |
load ¶
load()
Source code in kedro_datasets/spark/spark_dataset.py
300 301 302 303 304 305 306 307 308 | |
save ¶
save(data)
Source code in kedro_datasets/spark/spark_dataset.py
310 311 312 | |