I have angular app use case were when an api endpoint returns more than 500MB data the Observable returns null while api responded successfully with data. Same issue don't happen when data size is 200MB.
This has blocked me for almost a month now.
Same issue is happening on other browsers so I am sure its not a browser issue.
Any help will be much appreciated.
I have angular app use case were when an api endpoint returns more than 500MB data the Observable returns null while api responded successfully with data. Same issue don't happen when data size is 200MB.
This has blocked me for almost a month now.
Same issue is happening on other browsers so I am sure its not a browser issue.
Any help will be much appreciated.
Share Improve this question asked 13 hours ago Vinay PrajapatiVinay Prajapati 7,54612 gold badges51 silver badges88 bronze badges1 Answer
Reset to default 2This is a known issue/limitation of the HttpClient, in a sense that it doesn't throw an error.
This is due to Chrome not supporting responses larger than 512 MiB and returning null
as body.