Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-10-08 13:07:16 +0300
committerGitHub <noreply@github.com>2021-10-08 13:07:16 +0300
commit1ea5983568dc99aa80e52f18837629d137b8a03c (patch)
tree7747d9a5e2e805a40b41db0dbbc0a01627025642
parent9187e986e10a0e189f825cd462eb9e68bd732981 (diff)
parent6502dfae343850f510471b72ebece1c1329343e0 (diff)
Merge pull request #29118 from nextcloud/incomplete-index
add better index for finding unindexed paths
-rw-r--r--core/Application.php4
-rw-r--r--core/Command/Db/AddMissingIndices.php7
-rw-r--r--core/Migrations/Version13000Date20170718121200.php1
3 files changed, 12 insertions, 0 deletions
diff --git a/core/Application.php b/core/Application.php
index f0478173d43..43f32fcbdcc 100644
--- a/core/Application.php
+++ b/core/Application.php
@@ -114,6 +114,10 @@ class Application extends App {
if (!$table->hasIndex('fs_size')) {
$subject->addHintForMissingSubject($table->getName(), 'fs_size');
}
+
+ if (!$table->hasIndex('fs_id_storage_size')) {
+ $subject->addHintForMissingSubject($table->getName(), 'fs_id_storage_size');
+ }
}
if ($schema->hasTable('twofactor_providers')) {
diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php
index 2e6b3dc9aeb..c4360157f72 100644
--- a/core/Command/Db/AddMissingIndices.php
+++ b/core/Command/Db/AddMissingIndices.php
@@ -144,6 +144,13 @@ class AddMissingIndices extends Command {
$updated = true;
$output->writeln('<info>Filecache table updated successfully.</info>');
}
+ if (!$table->hasIndex('fs_id_storage_size')) {
+ $output->writeln('<info>Adding additional size index to the filecache table, this can take some time...</info>');
+ $table->addIndex(['fileid', 'storage', 'size'], 'fs_id_storage_size');
+ $this->connection->migrateToSchema($schema->getWrappedSchema());
+ $updated = true;
+ $output->writeln('<info>Filecache table updated successfully.</info>');
+ }
}
$output->writeln('<info>Check indices of the twofactor_providers table.</info>');
diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php
index 7b959c6073c..e8dbf1fc0fb 100644
--- a/core/Migrations/Version13000Date20170718121200.php
+++ b/core/Migrations/Version13000Date20170718121200.php
@@ -261,6 +261,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
$table->addIndex(['storage', 'mimetype'], 'fs_storage_mimetype');
$table->addIndex(['storage', 'mimepart'], 'fs_storage_mimepart');
$table->addIndex(['storage', 'size', 'fileid'], 'fs_storage_size');
+ $table->addIndex(['fileid', 'storage', 'size'], 'fs_id_storage_size');
$table->addIndex(['mtime'], 'fs_mtime');
$table->addIndex(['size'], 'fs_size');
}