-
Notifications
You must be signed in to change notification settings - Fork 4
Home
AlvaDamian edited this page Feb 12, 2020
·
4 revisions
Welcome to the TaskETL wiki!
TaskETL is a library that offers concurrent execution of ETL jobs using C# Task object.
An ETL job is composed by one extractor, one transformer and one or mode loaders. A extractor will get data from source, a transformer will take that data and convert it to the type expected by a loader; finally, loaders will take data from transformer and do somethign with it.
ETL jobs can't be directly created. A processor will manage this jobs. This object will take responsability in creating, executing and diposing components mentioned above.