Skip to content
/ flow Public
forked from flow-php/flow

Monorepo for Flow PHP - Unified data processing library

License

Notifications You must be signed in to change notification settings

C3rb/flow

 
 

Repository files navigation

img

Flow is a PHP based, strongly typed ETL (Extract Transform Load), asynchronous data processing library with constant memory consumption.

Latest Stable Version Latest Unstable Version License Test Suite

Supported PHP versions

  • Supported PHP Version

Installation

This package is a monorepo that should not be directly installed in your project. Please check below packages and select only those that you are going to use:

Contributing

In order to run tests locally please make sure you have docker up and running. You also need PHP 8.1 and composer to be available from your CLI.

For the code coverage, please install pcov.

Prepare Project:

cp docker-compose.yml.dist docker-compose.yml
composer install 
docker compose up -d

Run Test Suite

composer test

Run Static Analyze

composer static:analyze

Test everything

This command will execute exactly the same tests as we run at Github Actions before PR can get merged. If it passes locally, you are good to open pull request.

composer build 

Usage

In order to understand how Flow works, please read documentation

Features

  • low and constant memory consumption
  • asynchronous data processing
  • reading from any data source
  • writing to any data source
  • rich collection of data transformation functions
  • direct access to remote filesystems
  • partitioning
  • grouping & aggregating
  • remote files processing
  • joins
  • sorting
  • displaying datasets as ASCII table
  • validation against schema
  • caching

Asynchronous Processing

Building blocks

  • DataFrame - Lazy data processing frame.
  • Rows - Immutable colllection of Row objects.
  • Row - Immutable, strongly typed collection of Entry objects.
  • Entry - Immutable, strongly typed object representing cell in a row.
  • Extractor (Reader) - Memory safe, Data Source returning \Generator, yielding Rows to the Pipeline
  • Transformer - Data transformer receiving and returning Rows (in most cases transformer), one instance of Rows at once.
  • Loader (Writer) - Memory safe representation of Data Sink, responsibility of Loader is to write Rows into destination storage, one at time.
  • Pipeline - Interface representing ETL process, each received Rows instanced is pased through all Pipes, also responsible for error handling.
  • Pipe - Loader of Transformer instance existing in Pipes collection.

Supported PHP versions

  • 8.1 - ✅

Sponsors

Flow PHP is sponsored by:

  • Blackfire - the best PHP profiling and monitoring tool!

About

Monorepo for Flow PHP - Unified data processing library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%