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

Fix API performance #839

Merged
merged 2 commits into from
Jun 17, 2024
Merged

Fix API performance #839

merged 2 commits into from
Jun 17, 2024

Conversation

vdboor
Copy link
Contributor

@vdboor vdboor commented Jun 17, 2024

Fix massive DSO-API performance issue, due to deepcopy()

DRF performs a deepcopy() of the serializer._declared_fields before it will handle the request. This is analogous to how Django forms work, and updating the fields with request state and 'parent' references.

Since the deepcopy() also touched dataset definitions of Amsterdam Schema, it basically took 14sec to copy all those dicts as well. This can be avoided, bringing to performance of DSO-API back to reasonable levels.

DRF performs a deepcopy() of the serializer._declared_fields before it
will handle the request. This is analogous to how Django forms work, and
allows updating the fields with request state and 'parent' references.

Since the deepcopy() also touched dataset definitions of Amsterdam Schema,
it basically took 14sec to copy all those dicts as well. This can be
avoided, bringing to performance of DSO-API back to reasonable levels.
Copy link
Contributor

@barrydaniels-nl barrydaniels-nl left a comment

Choose a reason for hiding this comment

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

OK

@vdboor vdboor merged commit f078098 into master Jun 17, 2024
6 checks passed
@vdboor vdboor deleted the diederik/performance branch June 17, 2024 15:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants