From 634c051be6a4ec7d3b6b2b9c825ec484c9e76a22 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 22 Sep 2020 15:15:34 +0200 Subject: [PATCH] add size index for filecache improves performance of #23004 Signed-off-by: Robin Appelman --- core/Application.php | 4 ++++ core/Command/Db/AddMissingIndices.php | 7 +++++++ core/Migrations/Version13000Date20170718121200.php | 1 + 3 files changed, 12 insertions(+) diff --git a/core/Application.php b/core/Application.php index a8f78241bb6..2e2579f094e 100644 --- a/core/Application.php +++ b/core/Application.php @@ -103,6 +103,10 @@ class Application extends App { if (!$table->hasIndex('fs_mtime')) { $subject->addHintForMissingSubject($table->getName(), 'fs_mtime'); } + + if (!$table->hasIndex('fs_size')) { + $subject->addHintForMissingSubject($table->getName(), 'fs_size'); + } } if ($schema->hasTable('twofactor_providers')) { diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php index c4d8f6d7e31..d06f27e8449 100644 --- a/core/Command/Db/AddMissingIndices.php +++ b/core/Command/Db/AddMissingIndices.php @@ -135,6 +135,13 @@ class AddMissingIndices extends Command { $updated = true; $output->writeln('Filecache table updated successfully.'); } + if (!$table->hasIndex('fs_size')) { + $output->writeln('Adding additional size index to the filecache table, this can take some time...'); + $table->addIndex(['size'], 'fs_size'); + $this->connection->migrateToSchema($schema->getWrappedSchema()); + $updated = true; + $output->writeln('Filecache table updated successfully.'); + } } $output->writeln('Check indices of the twofactor_providers table.'); diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php index f3129c22ca2..d86477b5ab9 100644 --- a/core/Migrations/Version13000Date20170718121200.php +++ b/core/Migrations/Version13000Date20170718121200.php @@ -225,6 +225,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { $table->addIndex(['storage', 'mimepart'], 'fs_storage_mimepart'); $table->addIndex(['storage', 'size', 'fileid'], 'fs_storage_size'); $table->addIndex(['mtime'], 'fs_mtime'); + $table->addIndex(['size'], 'fs_size'); } if (!$schema->hasTable('group_user')) { -- 2.39.5