Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-prefetch related objects after updating #8043

Merged
merged 5 commits into from
Jan 11, 2023
Merged

Conversation

yuekui
Copy link
Contributor

@yuekui yuekui commented Jun 19, 2021

Instead of re-loading get_object() or not using any prefetch after updating, we could keep the instance and re-prefetch related objects for the updated instance.

refs:
#4553
#4668
#4661

rest_framework/mixins.py Outdated Show resolved Hide resolved
tests/test_prefetch_related.py Outdated Show resolved Hide resolved
@stale
Copy link

stale bot commented Apr 24, 2022

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Apr 24, 2022
@dr-ftvkun
Copy link

dr-ftvkun commented Jun 3, 2022

TLDR; this PR seems to be a good compromise between re-invoking get_object() and full (buggy, see below) invalidation of prefetched objects' cache during updates. @kevin-brown is it going to be merged?

So, about the bug.

Let we have a viewset with the following get_queryset():

def get_queryset(self):
     return Entity.objects.prefetch_related(
        Prefetch(
            "related_objects", 
            queryset=RelatedObject.objects.filter(is_removed=False).order_by("order")
        )
    )

Expected:

  • basically there shouldn't be differences between result of PATCH/PUT and repeated GET.
    In particular, GET /enitities/{pk}/ and PATCH /entities/{pk}/ {} should return the same object.

Actual:

  • if we use GET (list or retrieve), the prefetched objects will be in expected order and state. But if we use PATCH/PUT, the UpdateModelMixin's invalidation breaks both things and uses just instance.related_objects.all() from scratch which leads to appear unexpected objects (those having is_removed=True) in api response in an unpredictable order.

So in general I think just re-prefetching them would do the right job.

@stale stale bot removed the stale label Jun 3, 2022
@tomchristie
Copy link
Member

Okay. I can't say that I know those bits of private implementation, but I'm okay with this.

Marking it as a priority, so I can verify to myself that the change does fix the behaviour as described above. Once that's confirmed I think we should be okay to merge this.

@stale
Copy link

stale bot commented Aug 12, 2022

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@fjsj
Copy link

fjsj commented Aug 26, 2022

As this is buggy in current main/master branch, as explained by @dr-ftvkun above, I also think this should be merged.

@stale
Copy link

stale bot commented Oct 29, 2022

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Oct 29, 2022
@stale stale bot closed this Nov 23, 2022
@yuekui
Copy link
Contributor Author

yuekui commented Nov 23, 2022

Can we re-open it?

@dr-ftvkun
Copy link

@tomchristie could you please re-open it?

Hoping one day someone (mb me?) will have enough energy to push it to become a part of DRF or be rejected by a good reason (not just because it got stale).

@auvipy auvipy reopened this Nov 23, 2022
@stale stale bot removed the stale label Nov 23, 2022
@auvipy
Copy link
Member

auvipy commented Nov 23, 2022

Hey good people, I'm a new maintainer here. you can ping me anytime for reviewing and insights for direction. if we are unsure about anything we then ping him for final call. I have already reviewed and merged some old pr. so in coming weeks this project will have more active maintainers available.

@dr-ftvkun
Copy link

Hey good people, I'm a new maintainer here. you can ping me anytime for reviewing and insights for direction. if we are unsure about anything we then ping him for final call. I have already reviewed and merged some old pr. so in coming weeks this project will have more active maintainers available.

Hey @auvipy! Great news!

I think this PR at least needs tests for the cases i provided above.

But still, could you also look at it to check the general idea?

@auvipy
Copy link
Member

auvipy commented Nov 23, 2022

I will review this thoroughly

@auvipy auvipy self-requested a review November 23, 2022 13:49
@yuekui
Copy link
Contributor Author

yuekui commented Nov 24, 2022

Hey good people, I'm a new maintainer here. you can ping me anytime for reviewing and insights for direction. if we are unsure about anything we then ping him for final call. I have already reviewed and merged some old pr. so in coming weeks this project will have more active maintainers available.

Hey @auvipy! Great news!

I think this PR at least needs tests for the cases i provided above.

But still, could you also look at it to check the general idea?

Thanks @dr-ftvkun , I'll add tests for that.

Copy link
Member

@auvipy auvipy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the general idea, but I want to validate myself more looking into the django pvt stuffs. that may be first of next week

@yuekui yuekui requested a review from auvipy December 2, 2022 22:47
@yuekui
Copy link
Contributor Author

yuekui commented Dec 2, 2022

Hi @auvipy please let me know if there's any improvement we could do for this PR.

@auvipy
Copy link
Member

auvipy commented Dec 5, 2022

we need to verify the usage of django internals here. so need little bit more time then expected. please allow us some time to get back to you for this.

@auvipy auvipy added this to the 3.15 milestone Jan 11, 2023
@auvipy
Copy link
Member

auvipy commented Mar 20, 2024

we got a regression report, also a possible fix, can you check? #9314

@yuekui
Copy link
Contributor Author

yuekui commented Mar 20, 2024

we got a regression report, also a possible fix, can you check? #9314

Yeah that should fix the case that if only get_object() was defined, it looks good to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants