summaryrefslogtreecommitdiff
path: root/db/post_migrate
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2018-07-25 18:09:05 +0000
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2018-07-25 18:09:05 +0000
commit65d7ea10436e5c1ed3605cbcc4584cee2b0244c3 (patch)
tree7c6afc9c12fe041fc3c5248ef2ff990cb3feeb6d /db/post_migrate
parenta0779cbb34338425a9a7842454f03097d05d31ed (diff)
parent5b4827fe65302557a2b2c6d060500752f228ec91 (diff)
downloadgitlab-ce-65d7ea10436e5c1ed3605cbcc4584cee2b0244c3.tar.gz
Merge branch 'ce-6064-geo-sql-query-for-counting-projects-with-wikis-is-very-slow' into 'master'
[CE Backport] Geo: Cache projects_count and wikis_count in SiteStatistic See merge request gitlab-org/gitlab-ce!20413
Diffstat (limited to 'db/post_migrate')
-rw-r--r--db/post_migrate/20180706223200_populate_site_statistics.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/db/post_migrate/20180706223200_populate_site_statistics.rb b/db/post_migrate/20180706223200_populate_site_statistics.rb
new file mode 100644
index 00000000000..e78e9eb900a
--- /dev/null
+++ b/db/post_migrate/20180706223200_populate_site_statistics.rb
@@ -0,0 +1,25 @@
+class PopulateSiteStatistics < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ transaction do
+ execute('SET LOCAL statement_timeout TO 0') if Gitlab::Database.postgresql? # see https://gitlab.com/gitlab-org/gitlab-ce/issues/48967
+
+ execute("UPDATE site_statistics SET repositories_count = (SELECT COUNT(*) FROM projects)")
+ end
+
+ transaction do
+ execute('SET LOCAL statement_timeout TO 0') if Gitlab::Database.postgresql? # see https://gitlab.com/gitlab-org/gitlab-ce/issues/48967
+
+ execute("UPDATE site_statistics SET wikis_count = (SELECT COUNT(*) FROM project_features WHERE wiki_access_level != 0)")
+ end
+ end
+
+ def down
+ # No downside in keeping the counter up-to-date
+ end
+end