How to overcome Zoho Deluge's time limit?

How to overcome Zoho Deluge's time limit?

I have built a function according to the following scheme:

  1. pages = {1,2,3,4,5,6,7,8,9,10};
  2. for each page in pages {
  3. entriesPerPage = zoho.crm.getRecords("Accounts",page,200);
  4. for each entry in entriesPerPage {
  5. }
  6. }

Unfortunately, we have too many entries in Zoho CRM for the function to run for all of them. It terminates after the runtime of 5 minutes.

How can I override this maximum duration of Zoho Deluge so that the function actually runs for all pages and entries?