Changes between Initial Version and Version 1 of Ticket #28596


Ignore:
Timestamp:
Sep 14, 2017, 4:57:01 AM (7 years ago)
Author:
Tim Graham
Comment:

Can you confirm if the issue affects the Django master branch with Oracle 12? Django 2.0 (the master branch) drops support for Oracle 11.2. Unless this is a regression from previous Django releases, we won't fix the issue in Django 1.11.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28596 – Description

    initial v1  
    33If deleting A instance with 100k references from different B instances, Oracle closes connection and the Oracle worker dies to ORA-0600.
    44
    5 Reason:
    6  Django does search_related with id__in of 100k different ids. Oracle (at least 11.2) cannot handle it and blows up. (This is known by Oracle IIRC but not fixed at least not in 11.)
     5Reason: Django does search_related with `id__in` of 100k different ids. Oracle (at least 11.2) cannot handle it and blows up. (This is known by Oracle IIRC but not fixed at least not in 11.)
    76
    8 Workaround:
    9   provide bulk_batch_size with e.g. 5000 maximum number of items in a query.
     7Workaround: provide `bulk_batch_size` with e.g. 5000 maximum number of items in a query.
    108 
Back to Top