How can I force mockaroo to generate a file on the server instead of directly downloading it?

When a number of rows to be generated is massive, Mockaroo first generates the file on the server, to be available in the downloads section later.

I have this test scenario where each Json row, contains 1,000 nested objects, and if I try to generate 10,000 rows, Mockaroo send the download directly, and I am getting a time out network error.

How can I force Mockaroo to generate the file on the server first, regardless of a number of rows to be generated?

1 Like

Mockaroo will now take array sizes into account when determining if a file should be generated on the server. If the number of records + the sum of all array sizes is greater than 10,000, the file will be generated on the server. Otherwise, it will be streamed to the browser.

Thanks, this helped a ton!!