Load Data from CSV to Sellers

XML
<loadMapper id="pfxSellerLoadMapper" includeUnmappedProperties="true"/>

.....

<route id="importSellers">
	<from uri="file:{{data.directory}}/import/sl?noop=true"/>
    <split strategyRef="recordsCountAggregation" streaming="true">
    	<tokenize group="20000" token="\n"/>
        <to uri="pfx-csv:unmarshal?skipHeaderRecord=true"/>
        <to uri="pfx-api:loaddata?objectType=SL&amp;mapper=pfxSellerLoadMapper"/>
    </split>
</route>