What is Offset Pagination?
Offset pagination is a method of retrieving large datasets in chunks by specifying a limit (how many records to return) and an offset (how many records to skip). While it is the easiest pagination scheme to reverse-engineer and scrape, it introduces severe data consistency risks. If the underlying database changes during a long-running extraction job, offset shifts will cause your pipeline to silently duplicate or miss records entirely.