#28462: list_editable unusable with large datasets
-----------------------------------------+------------------------
               Reporter:  Ben Cole       |          Owner:  nobody
                   Type:  Bug            |         Status:  new
              Component:  contrib.admin  |        Version:  1.10
               Severity:  Normal         |       Keywords:
           Triage Stage:  Unreviewed     |      Has patch:  0
    Needs documentation:  0              |    Needs tests:  0
Patch needs improvement:  0              |  Easy pickings:  0
                  UI/UX:  0              |
-----------------------------------------+------------------------
 Since 1.10 `list_editable` on `ModelAdmin` is unusable for Models with a
 large-ish dataset.

 The problem is caused by a recent change to how the FormSet is generated
 for the admin. Previously it was generated from the ChangeList result
 list, but it has been changed to use the admin's `get_queryset` which will
 return more than the current "pageful" of results (potentially the entire
 dataset) causing Django to generate a form for each instance. This results
 in Django consuming all available RAM and in some cases the python
 instance crashing. My personal laptop became unresponsive and I had to
 force power off.

 See
 
https://github.com/django/django/commit/917cc288a38f3c114a5440f0749b7e5e1086eb36#commitcomment-23412084

-- 
Ticket URL: <https://code.djangoproject.com/ticket/28462>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/050.25080e498275d718126fc0fbd0193c22%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to