Retrieving too many row data places a burden on the server.
It may be helpful to control the amount of data fetched at one time in the following way:
a = []
for i in range(Model.objects.filter().count())[::1000]:
a += list(Model.objects.filter()[i:i+1000])