@@ -8,8 +8,12 @@ Build a pipeline to pour your data through!
8
8
## About
9
9
10
10
This is a low level lib that helps you with building a data migration process.
11
- It requires a little bootstrapping to float, but it can be easily done if you need just a minimal process
12
- or just looking to test things out.
11
+ It requires a little bootstrapping to float, but it can be easily done if you just need a minimal process
12
+ or looking to test things out.
13
+
14
+ The main idea is that you're building a pipeline where each section can mutate the data that's flowing through.
15
+ It allows process to be extremely flexible, since each new step can potentially get (** completely** ) transformed data.
16
+ It also can be very dangerous, since mistake can be costly, hence we crafted awesome error handling and reporting mechanisms.
13
17
14
18
## Examples
15
19
@@ -99,14 +103,14 @@ $pipeline = (new PipelineBuilder($emitter))
99
103
![ results] ( examples/example1-import-cli/2-cli-runs.png )
100
104
101
105
## Goals
102
- * Easy to maintain. Strong reporting shows what exactly is wrong with the data or the process .
103
- * Flexible. Extremely flexible workflow allows to work with different import/export/migration scenarios.
106
+ * ** Easy to maintain** . Strong reporting shows what exactly went wrong.
107
+ * ** Flexible** . Extremely flexible workflow allows to work with different import/export/migration scenarios.
104
108
* one file -> multiple tables
105
109
* multiple files -> one table
106
- * supports dynamic connection
110
+ * supports dynamic DB connection
107
111
* supports different source types and destination types
108
- * Fast. Low level operations produce maximum flow speed.
109
- * Stable. Strong test coverage guarantees bug-free groundwork.
112
+ * ** Fast** . Low level operations produce maximum flow speed.
113
+ * ** Stable** . Strong test coverage guarantees bug-free groundwork.
110
114
111
115
## Influences
112
116
* [ Ddeboer Data Import library] ( https://github.com/ddeboer/data-import )
0 commit comments