Besides the three common steps in an ETL process (extract, transform and load), we provide some helpers to assist you with the process data flow.
To skip a determined number of rows on the beginning of the process, you may use the skip
method, passing the number of rows to skip as a parameter:
$etl->skip(1);
To limit the maximum number of output rows of the process, you may use the limit
method, passing the maximum number of rows as a parameter:
$etl->limit(100);