leomarquine / php-etl

Extract, Transform and Load data using PHP.
MIT License
178 stars 81 forks source link

Feature Request: Limit option for quick testing #7

Closed lolaslade closed 5 years ago

lolaslade commented 6 years ago

Often when testing an ETL process it is handy to test on a small subset of rows. A quick way to do this is to use the main source but impose a limit.

leomarquine commented 5 years ago

You can do it now in v2:

$etl->limit(10);