-
Notifications
You must be signed in to change notification settings - Fork 50
perf: Enhance objects using constant sql queries count to get rid of N+1 queries #2857
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
base: main
Are you sure you want to change the base?
Changes from all commits
c9e19d1
851d5db
0354ab4
263e65c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -296,11 +296,12 @@ public function deleteTable(int $tableId): DataResponse { | |
| #[NoAdminRequired] | ||
| #[NoCSRFRequired] | ||
| #[CORS] | ||
| #[RequirePermission(permission: Application::PERMISSION_READ, type: Application::NODE_TYPE_TABLE, idParam: 'tableId')] | ||
| #[RequirePermission(permission: Application::PERMISSION_MANAGE, type: Application::NODE_TYPE_TABLE, idParam: 'tableId')] | ||
| #[OpenAPI(scope: OpenAPI::SCOPE_DEFAULT)] | ||
| public function indexViews(int $tableId): DataResponse { | ||
| try { | ||
| return new DataResponse($this->viewService->formatViews($this->viewService->findAll($this->tableService->find($tableId)))); | ||
| $table = $this->tableService->find($tableId); | ||
| return new DataResponse($this->viewService->formatViews($table->getViews() ?? [])); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. initially, we return 403 for read-only users . Now, read-only user gets 200 with an empty list, since enhanceTables only loads views for owned or managed tables. So we need to mofify the annotation? |
||
| } catch (PermissionError $e) { | ||
| $this->logger->warning('A permission error occurred: ' . $e->getMessage(), ['exception' => $e]); | ||
| $message = ['message' => $e->getMessage()]; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -166,24 +166,30 @@ public function getColumnTypes(array $neededColumnIds): array { | |
| } | ||
|
|
||
| /** | ||
| * @param int $tableId | ||
| * @return int | ||
| * @param int[] $tableIds | ||
| * @return array<int, int> | ||
| */ | ||
| public function countColumns(int $tableId): int { | ||
| $qb = $this->db->getQueryBuilder(); | ||
| $qb->select($qb->func()->count('*', 'counter')); | ||
| $qb->from($this->table); | ||
| $qb->where( | ||
| $qb->expr()->eq('table_id', $qb->createNamedParameter($tableId)) | ||
| ); | ||
| public function countColumnsForTables(array $tableIds): array { | ||
| if (empty($tableIds)) { | ||
| return []; | ||
| } | ||
|
|
||
| try { | ||
| $result = $this->findOneQuery($qb); | ||
| return (int)$result['counter']; | ||
| } catch (DoesNotExistException|MultipleObjectsReturnedException|Exception $e) { | ||
| $this->logger->warning('Exception occurred: ' . $e->getMessage() . ' Returning 0.'); | ||
| return 0; | ||
| $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(); | ||
|
Comment on lines
+177
to
+189
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. without try...catch, a
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we really need that try/catch here? When exception should be possible here and we need to suppress it? |
||
| } | ||
|
|
||
| return $counts; | ||
| } | ||
|
|
||
| /** | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a downstream effect of the
findAllSharesForNodechange above, the list all shares" endpoint now returns only shares created by the current user. An owner will no longer see shares created by co-managers on their own table or view, so they cannot review or revoke them here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same for sharecontroller.php