CSVLoader¶
The CSVLoader writes processed rows to a CSV file.
Configuration¶
XPath |
Type |
Description |
|---|---|---|
|
Attribute |
Name of the output CSV file (path relative to the project root). |
Example¶
Input data¶
Row |
stringField |
integerField |
|---|---|---|
1 |
String: |
Integer: |
2 |
String: |
Integer: |
Pipeline configuration¶
<csv outputFileName="data/output/output.csv"/>
File output¶
stringField |
integerField |
|---|---|
|
|
|
|
Pipeline output¶
Row |
string |
integer |
|---|---|---|
1 |
String: |
Integer: |
2 |
String: |
Integer: |