2017 © Pedro PelĂĄez
 

library etcetera

A simple ETL library for reading data from any source, extracting information and writing to any target

image

bitexpert/etcetera

A simple ETL library for reading data from any source, extracting information and writing to any target

  • Saturday, February 18, 2017
  • by shochdoerfer
  • Repository
  • 10 Watchers
  • 4 Stars
  • 58 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

bitexpert/etcetera

A small lightweight ETL framework, (*1)

Scope

Etcetera may be used for several jobs concering reading data from a source (typically *.xlsx files) transforming the data to a desired format by using converters, validators, filters and decorators and storing it to a desired target (e.g. MongoDB), (*2)

How does it work?

Etcetera consists of four main parts:, (*3)

Reader

The reader is used for reading data from your source, (*4)

Extractor

The extractor is where the magic happens. The extractor extracts the relevant data from the data read by the reader and transforms it by rules described in it's configuration. The resulting data is called extract., (*5)

Writer

Everytime a dataset is read and extracted, the writer receives the resulting extract and may write it to any target you want to., (*6)

Processor

The processor the heart of etcetera, it's the glue between reader, extractor and writer, (*7)

The reader has to read datasets from your desired source and has to create ValueDescriptors from every value found in the source. The extractor will now extract and transform the data of a single dataset described by the ValueDescriptors according to your configured rules. After having extracted and transformed the data will be passed as extract to your writer., (*8)

For further instructions please have a look at bitexpert/etcetera-demo, (*9)

Further docs will follow as soon as possible., (*10)

The Versions