Hello,
I am using
tap-mysql
and I have
payment transaction
table having millions of records
Payment ID | Payment Type | Paid Amount | Payment Status
1 | Cash | $ 500 | Paid
2 | Bank | $ 800 | Paid
Now I want to fetch only 100 records instead of millions of records then how can I achieve this ? I checked config settings. Also I added
batch_size_rows = 100
in config but it's not working.
Thanks