diff options
author | Sean McGivern <sean@gitlab.com> | 2019-05-16 16:15:24 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-05-16 16:15:24 +0000 |
commit | cb45b7193df2916e881dfb3a8efc29dc7c2b9006 (patch) | |
tree | 505623f78c1fdb6ae0c6bdec91e6c4b5d0cf6dd5 /db | |
parent | 112193e8a6dea1a42e234e06244b1a20dd7d711b (diff) | |
parent | 841ea50be449a77725f01d0351e579515538e7ed (diff) | |
download | gitlab-ce-cb45b7193df2916e881dfb3a8efc29dc7c2b9006.tar.gz |
Merge branch 'ce-2087-make-num-shards-configurable' into 'master'
CE backport of "Configure the number of ES shards and replicas"
See merge request gitlab-org/gitlab-ce!28329
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20190515125613_add_application_settings_elasticsearch_shards.rb | 10 | ||||
-rw-r--r-- | db/schema.rb | 4 |
2 files changed, 13 insertions, 1 deletions
diff --git a/db/migrate/20190515125613_add_application_settings_elasticsearch_shards.rb b/db/migrate/20190515125613_add_application_settings_elasticsearch_shards.rb new file mode 100644 index 00000000000..9cebc0f8db4 --- /dev/null +++ b/db/migrate/20190515125613_add_application_settings_elasticsearch_shards.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +class AddApplicationSettingsElasticsearchShards < ActiveRecord::Migration[5.1] + DOWNTIME = false + + def change + add_column :application_settings, :elasticsearch_shards, :integer, null: false, default: 5 + add_column :application_settings, :elasticsearch_replicas, :integer, null: false, default: 1 + end +end diff --git a/db/schema.rb b/db/schema.rb index 159e7e03cf4..9d367938cec 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: 20190506135400) do +ActiveRecord::Schema.define(version: 20190515125613) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -189,6 +189,8 @@ ActiveRecord::Schema.define(version: 20190506135400) do t.string "encrypted_external_auth_client_key_pass_iv" t.string "lets_encrypt_notification_email" t.boolean "lets_encrypt_terms_of_service_accepted", default: false, null: false + t.integer "elasticsearch_shards", default: 5, null: false + t.integer "elasticsearch_replicas", default: 1, null: false t.index ["usage_stats_set_by_user_id"], name: "index_application_settings_on_usage_stats_set_by_user_id", using: :btree end |