Skip to main content

Introduction

This Spark package is designed to process data from various sources, perform transformations, and write the results to different sinks. It follows the pipeline design pattern to provide a flexible and modular approach to data processing.

Setup

Install this package using:

pip install pysparkify

Create spark_config.conf file of this format to enter all configurations related to spark in config/spark_config.conf

[SPARK]
spark.master=local[*]
spark.app.name=PysparkifyApp
spark.executor.memory=4g
spark.driver.memory=2g

This library abstracts Spark data processing workflows. For example you would like to;

  • take first two rows of the data, save it as a separate output
  • take an average and save it as a separate output

with below sample data

name,age,city
Hayaan,10,Islamanad
Jibraan,8,ShahAlam
Allyan,3,Paris
John,35,San Francisco
Doe,22,Houston
Dane,30,Seattle

Your recipe reads the csv data as source, transforms the data and optionally save the output of each transformation to sink. Below would be the recipe.yml for this operation.

source:
  - type: CsvSource
    config:
      name: csv
      path: "resources/data/input_data.csv"

transformer:
  - type: SQLTransformer
    config:
      name: transformer1
      source: 
        - name: csv
          as_name: t1
      statement: 
        - sql: "SELECT * from t1 limit 2"
          as_name: trx1
          to_sink: sink1
        - sql: "select AVG(age) from trx1"
          as_name: trx2
          to_sink: sink2

sink:
  - type: CsvSink
    config:
      name: sink1
      path: "output/output_data.csv"
  - type: CsvSink
    config:
      name: sink2
      path: "output/avgage_data.csv"
      

Usage

This library can be run as a command line tool:

pysparkify your_recipe.yml

Or use it in your Python scripts:

from pysparkify.lib.app import run
run('your_recipe.yml')

Design

The package is structured as follows:

Source, Sink and Transformer Abstraction

The package defines abstract classes Source, Sink and Transformer to represent data sources, sinks and transformers. It also provides concrete classes, including CsvSource, CsvSink and SQLTransformer, which inherit from the abstract classes. This design allows you to add new source and sink types with ease.

Configuration via recipe.yml

The package reads its configuration from a recipe.yml file. This YAML file specifies the source, sink, and transformation configurations. It allows you to define different data sources, sinks, and transformation queries.

Transformation Queries

Transformations are performed by SQLTransformer using Spark SQL queries defined in the configuration. These queries are executed on the data from the source before writing it to the sink. New transformers can be implemented by extending Transformer abstract class that can take spark dataframes from sources to process and send dataframes to sinks to save.

Pipeline Execution

The package reads data from the specified source, performs transformations based on the configured SQL queries, and then writes the results to the specified sink. You can configure multiple sources and sinks within the same package.

How to Contribute

  1. There are plenty of ways, in which implementation of new Sources and Sinks top the list
  2. Open a PR
  3. PR is reviewed and approved, included github actions will deploy the version directly to pypi repository

Release files for pysparkify 0.26.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pysparkify 0.26.2
File Size Uploaded
pysparkify-0.26.2.tar.gz 8.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for pysparkify 0.26.2
File Interpreter ABI Platform
pysparkify-0.26.2-py3-none-any.whl Python 3 none any Details

Total release size: 18.6 kB

Release files / pysparkify-0.26.2.tar.gz

Download URL pysparkify-0.26.2.tar.gz
Size 8.4 kB
Tags Source
SHA-256 checksum
How to use checksums
e0b4583d135bfd2998dedb4fce38abc79af006350a0bf2a0eec977b0894bb3d0
BLAKE2b-256 checksum
How to use checksums
f4a67c13b33b468a4cd86f165165a49efdb403fdebbe0f26fb3b6699911d90a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.3

Release files / pysparkify-0.26.2-py3-none-any.whl

Download URL pysparkify-0.26.2-py3-none-any.whl
Size 10.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4c61144c606401c3d5a10dd4d98bf7fa136f735f4d5293ff3174cae43fb6de30
BLAKE2b-256 checksum
How to use checksums
eb61f1183dcb7e84c245edb0687ef77d6a44277dd76d777ea6af3659adb55c40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.3

Release history Release notifications | RSS feed

0.27.0

2 release files

This release

0.26.2 This release

2 release files

0.26.1

2 release files

0.26.0

2 release files

0.25.0

2 release files

0.24.1

2 release files

0.24.0

2 release files

0.23

2 release files

0.22

2 release files

0.21

2 release files

0.2

2 release files

0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page