perf: Enhance objects using constant sql queries count to get rid of N+1 queries - #2857
Open
Koc wants to merge 4 commits into
Open
perf: Enhance objects using constant sql queries count to get rid of N+1 queries#2857Koc wants to merge 4 commits into
Koc wants to merge 4 commits into
Conversation
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
July 29, 2026 00:28
9b6bd68 to
4033598
Compare
Koc
marked this pull request as ready for review
July 29, 2026 18:08
enhanceTables for a multiple tables at once to get rid of N+1 queries
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
July 29, 2026 21:57
29cbb47 to
44e315b
Compare
enjeck
reviewed
Aug 7, 2026
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
August 9, 2026 14:30
2686136 to
e9b83fb
Compare
samin-z
self-requested a review
August 10, 2026 15:48
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
August 24, 2026 00:51
e9b83fb to
b286459
Compare
enjeck
reviewed
Aug 25, 2026
Comment on lines
+176
to
+188
| $counts = array_fill_keys($tableIds, 0); | ||
| foreach (array_chunk($tableIds, 1000 - 1) as $tableIdsChunk) { | ||
| $qb = $this->db->getQueryBuilder(); | ||
| $qb->select('table_id', $qb->func()->count('*', 'counter')) | ||
| ->from($this->table) | ||
| ->where($qb->expr()->in('table_id', $qb->createNamedParameter($tableIdsChunk, IQueryBuilder::PARAM_INT_ARRAY))) | ||
| ->groupBy('table_id'); | ||
|
|
||
| $result = $qb->executeQuery(); | ||
| while ($row = $result->fetch()) { | ||
| $counts[(int)$row['table_id']] = (int)$row['counter']; | ||
| } | ||
| $result->closeCursor(); |
Contributor
There was a problem hiding this comment.
without try...catch, a \OCP\DB\Exception now propagates?
Contributor
Author
There was a problem hiding this comment.
do we really need that try/catch here? When exception should be possible here and we need to suppress it?
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
August 27, 2026 23:58
306f894 to
f5cb044
Compare
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
2 times, most recently
from
August 30, 2026 14:27
a7383f5 to
c9e19d1
Compare
Contributor
Author
enjeck
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 4, 2026 04:44
263e65c to
ba01275
Compare
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 4, 2026 08:27
ba01275 to
ecef56b
Compare
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 9, 2026 09:18
ecef56b to
7243f39
Compare
…N+1 queries Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
…N+1 queries (code review) Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
…N+1 queries (code review) Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
…N+1 queries (code review) Signed-off-by: Kostiantyn Miakshyn <molodchick@gmail.com>
Koc
force-pushed
the
feature/optimize-enhance-tables
branch
from
September 12, 2026 15:42
7243f39 to
e845c15
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In our organization we operate a large amount of tables/views, so there are performance bottleneck here:
TableService::enhanceTable()in a loop with a single call of theenhanceTables()ViewService::enhanceView()in a loop with a single call of theenhanceViews()UserHelperfor row/column counts, share counts and owner display names.🖼️ Screenshots
Here profiler results for
GET /apps/tables/tableendpoint for 18 tables and 9 views:🏁 Checklist
/backport to stableX.X🤖 AI (if applicable)