diff options
author | Stan Hu <stanhu@gmail.com> | 2019-09-11 23:16:40 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-09-11 23:24:14 -0700 |
commit | c13c7e6709bf4748bbe411e9fd35a2436dcde421 (patch) | |
tree | e470b84c29c2c7999041042c137d15887bda5994 /db/schema.rb | |
parent | 80e9f7f3463cc67c6eb1dd22fb9e2dc88ebed3f1 (diff) | |
download | gitlab-ce-sh-add-index-members-expires.tar.gz |
Fix member expiration not always workingsh-add-index-members-expires
The Sidekiq job `RemoveExpiredMembersWorker` was failing to run in
production because it was hitting statement timeouts because it was
scanning all rows in order. On staging, where it used to scan 4 million
rows, adding an index brought this down to only a few hundred rows.
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/67286
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 3906976d296..39faf1e651e 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_09_10_000130) do +ActiveRecord::Schema.define(version: 2019_09_12_061145) do # These are extensions that must be enabled in order to support this database enable_extension "pg_trgm" @@ -1997,6 +1997,7 @@ ActiveRecord::Schema.define(version: 2019_09_10_000130) do t.boolean "ldap", default: false, null: false t.boolean "override", default: false, null: false t.index ["access_level"], name: "index_members_on_access_level" + t.index ["expires_at"], name: "index_members_on_expires_at" t.index ["invite_email"], name: "index_members_on_invite_email" t.index ["invite_token"], name: "index_members_on_invite_token", unique: true t.index ["requested_at"], name: "index_members_on_requested_at" |