Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Commits
5b5d8b80
Commit
5b5d8b80
authored
3 years ago
by
Erwan Rouchet
Committed by
Bastien Abadie
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Filter on the corpus ID of ElementTypes
parent
38aa03f1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1594
Filter on the corpus ID of ElementTypes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arkindex/documents/api/elements.py
+11
-0
11 additions, 0 deletions
arkindex/documents/api/elements.py
with
11 additions
and
0 deletions
arkindex/documents/api/elements.py
+
11
−
0
View file @
5b5d8b80
...
...
@@ -571,6 +571,17 @@ class ElementsListBase(CorpusACLMixin, DestroyModelMixin, ListAPIView):
if
self
.
type_filter
:
filters
[
'
type
'
]
=
self
.
type_filter
elif
self
.
folder_filter
is
not
None
:
# When filtering for folder or non-folder elements, using only the type__folder filter
# can cause Postgres to retrieve all the {non-}folder types on every corpus
# This can reach hundreds of types as the database grows, so Postgres can end up using a Hash Join
# to handle joining this large amount of elements and types.
# Since Postgres estimates this to represent a large amount of rows, it might also use multi-processing,
# which has a very high overhead.
# This can be avoided by also filtering on the type's corpus: Postgres will then access the index
# on the type's corpus ID. The query planner's statistics will give it a very low estimation since there
# rarely are a ton of types in a corpus, so Postgres will also use the type_id index on elements, which
# will lower the amount of rows much more quickly, making it stop using multi-processing.
filters
[
'
type__corpus
'
]
=
self
.
selected_corpus
filters
[
'
type__folder
'
]
=
self
.
folder_filter
if
'
worker_version
'
in
self
.
clean_params
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment