I'm generating plots with help of the JS library plotly.js. The data that is being used for plotting is retrieved by AJAX. In one particular case, around ~450MB is being retrieved through AJAX, to be used to generate those plots. The browser however, 'crashes'. It's not a timeout from the server because it's still running and it shows no errors in its logs (it's served by the django framework).
My question is, is 450MB of data too much to be loaded through AJAX? Or is this a Javascript problem? Is the processing of the data with this plotly library too much for the browser?
The computer that is making this request has 16GB or RAM of which 15.8 is available. It's using Chrome as the browser.